Lines Matching refs:bc_def
25 static PetscErrorCode OutflowBCSetup_CreateIFunctionQF(BCDefinition bc_def, CeedQFunction *qf) { in OutflowBCSetup_CreateIFunctionQF() argument
30 PetscCall(BCDefinitionGetContext(bc_def, &honee_bc)); in OutflowBCSetup_CreateIFunctionQF()
38 …PetscCall(HoneeBCCreateIFunctionQF(bc_def, RiemannOutflow_Conserv, RiemannOutflow_Conserv_loc, hon… in OutflowBCSetup_CreateIFunctionQF()
41 …PetscCall(HoneeBCCreateIFunctionQF(bc_def, PressureOutflow_Conserv, PressureOutflow_Conserv_loc, h… in OutflowBCSetup_CreateIFunctionQF()
48 …PetscCall(HoneeBCCreateIFunctionQF(bc_def, RiemannOutflow_Prim, RiemannOutflow_Prim_loc, honee_bc-… in OutflowBCSetup_CreateIFunctionQF()
51 …PetscCall(HoneeBCCreateIFunctionQF(bc_def, PressureOutflow_Prim, PressureOutflow_Prim_loc, honee_b… in OutflowBCSetup_CreateIFunctionQF()
58 …PetscCall(HoneeBCCreateIFunctionQF(bc_def, RiemannOutflow_Entropy, RiemannOutflow_Entropy_loc, hon… in OutflowBCSetup_CreateIFunctionQF()
61 …PetscCall(HoneeBCCreateIFunctionQF(bc_def, PressureOutflow_Entropy, PressureOutflow_Entropy_loc, h… in OutflowBCSetup_CreateIFunctionQF()
69 static PetscErrorCode OutflowBCSetup_CreateIJacobianQF(BCDefinition bc_def, CeedQFunction *qf) { in OutflowBCSetup_CreateIJacobianQF() argument
74 PetscCall(BCDefinitionGetContext(bc_def, &honee_bc)); in OutflowBCSetup_CreateIJacobianQF()
82 …PetscCall(HoneeBCCreateIJacobianQF(bc_def, RiemannOutflow_Jacobian_Conserv, RiemannOutflow_Jacobia… in OutflowBCSetup_CreateIJacobianQF()
85 …PetscCall(HoneeBCCreateIJacobianQF(bc_def, PressureOutflow_Jacobian_Conserv, PressureOutflow_Jacob… in OutflowBCSetup_CreateIJacobianQF()
92 …PetscCall(HoneeBCCreateIJacobianQF(bc_def, RiemannOutflow_Jacobian_Prim, RiemannOutflow_Jacobian_P… in OutflowBCSetup_CreateIJacobianQF()
95 …PetscCall(HoneeBCCreateIJacobianQF(bc_def, PressureOutflow_Jacobian_Prim, PressureOutflow_Jacobian… in OutflowBCSetup_CreateIJacobianQF()
102 …PetscCall(HoneeBCCreateIJacobianQF(bc_def, RiemannOutflow_Jacobian_Entropy, RiemannOutflow_Jacobia… in OutflowBCSetup_CreateIJacobianQF()
105 …PetscCall(HoneeBCCreateIJacobianQF(bc_def, PressureOutflow_Jacobian_Entropy, PressureOutflow_Jacob… in OutflowBCSetup_CreateIJacobianQF()
113 PetscErrorCode OutflowBCSetup(BCDefinition bc_def, ProblemData problem, DM dm, void *ctx, Newtonian… in OutflowBCSetup() argument
165 PetscCall(BCDefinitionSetContext(bc_def, (PetscCtxDestroyFn *)HoneeBCDestroy, honee_bc)); in OutflowBCSetup()
167 …PetscCall(BCDefinitionSetIFunction(bc_def, OutflowBCSetup_CreateIFunctionQF, HoneeBCAddIFunctionOp… in OutflowBCSetup()
168 …PetscCall(BCDefinitionSetIJacobian(bc_def, OutflowBCSetup_CreateIJacobianQF, HoneeBCAddIJacobianOp… in OutflowBCSetup()