Lines Matching refs:PetscCallCeed

38     PetscCallCeed(ceed, CeedOperatorCompositeGetSubList(user->op_rhs_ctx->op, &sub_ops));  in CreateKSPMassOperator_AdvectionStabilized()
39 PetscCallCeed(ceed, CeedOperatorGetFieldByName(sub_ops[sub_op_index], "q", &field)); in CreateKSPMassOperator_AdvectionStabilized()
40 PetscCallCeed(ceed, CeedOperatorFieldGetData(field, NULL, &elem_restr_q, &basis_q, NULL)); in CreateKSPMassOperator_AdvectionStabilized()
42 PetscCallCeed(ceed, CeedOperatorGetFieldByName(sub_ops[sub_op_index], "qdata", &field)); in CreateKSPMassOperator_AdvectionStabilized()
43 PetscCallCeed(ceed, CeedOperatorFieldGetData(field, NULL, &elem_restr_qd_i, NULL, &q_data)); in CreateKSPMassOperator_AdvectionStabilized()
45 PetscCallCeed(ceed, CeedOperatorGetContext(sub_ops[sub_op_index], &qf_ctx)); in CreateKSPMassOperator_AdvectionStabilized()
48 PetscCallCeed(ceed, CeedElemRestrictionGetNumComponents(elem_restr_q, &num_comp_q)); in CreateKSPMassOperator_AdvectionStabilized()
49 PetscCallCeed(ceed, CeedElemRestrictionGetNumComponents(elem_restr_qd_i, &q_data_size)); in CreateKSPMassOperator_AdvectionStabilized()
53PetscCallCeed(ceed, CeedQFunctionCreateInterior(ceed, 1, MassFunction_Advection2D, MassFunction_Ad… in CreateKSPMassOperator_AdvectionStabilized()
56PetscCallCeed(ceed, CeedQFunctionCreateInterior(ceed, 1, MassFunction_Advection, MassFunction_Adve… in CreateKSPMassOperator_AdvectionStabilized()
60 PetscCallCeed(ceed, CeedQFunctionSetContext(qf_mass, qf_ctx)); in CreateKSPMassOperator_AdvectionStabilized()
61 PetscCallCeed(ceed, CeedQFunctionSetUserFlopsEstimate(qf_mass, 0)); in CreateKSPMassOperator_AdvectionStabilized()
62 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_mass, "q_dot", 5, CEED_EVAL_INTERP)); in CreateKSPMassOperator_AdvectionStabilized()
63 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_mass, "q", 5, CEED_EVAL_INTERP)); in CreateKSPMassOperator_AdvectionStabilized()
64 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_mass, "qdata", q_data_size, CEED_EVAL_NONE)); in CreateKSPMassOperator_AdvectionStabilized()
65 PetscCallCeed(ceed, CeedQFunctionAddOutput(qf_mass, "v", 5, CEED_EVAL_INTERP)); in CreateKSPMassOperator_AdvectionStabilized()
66 PetscCallCeed(ceed, CeedQFunctionAddOutput(qf_mass, "Grad_v", 5 * dim, CEED_EVAL_GRAD)); in CreateKSPMassOperator_AdvectionStabilized()
68 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_mass, NULL, NULL, op_mass)); in CreateKSPMassOperator_AdvectionStabilized()
69PetscCallCeed(ceed, CeedOperatorSetField(*op_mass, "q_dot", elem_restr_q, basis_q, CEED_VECTOR_ACT… in CreateKSPMassOperator_AdvectionStabilized()
70 PetscCallCeed(ceed, CeedOperatorSetField(*op_mass, "q", elem_restr_q, basis_q, user->q_ceed)); in CreateKSPMassOperator_AdvectionStabilized()
71PetscCallCeed(ceed, CeedOperatorSetField(*op_mass, "qdata", elem_restr_qd_i, CEED_BASIS_NONE, q_da… in CreateKSPMassOperator_AdvectionStabilized()
72PetscCallCeed(ceed, CeedOperatorSetField(*op_mass, "v", elem_restr_q, basis_q, CEED_VECTOR_ACTIVE)… in CreateKSPMassOperator_AdvectionStabilized()
73PetscCallCeed(ceed, CeedOperatorSetField(*op_mass, "Grad_v", elem_restr_q, basis_q, CEED_VECTOR_AC… in CreateKSPMassOperator_AdvectionStabilized()
75 PetscCallCeed(ceed, CeedVectorDestroy(&q_data)); in CreateKSPMassOperator_AdvectionStabilized()
76 PetscCallCeed(ceed, CeedElemRestrictionDestroy(&elem_restr_q)); in CreateKSPMassOperator_AdvectionStabilized()
77 PetscCallCeed(ceed, CeedElemRestrictionDestroy(&elem_restr_qd_i)); in CreateKSPMassOperator_AdvectionStabilized()
78 PetscCallCeed(ceed, CeedBasisDestroy(&basis_q)); in CreateKSPMassOperator_AdvectionStabilized()
79 PetscCallCeed(ceed, CeedQFunctionContextDestroy(&qf_ctx)); in CreateKSPMassOperator_AdvectionStabilized()
80 PetscCallCeed(ceed, CeedQFunctionDestroy(&qf_mass)); in CreateKSPMassOperator_AdvectionStabilized()
260 PetscCallCeed(ceed, CeedQFunctionContextCreate(user->ceed, &problem->ics.qfunction_context)); in NS_ADVECTION()
261 PetscCallCeed(ceed, in NS_ADVECTION()
263PetscCallCeed(ceed, CeedQFunctionContextSetDataDestroy(problem->ics.qfunction_context, CEED_MEM_HO… in NS_ADVECTION()
265 PetscCallCeed(ceed, CeedQFunctionContextCreate(user->ceed, &advection_context)); in NS_ADVECTION()
266PetscCallCeed(ceed, CeedQFunctionContextSetData(advection_context, CEED_MEM_HOST, CEED_USE_POINTER… in NS_ADVECTION()
267PetscCallCeed(ceed, CeedQFunctionContextSetDataDestroy(advection_context, CEED_MEM_HOST, FreeConte… in NS_ADVECTION()
268PetscCallCeed(ceed, CeedQFunctionContextRegisterDouble(advection_context, "timestep size", offseto… in NS_ADVECTION()
271PetscCallCeed(ceed, CeedQFunctionContextReferenceCopy(advection_context, &problem->apply_vol_ifunc… in NS_ADVECTION()
272PetscCallCeed(ceed, CeedQFunctionContextReferenceCopy(advection_context, &problem->apply_inflow.qf… in NS_ADVECTION()
283PetscCallCeed(ceed, CeedQFunctionContextGetData(problem->ics.qfunction_context, CEED_MEM_HOST, &se… in PRINT_ADVECTION()
284PetscCallCeed(ceed, CeedQFunctionContextGetData(problem->apply_vol_rhs.qfunction_context, CEED_MEM… in PRINT_ADVECTION()
306 PetscCallCeed(ceed, CeedQFunctionContextRestoreData(problem->ics.qfunction_context, &setup_ctx)); in PRINT_ADVECTION()
307PetscCallCeed(ceed, CeedQFunctionContextRestoreData(problem->apply_vol_rhs.qfunction_context, &adv… in PRINT_ADVECTION()