Lines Matching refs:dm_sgs
14 DM dm_sgs, dm_dd_inputs, dm_dd_outputs; member
38 PetscCall(DMDestroy(&sgs_dd_data_->dm_sgs)); in SgsDDDataDestroy()
74 static PetscErrorCode SgsDDCreateDM(DM dm_source, DM *dm_sgs, PetscInt degree, PetscInt q_extra, Pe… in SgsDDCreateDM() argument
80 PetscCall(DMClone(dm_source, dm_sgs)); in SgsDDCreateDM()
81 PetscCall(DMSetMatrixPreallocateSkip(*dm_sgs, PETSC_TRUE)); in SgsDDCreateDM()
82 PetscCall(PetscObjectSetName((PetscObject)*dm_sgs, "Subgrid Stress Projection")); in SgsDDCreateDM()
84 …scCall(DMSetupByOrder_FEM(PETSC_TRUE, PETSC_TRUE, degree, 1, q_extra, 1, num_components, *dm_sgs)); in SgsDDCreateDM()
86 PetscCall(DMGetLocalSection(*dm_sgs, §ion)); in SgsDDCreateDM()
140 …PetscCall(DMPlexCeedElemRestrictionCreate(ceed, sgs_dd_data->dm_sgs, DMLABEL_DEFAULT, DMLABEL_DEFA… in SgsDDSetupNodalEvaluation_Fused()
143 …PetscCall(GetInverseMultiplicity(ceed, sgs_dd_data->dm_sgs, DMLABEL_DEFAULT, DMLABEL_DEFAULT_VALUE… in SgsDDSetupNodalEvaluation_Fused()
181 …PetscCall(OperatorApplyContextCreate(grad_velo_proj->dm, sgs_dd_data->dm_sgs, ceed, op_sgs_dd_noda… in SgsDDSetupNodalEvaluation_Fused()
331 PetscCall(DMGetField(sgs_dd_data->dm_sgs, 0, NULL, (PetscObject *)&fe)); in SgsDDSetupNodalEvaluation_Sequential()
339 PetscCall(DMClone(sgs_dd_data->dm_sgs, &sgs_dd_data->dm_dd_inputs)); in SgsDDSetupNodalEvaluation_Sequential()
352 PetscCall(DMClone(sgs_dd_data->dm_sgs, &sgs_dd_data->dm_dd_outputs)); in SgsDDSetupNodalEvaluation_Sequential()
379 …PetscCall(DMPlexCeedElemRestrictionCreate(ceed, sgs_dd_data->dm_sgs, DMLABEL_DEFAULT, DMLABEL_DEFA… in SgsDDSetupNodalEvaluation_Sequential()
381 …PetscCall(DMPlexCeedElemRestrictionCollocatedCreate(ceed, sgs_dd_data->dm_sgs, DMLABEL_DEFAULT, DM… in SgsDDSetupNodalEvaluation_Sequential()
390 …PetscCall(GetInverseMultiplicity(ceed, sgs_dd_data->dm_sgs, DMLABEL_DEFAULT, DMLABEL_DEFAULT_VALUE… in SgsDDSetupNodalEvaluation_Sequential()
458 …PetscCall(OperatorApplyContextCreate(sgs_dd_data->dm_dd_outputs, sgs_dd_data->dm_sgs, ceed, op_sgs… in SgsDDSetupNodalEvaluation_Sequential()
511 …PetscCall(DMPlexCeedBasisCreate(ceed, sgs_dd_data->dm_sgs, DMLABEL_DEFAULT, DMLABEL_DEFAULT_VALUE,… in SgsSetupNodalIFunction()
512 …PetscCall(QDataGet(ceed, sgs_dd_data->dm_sgs, DMLABEL_DEFAULT, DMLABEL_DEFAULT_VALUE, &elem_restr_… in SgsSetupNodalIFunction()
567 PetscCall(DMGetLocalVector(sgs_dd_data->dm_sgs, &SGSNodal_loc)); in SgsDDApplyIFunction()
576 PetscCall(DMRestoreLocalVector(sgs_dd_data->dm_sgs, &SGSNodal_loc)); in SgsDDApplyIFunction()
698 …PetscCall(SgsDDCreateDM(honee->dm, &sgs_dd_data->dm_sgs, honee->app_ctx->degree, honee->app_ctx->q… in SgsDDSetup()