Lines Matching refs:advection_qfctx
150 CeedQFunctionContext advection_qfctx = NULL; in DivDiffFluxProjectionCreateRHS_Direct_AdvDif() local
163 PetscCallCeed(ceed, CeedOperatorGetContext(sub_ops[sub_op_index], &advection_qfctx)); in DivDiffFluxProjectionCreateRHS_Direct_AdvDif()
190 PetscCallCeed(ceed, CeedQFunctionSetContext(qf_rhs_volume, advection_qfctx)); in DivDiffFluxProjectionCreateRHS_Direct_AdvDif()
231 PetscCallCeed(ceed, CeedQFunctionSetContext(qf_rhs_boundary, advection_qfctx)); in DivDiffFluxProjectionCreateRHS_Direct_AdvDif()
287 PetscCallCeed(ceed, CeedQFunctionContextDestroy(&advection_qfctx)); in DivDiffFluxProjectionCreateRHS_Direct_AdvDif()
308 CeedQFunctionContext advection_qfctx = NULL; in DivDiffFluxProjectionCreateRHS_Indirect_AdvDif() local
320 PetscCallCeed(ceed, CeedOperatorGetContext(sub_ops[sub_op_index], &advection_qfctx)); in DivDiffFluxProjectionCreateRHS_Indirect_AdvDif()
338 PetscCallCeed(ceed, CeedQFunctionSetContext(qf_rhs, advection_qfctx)); in DivDiffFluxProjectionCreateRHS_Indirect_AdvDif()
349 PetscCallCeed(ceed, CeedQFunctionContextDestroy(&advection_qfctx)); in DivDiffFluxProjectionCreateRHS_Indirect_AdvDif()
393 CeedQFunctionContext advection_qfctx, ics_qfctx; in NS_ADVECTION() local
537 PetscCallCeed(ceed, CeedQFunctionContextCreate(honee->ceed, &advection_qfctx)); in NS_ADVECTION()
538 …PetscCallCeed(ceed, CeedQFunctionContextSetData(advection_qfctx, CEED_MEM_HOST, CEED_USE_POINTER, … in NS_ADVECTION()
539 …PetscCallCeed(ceed, CeedQFunctionContextSetDataDestroy(advection_qfctx, CEED_MEM_HOST, FreeContext… in NS_ADVECTION()
540 …PetscCallCeed(ceed, CeedQFunctionContextRegisterDouble(advection_qfctx, "timestep size", offsetof(… in NS_ADVECTION()
563 problem->apply_vol_rhs.qfctx = advection_qfctx; in NS_ADVECTION()
564 …PetscCallCeed(ceed, CeedQFunctionContextReferenceCopy(advection_qfctx, &problem->apply_vol_ifuncti… in NS_ADVECTION()
606 PetscCallCeed(ceed, CeedQFunctionContextReferenceCopy(advection_qfctx, &honee_bc->qfctx)); in NS_ADVECTION()