Home
last modified time | relevance | path

Searched refs:op_rhs (Results 1 – 5 of 5) sorted by relevance

/honee/src/
H A Ddiff_flux_projection.c131 CeedOperator op_rhs; in DivDiffFluxProjectionSetup_Direct() local
135 PetscCall(diff_flux_proj->CreateRHSOperator_Direct(honee, diff_flux_proj, &op_rhs)); in DivDiffFluxProjectionSetup_Direct()
138 …PetscCall(OperatorApplyContextCreate(honee->dm, projection->dm, ceed, op_rhs, NULL, NULL, NULL, di… in DivDiffFluxProjectionSetup_Direct()
140 PetscCallCeed(ceed, CeedOperatorDestroy(&op_rhs)); in DivDiffFluxProjectionSetup_Direct()
213 CeedOperator op_rhs; in DivDiffFluxProjectionSetup_Indirect() local
217 PetscCall(diff_flux_proj->CreateRHSOperator_Indirect(honee, diff_flux_proj, &op_rhs)); in DivDiffFluxProjectionSetup_Indirect()
218 …PetscCall(OperatorApplyContextCreate(honee->dm, projection->dm, ceed, op_rhs, NULL, NULL, NULL, NU… in DivDiffFluxProjectionSetup_Indirect()
219 PetscCallCeed(ceed, CeedOperatorDestroy(&op_rhs)); in DivDiffFluxProjectionSetup_Indirect()
H A Dsetuplibceed.c250 CeedOperator op_rhs; in SetupLibceed() local
252 PetscCallCeed(ceed, CeedOperatorCreateComposite(ceed, &op_rhs)); in SetupLibceed()
253 PetscCallCeed(ceed, CeedOperatorCompositeAddSub(op_rhs, op_rhs_vol)); in SetupLibceed()
254 … problem->num_bc_defs; b++) PetscCall(BCDefinitionAddOperators(problem->bc_defs[b], op_rhs, NULL)); in SetupLibceed()
256 …PetscCall(OperatorApplyContextCreate(dm, dm, ceed, op_rhs, honee->q_ceed, honee->g_ceed, honee->Q_… in SetupLibceed()
259 …PetscCallCeed(ceed, CeedOperatorGetContextFieldLabel(op_rhs, "solution time", &honee->phys->soluti… in SetupLibceed()
260 …PetscCallCeed(ceed, CeedOperatorGetContextFieldLabel(op_rhs, "timestep size", &honee->phys->timest… in SetupLibceed()
262 PetscCallCeed(ceed, CeedOperatorDestroy(&op_rhs)); in SetupLibceed()
H A Ddifferential_filter.c34 CeedOperator op_rhs; in DifferentialFilterCreateOperators() local
66 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_rhs, NULL, NULL, &op_rhs)); in DifferentialFilterCreateOperators()
67 … PetscCallCeed(ceed, CeedOperatorSetField(op_rhs, "q", elem_restr_q, basis_q, CEED_VECTOR_ACTIVE)); in DifferentialFilterCreateOperators()
68 …PetscCallCeed(ceed, CeedOperatorSetField(op_rhs, "qdata", elem_restr_qd, CEED_BASIS_NONE, q_data)); in DifferentialFilterCreateOperators()
69 PetscCallCeed(ceed, CeedOperatorSetField(op_rhs, "x", elem_restr_x, basis_x, x_coord)); in DifferentialFilterCreateOperators()
79 …PetscCallCeed(ceed, CeedOperatorSetField(op_rhs, field_name, elem_restr_filter, basis_filter, CEED… in DifferentialFilterCreateOperators()
85 …PetscCall(OperatorApplyContextCreate(honee->dm, dm_filter, ceed, op_rhs, NULL, NULL, honee->Q_loc,… in DifferentialFilterCreateOperators()
90 PetscCallCeed(ceed, CeedOperatorDestroy(&op_rhs)); in DifferentialFilterCreateOperators()
/honee/problems/
H A Dadvection.c146 …ateRHS_Direct_AdvDif(Honee honee, DivDiffFluxProjectionData diff_flux_proj, CeedOperator *op_rhs) { in DivDiffFluxProjectionCreateRHS_Direct_AdvDif() argument
165 PetscCallCeed(ceed, CeedOperatorCreateComposite(ceed, op_rhs)); in DivDiffFluxProjectionCreateRHS_Direct_AdvDif()
200 PetscCallCeed(ceed, CeedOperatorCompositeAddSub(*op_rhs, op_rhs_volume)); in DivDiffFluxProjectionCreateRHS_Direct_AdvDif()
271 PetscCallCeed(ceed, CeedOperatorCompositeAddSub(*op_rhs, op_rhs_boundary)); in DivDiffFluxProjectionCreateRHS_Direct_AdvDif()
298 …eRHS_Indirect_AdvDif(Honee honee, DivDiffFluxProjectionData diff_flux_proj, CeedOperator *op_rhs) { in DivDiffFluxProjectionCreateRHS_Indirect_AdvDif() argument
343 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_rhs, NULL, NULL, op_rhs)); in DivDiffFluxProjectionCreateRHS_Indirect_AdvDif()
344 …PetscCallCeed(ceed, CeedOperatorSetField(*op_rhs, "Grad_q", elem_restr_q, basis_q, CEED_VECTOR_ACT… in DivDiffFluxProjectionCreateRHS_Indirect_AdvDif()
345 …PetscCallCeed(ceed, CeedOperatorSetField(*op_rhs, "qdata", elem_restr_qd, CEED_BASIS_NONE, q_data)… in DivDiffFluxProjectionCreateRHS_Indirect_AdvDif()
346 …PetscCallCeed(ceed, CeedOperatorSetField(*op_rhs, "F_diff RHS", elem_restr_diff_flux, basis_diff_f… in DivDiffFluxProjectionCreateRHS_Indirect_AdvDif()
H A Dnewtonian.c100 …nCreateRHS_Direct_NS(Honee honee, DivDiffFluxProjectionData diff_flux_proj, CeedOperator *op_rhs) { in DivDiffFluxProjectionCreateRHS_Direct_NS() argument
120 PetscCallCeed(ceed, CeedOperatorCreateComposite(ceed, op_rhs)); in DivDiffFluxProjectionCreateRHS_Direct_NS()
160 PetscCallCeed(ceed, CeedOperatorCompositeAddSub(*op_rhs, op_rhs_volume)); in DivDiffFluxProjectionCreateRHS_Direct_NS()
237 PetscCallCeed(ceed, CeedOperatorCompositeAddSub(*op_rhs, op_rhs_boundary)); in DivDiffFluxProjectionCreateRHS_Direct_NS()
264 …reateRHS_Indirect_NS(Honee honee, DivDiffFluxProjectionData diff_flux_proj, CeedOperator *op_rhs) { in DivDiffFluxProjectionCreateRHS_Indirect_NS() argument
311 PetscCallCeed(ceed, CeedOperatorCreate(ceed, qf_rhs, NULL, NULL, op_rhs)); in DivDiffFluxProjectionCreateRHS_Indirect_NS()
312 …PetscCallCeed(ceed, CeedOperatorSetField(*op_rhs, "q", elem_restr_q, basis_q, CEED_VECTOR_ACTIVE)); in DivDiffFluxProjectionCreateRHS_Indirect_NS()
313 …PetscCallCeed(ceed, CeedOperatorSetField(*op_rhs, "Grad_q", elem_restr_q, basis_q, CEED_VECTOR_ACT… in DivDiffFluxProjectionCreateRHS_Indirect_NS()
314 …PetscCallCeed(ceed, CeedOperatorSetField(*op_rhs, "qdata", elem_restr_qd, CEED_BASIS_NONE, q_data)… in DivDiffFluxProjectionCreateRHS_Indirect_NS()
315 …PetscCallCeed(ceed, CeedOperatorSetField(*op_rhs, "F_diff RHS", elem_restr_diff_flux, basis_diff_f… in DivDiffFluxProjectionCreateRHS_Indirect_NS()