Lines Matching refs:dm

16 PetscErrorCode SetupStrongSTG_Ceed(Ceed ceed, CeedData ceed_data, DM dm, ProblemData problem, Simpl…  in SetupStrongSTG_Ceed()  argument
27 PetscCall(DMGetLabel(dm, "Face Sets", &domain_label)); in SetupStrongSTG_Ceed()
33 PetscCall(DMGetCoordinateDM(dm, &dm_coord)); in SetupStrongSTG_Ceed()
36 PetscCall(CreateBasisFromPlex(ceed, dm, label, label_value, height, dm_field, &basis_q_sur)); in SetupStrongSTG_Ceed()
61 …PetscCall(DMPlexCeedElemRestrictionCreate(ceed, dm, domain_label, bc->inflows[i], height, dm_field… in SetupStrongSTG_Ceed()
62 …PetscCall(DMPlexCeedElemRestrictionCoordinateCreate(ceed, dm, domain_label, bc->inflows[i], height… in SetupStrongSTG_Ceed()
66 …PetscCall(DMPlexCeedElemRestrictionCollocatedCreate(ceed, dm, domain_label, bc->inflows[i], height… in SetupStrongSTG_Ceed()
67 …PetscCall(DMPlexCeedElemRestrictionCollocatedCreate(ceed, dm, domain_label, bc->inflows[i], height… in SetupStrongSTG_Ceed()
68 …PetscCall(DMPlexCeedElemRestrictionCollocatedCreate(ceed, dm, domain_label, bc->inflows[i], height… in SetupStrongSTG_Ceed()
69 …PetscCall(DMPlexCeedElemRestrictionCollocatedCreate(ceed, dm, domain_label, bc->inflows[i], height… in SetupStrongSTG_Ceed()
134 PetscErrorCode DMPlexInsertBoundaryValues_StrongBCCeed(DM dm, PetscBool insert_essential, Vec Q_loc… in DMPlexInsertBoundaryValues_StrongBCCeed() argument
140 PetscCall(DMGetApplicationContext(dm, &user)); in DMPlexInsertBoundaryValues_StrongBCCeed()
147 PetscCall(DMGetNamedLocalVector(dm, "boundary mask", &boundary_mask)); in DMPlexInsertBoundaryValues_StrongBCCeed()
149 PetscCall(DMRestoreNamedLocalVector(dm, "boundary mask", &boundary_mask)); in DMPlexInsertBoundaryValues_StrongBCCeed()
155 PetscErrorCode SetupStrongBC_Ceed(Ceed ceed, CeedData ceed_data, DM dm, User user, ProblemData prob… in SetupStrongBC_Ceed() argument
162 PetscCall(DMGetNamedLocalVector(dm, "boundary mask", &boundary_mask)); in SetupStrongBC_Ceed()
163 PetscCall(DMGetGlobalVector(dm, &global_vec)); in SetupStrongBC_Ceed()
166 PetscCall(DMGlobalToLocal(dm, global_vec, INSERT_VALUES, boundary_mask)); in SetupStrongBC_Ceed()
167 PetscCall(DMRestoreNamedLocalVector(dm, "boundary mask", &boundary_mask)); in SetupStrongBC_Ceed()
168 PetscCall(DMRestoreGlobalVector(dm, &global_vec)); in SetupStrongBC_Ceed()
177 PetscCall(SetupStrongSTG_Ceed(ceed, ceed_data, dm, problem, bc, user->phys, op_strong_bc)); in SetupStrongBC_Ceed()
183 …PetscCall(PetscObjectComposeFunction((PetscObject)dm, "DMPlexInsertBoundaryValues_C", DMPlexInsert… in SetupStrongBC_Ceed()