Home
last modified time | relevance | path

Searched refs:qf_diagnostic (Results 1 – 2 of 2) sorted by relevance

/libCEED/examples/solids/src/
H A Dsetup-libceed.c64 CeedQFunctionDestroy(&data->qf_diagnostic); in CeedDataDestroy()
139 CeedQFunction qf_setup_geo, qf_residual, qf_jacobian, qf_energy, qf_diagnostic; in SetupLibceedFineLevel() local
468 …ctionCreateInterior(ceed, 1, problem_data.diagnostic, problem_data.diagnostic_loc, &qf_diagnostic); in SetupLibceedFineLevel()
469 CeedQFunctionAddInput(qf_diagnostic, "u", num_comp_u, CEED_EVAL_INTERP); in SetupLibceedFineLevel()
470 CeedQFunctionAddInput(qf_diagnostic, "du", num_comp_u * dim, CEED_EVAL_GRAD); in SetupLibceedFineLevel()
471 CeedQFunctionAddInput(qf_diagnostic, "qdata", q_data_size, CEED_EVAL_NONE); in SetupLibceedFineLevel()
472 …CeedQFunctionAddOutput(qf_diagnostic, "diagnostic values", num_comp_u + num_comp_d, CEED_EVAL_NONE… in SetupLibceedFineLevel()
473 CeedQFunctionSetContext(qf_diagnostic, phys_ctx); in SetupLibceedFineLevel()
475 CeedOperatorCreate(ceed, qf_diagnostic, CEED_QFUNCTION_NONE, CEED_QFUNCTION_NONE, &op_diagnostic); in SetupLibceedFineLevel()
482 data[fine_level]->qf_diagnostic = qf_diagnostic; in SetupLibceedFineLevel()
/libCEED/examples/solids/include/
H A Dstructs.h125 CeedQFunction qf_residual, qf_jacobian, qf_energy, qf_diagnostic; member