Home
last modified time | relevance | path

Searched refs:qf_mass (Results 1 – 8 of 8) sorted by relevance

/honee/problems/
H A Dadvection.c79 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()
[all …]
H A Dnewtonian.c41 CeedQFunction qf_mass; in CreateKSPMassOperator_NewtonianStabilized() local
66 …teInterior(ceed, 1, MassFunction_Newtonian_Conserv, MassFunction_Newtonian_Conserv_loc, &qf_mass)); in CreateKSPMassOperator_NewtonianStabilized()
68 PetscCallCeed(ceed, CeedQFunctionSetContext(qf_mass, qfctx)); in CreateKSPMassOperator_NewtonianStabilized()
69 PetscCallCeed(ceed, CeedQFunctionSetUserFlopsEstimate(qf_mass, 0)); in CreateKSPMassOperator_NewtonianStabilized()
70 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_mass, "q_dot", 5, CEED_EVAL_INTERP)); in CreateKSPMassOperator_NewtonianStabilized()
71 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_mass, "q", 5, CEED_EVAL_INTERP)); in CreateKSPMassOperator_NewtonianStabilized()
72 PetscCallCeed(ceed, CeedQFunctionAddInput(qf_mass, "qdata", q_data_size, CEED_EVAL_NONE)); in CreateKSPMassOperator_NewtonianStabilized()
73 PetscCallCeed(ceed, CeedQFunctionAddOutput(qf_mass, "v", 5, CEED_EVAL_INTERP)); in CreateKSPMassOperator_NewtonianStabilized()
74 PetscCallCeed(ceed, CeedQFunctionAddOutput(qf_mass, "Grad_v", 5 * dim, CEED_EVAL_GRAD)); in CreateKSPMassOperator_NewtonianStabilized()
76 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_mass, NULL, NULL, op_mass)); in CreateKSPMassOperator_NewtonianStabilized()
[all …]
/honee/src/
H A Ddiff_flux_projection.c144 CeedQFunction qf_mass; in DivDiffFluxProjectionSetup_Direct() local
154 PetscCall(HoneeMassQFunctionCreate(ceed, projection->num_comp, q_data_size, &qf_mass)); in DivDiffFluxProjectionSetup_Direct()
155 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_mass, NULL, NULL, &op_mass)); in DivDiffFluxProjectionSetup_Direct()
182 PetscCallCeed(ceed, CeedQFunctionDestroy(&qf_mass)); in DivDiffFluxProjectionSetup_Direct()
223 CeedQFunction qf_mass; in DivDiffFluxProjectionSetup_Indirect() local
226 PetscCall(HoneeMassQFunctionCreate(ceed, projection->num_comp, q_data_size, &qf_mass)); in DivDiffFluxProjectionSetup_Indirect()
227 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_mass, NULL, NULL, &op_mass)); in DivDiffFluxProjectionSetup_Indirect()
249 PetscCallCeed(ceed, CeedQFunctionDestroy(&qf_mass)); in DivDiffFluxProjectionSetup_Indirect()
H A Dvelocity_gradient_projection.c110 CeedQFunction qf_mass; in VelocityGradientProjectionSetup() local
113 PetscCall(HoneeMassQFunctionCreate(ceed, grad_velo_proj->num_comp, q_data_size, &qf_mass)); in VelocityGradientProjectionSetup()
114 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_mass, NULL, NULL, &op_mass)); in VelocityGradientProjectionSetup()
133 PetscCallCeed(ceed, CeedQFunctionDestroy(&qf_mass)); in VelocityGradientProjectionSetup()
H A Dgrid_anisotropy_tensor.c73 CeedQFunction qf_mass; in GridAnisotropyTensorProjectionSetupApply() local
76 PetscCall(HoneeMassQFunctionCreate(ceed, grid_aniso_proj->num_comp, q_data_size, &qf_mass)); in GridAnisotropyTensorProjectionSetupApply()
77 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_mass, NULL, NULL, &op_mass)); in GridAnisotropyTensorProjectionSetupApply()
97 PetscCallCeed(ceed, CeedQFunctionDestroy(&qf_mass)); in GridAnisotropyTensorProjectionSetupApply()
H A Dsetuplibceed.c17 CeedQFunction qf_mass; in CreateKSPMassOperator_Unstabilized() local
38 PetscCall(HoneeMassQFunctionCreate(ceed, num_comp_q, q_data_size, &qf_mass)); in CreateKSPMassOperator_Unstabilized()
39 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_mass, NULL, NULL, op_mass)); in CreateKSPMassOperator_Unstabilized()
49 PetscCallCeed(ceed, CeedQFunctionDestroy(&qf_mass)); in CreateKSPMassOperator_Unstabilized()
H A Dmisc.c221 CeedQFunction qf_mass; in HoneeCalculateDomainSize() local
237 PetscCall(HoneeMassQFunctionCreate(ceed, num_comps_x, q_data_size, &qf_mass)); in HoneeCalculateDomainSize()
238 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_mass, NULL, NULL, &op_mass)); in HoneeCalculateDomainSize()
258 PetscCallCeed(ceed, CeedQFunctionDestroy(&qf_mass)); in HoneeCalculateDomainSize()
/honee/src/spanstats/
H A Dspanstats.c294 CeedQFunction qf_mass, qf_stats_proj; in SpanwiseStatisticsSetupL2Projection() local
315 PetscCall(HoneeMassQFunctionCreate(ceed, num_comp_stats, q_data_size, &qf_mass)); in SpanwiseStatisticsSetupL2Projection()
316 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_mass, NULL, NULL, &op_mass)); in SpanwiseStatisticsSetupL2Projection()
347 PetscCallCeed(ceed, CeedQFunctionDestroy(&qf_mass)); in SpanwiseStatisticsSetupL2Projection()