Lines Matching refs:honee

27   Honee                honee;  in SetupMontiorCfl()  local
43 PetscCall(TSGetApplicationContext(ts, &honee)); in SetupMontiorCfl()
44 PetscCall(DMGetDimension(honee->dm, &dim)); in SetupMontiorCfl()
45 ceed = honee->ceed; in SetupMontiorCfl()
49 …PetscCall(DMPlexCeedElemRestrictionCreate(ceed, honee->dm, DMLABEL_DEFAULT, DMLABEL_DEFAULT_VALUE,… in SetupMontiorCfl()
50 …PetscCall(DMPlexCeedBasisCreate(ceed, honee->dm, DMLABEL_DEFAULT, DMLABEL_DEFAULT_VALUE, 0, 0, &ba… in SetupMontiorCfl()
52 …PetscCall(QDataGet(ceed, honee->dm, DMLABEL_DEFAULT, DMLABEL_DEFAULT_VALUE, &elem_restr_qd, &q_dat… in SetupMontiorCfl()
53 …PetscCall(DMPlexCeedElemRestrictionQDataCreate(ceed, honee->dm, DMLABEL_DEFAULT, DMLABEL_DEFAULT_V… in SetupMontiorCfl()
56 …CeedOperator *sub_ops, main_op = honee->op_ifunction ? honee->op_ifunction : honee->op_rhs_ctx->op; in SetupMontiorCfl()
65 switch (honee->phys->state_var) { in SetupMontiorCfl()
78 switch (honee->phys->state_var) { in SetupMontiorCfl()
92 …ion for dim %" PetscInt_FMT " and state variable %s", dim, StateVariables[honee->phys->state_var]); in SetupMontiorCfl()
95 PetscCall(PetscStrcmp("advection", honee->app_ctx->problem_name, &is_advection)); in SetupMontiorCfl()
116 …PetscCall(OperatorApplyContextCreate(honee->dm, NULL, ceed, op_monitor, NULL, NULL, NULL, NULL, &m… in SetupMontiorCfl()
118 …PetscCall(CeedOperatorCreateLocalVecs(op_monitor, DMReturnVecType(honee->dm), PETSC_COMM_SELF, NUL… in SetupMontiorCfl()
140 Honee honee; in TSMonitor_Cfl() local
148 PetscCall(TSGetApplicationContext(ts, &honee)); in TSMonitor_Cfl()
151 PetscCall(UpdateBoundaryValues(honee, honee->Q_loc, solution_time)); in TSMonitor_Cfl()
152 PetscCall(DMGlobalToLocal(honee->dm, Q, INSERT_VALUES, honee->Q_loc)); in TSMonitor_Cfl()
154 …PetscCall(ApplyCeedOperatorLocalToLocal(honee->Q_loc, monitor_ctx->values, monitor_ctx->op_monitor… in TSMonitor_Cfl()