Lines Matching refs:newtonian_ig_context

224   CeedQFunctionContext     newtonian_ig_context;  in NS_NEWTONIAN_IG()  local
450 PetscCallCeed(ceed, CeedQFunctionContextCreate(user->ceed, &newtonian_ig_context)); in NS_NEWTONIAN_IG()
452 …CeedQFunctionContextSetData(newtonian_ig_context, CEED_MEM_HOST, CEED_USE_POINTER, sizeof(*newtoni… in NS_NEWTONIAN_IG()
453 …PetscCallCeed(ceed, CeedQFunctionContextSetDataDestroy(newtonian_ig_context, CEED_MEM_HOST, FreeCo… in NS_NEWTONIAN_IG()
454 …PetscCallCeed(ceed, CeedQFunctionContextRegisterDouble(newtonian_ig_context, "timestep size", offs… in NS_NEWTONIAN_IG()
456 …PetscCallCeed(ceed, CeedQFunctionContextRegisterDouble(newtonian_ig_context, "ijacobian time shift… in NS_NEWTONIAN_IG()
459 …PetscCallCeed(ceed, CeedQFunctionContextRegisterDouble(newtonian_ig_context, "solution time", offs… in NS_NEWTONIAN_IG()
462 problem->apply_vol_rhs.qfunction_context = newtonian_ig_context; in NS_NEWTONIAN_IG()
463 …PetscCallCeed(ceed, CeedQFunctionContextReferenceCopy(newtonian_ig_context, &problem->apply_vol_if… in NS_NEWTONIAN_IG()
464 …PetscCallCeed(ceed, CeedQFunctionContextReferenceCopy(newtonian_ig_context, &problem->apply_vol_ij… in NS_NEWTONIAN_IG()
465 …PetscCallCeed(ceed, CeedQFunctionContextReferenceCopy(newtonian_ig_context, &problem->apply_inflow… in NS_NEWTONIAN_IG()
466 …PetscCallCeed(ceed, CeedQFunctionContextReferenceCopy(newtonian_ig_context, &problem->apply_inflow… in NS_NEWTONIAN_IG()
470 if (bc->num_slip > 0) PetscCall(SlipBCSetup(problem, dm, ctx, newtonian_ig_context)); in NS_NEWTONIAN_IG()