Lines Matching refs:qf_mass

79   CeedQFunction        qf_mass = NULL;  in CreateKSPMassOperator_AdvectionStabilized()  local
107 …FunctionCreateInterior(ceed, 1, MassFunction_Advection2D, MassFunction_Advection2D_loc, &qf_mass)); in CreateKSPMassOperator_AdvectionStabilized()
110 …eedQFunctionCreateInterior(ceed, 1, MassFunction_Advection, MassFunction_Advection_loc, &qf_mass)); in CreateKSPMassOperator_AdvectionStabilized()
114 PetscCallCeed(ceed, CeedQFunctionSetContext(qf_mass, qfctx)); in CreateKSPMassOperator_AdvectionStabilized()
115 PetscCallCeed(ceed, CeedQFunctionSetUserFlopsEstimate(qf_mass, 0)); in CreateKSPMassOperator_AdvectionStabilized()
116 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_mass, "q_dot", 5, CEED_EVAL_INTERP)); in CreateKSPMassOperator_AdvectionStabilized()
117 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_mass, "q", 5, CEED_EVAL_INTERP)); in CreateKSPMassOperator_AdvectionStabilized()
118 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_mass, "qdata", q_data_size, CEED_EVAL_NONE)); in CreateKSPMassOperator_AdvectionStabilized()
119 PetscCallCeed(ceed, CeedQFunctionAddOutput(qf_mass, "v", 5, CEED_EVAL_INTERP)); in CreateKSPMassOperator_AdvectionStabilized()
120 PetscCallCeed(ceed, CeedQFunctionAddOutput(qf_mass, "Grad_v", 5 * dim, CEED_EVAL_GRAD)); in CreateKSPMassOperator_AdvectionStabilized()
122 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_mass, NULL, NULL, op_mass)); in CreateKSPMassOperator_AdvectionStabilized()
135 PetscCallCeed(ceed, CeedQFunctionDestroy(&qf_mass)); in CreateKSPMassOperator_AdvectionStabilized()