Lines Matching refs:problem
18 PetscErrorCode NS_CHANNEL(ProblemData problem, DM dm, void *ctx, SimpleBC bc) { in NS_CHANNEL() argument
27 PetscCall(NS_NEWTONIAN_IG(problem, dm, ctx, bc)); in NS_CHANNEL()
33 PetscCallCeed(ceed, CeedQFunctionContextDestroy(&problem->ics.qfunction_context)); in NS_CHANNEL()
34 problem->ics.qfunction = ICsChannel; in NS_CHANNEL()
35 problem->ics.qfunction_loc = ICsChannel_loc; in NS_CHANNEL()
37 problem->apply_inflow.qfunction = Channel_Inflow; in NS_CHANNEL()
38 problem->apply_inflow.qfunction_loc = Channel_Inflow_loc; in NS_CHANNEL()
39 problem->apply_outflow.qfunction = Channel_Outflow; in NS_CHANNEL()
40 problem->apply_outflow.qfunction_loc = Channel_Outflow_loc; in NS_CHANNEL()
76 …PetscCallCeed(ceed, CeedQFunctionContextGetData(problem->apply_vol_rhs.qfunction_context, CEED_MEM… in NS_CHANNEL()
95 …PetscCallCeed(ceed, CeedQFunctionContextRestoreData(problem->apply_vol_rhs.qfunction_context, &new… in NS_CHANNEL()
101 problem->ics.qfunction_context = channel_context; in NS_CHANNEL()
102 …PetscCallCeed(ceed, CeedQFunctionContextReferenceCopy(channel_context, &problem->apply_inflow.qfun… in NS_CHANNEL()
103 …PetscCallCeed(ceed, CeedQFunctionContextReferenceCopy(channel_context, &problem->apply_outflow.qfu… in NS_CHANNEL()