static char help[] = "TDycore Mesh Examples\n\n"; #include typedef struct { PetscBool adapt; /* Flag for adaptation of the surface mesh */ } AppCtx; static PetscErrorCode ProcessOptions(MPI_Comm comm, AppCtx *options) { PetscErrorCode ierr; PetscFunctionBeginUser; options->adapt = PETSC_FALSE; ierr = PetscOptionsBegin(comm, "", "Meshing Interpolation Test Options", "DMPLEX");CHKERRQ(ierr); CHKERRQ(PetscOptionsBool("-adapt", "Flag for adaptation of the surface mesh", "ex10.c", options->adapt, &options->adapt, NULL)); ierr = PetscOptionsEnd();CHKERRQ(ierr); PetscFunctionReturn(0); } static PetscErrorCode CreateDomainLabel(DM dm) { DMLabel label; PetscInt cStart, cEnd, c; PetscFunctionBeginUser; CHKERRQ(DMCreateLabel(dm, "Cell Sets")); CHKERRQ(DMGetLabel(dm, "Cell Sets", &label)); CHKERRQ(DMPlexGetHeightStratum(dm, 0, &cStart, &cEnd)); for (c = cStart; c < cEnd; ++c) { PetscReal centroid[3], volume, x, y; CHKERRQ(DMPlexComputeCellGeometryFVM(dm, c, &volume, centroid, NULL)); x = centroid[0]; y = centroid[1]; /* Headwaters are (0.0,0.25)--(0.1,0.75) */ if ((x >= 0.0 && x < 0.1) && (y >= 0.25 && y <= 0.75)) {CHKERRQ(DMLabelSetValue(label, c, 1));continue;} /* River channel is (0.1,0.45)--(1.0,0.55) */ if ((x >= 0.1 && x <= 1.0) && (y >= 0.45 && y <= 0.55)) {CHKERRQ(DMLabelSetValue(label, c, 2));continue;} } PetscFunctionReturn(0); } static PetscErrorCode AdaptMesh(DM *dm, AppCtx *ctx) { DM dmCur = *dm; DMLabel label; IS valueIS, vIS; PetscBool hasLabel; const PetscInt *values; PetscReal *volConst; /* Volume constraints for each label value */ PetscReal ratio; PetscInt dim, Nv, v, cStart, cEnd, c; PetscBool adapt = PETSC_TRUE; PetscFunctionBeginUser; if (!ctx->adapt) PetscFunctionReturn(0); CHKERRQ(DMHasLabel(*dm, "Cell Sets", &hasLabel)); if (!hasLabel) CHKERRQ(CreateDomainLabel(*dm)); CHKERRQ(DMGetDimension(*dm, &dim)); ratio = PetscPowRealInt(0.5, dim); /* Get volume constraints */ CHKERRQ(DMGetLabel(*dm, "Cell Sets", &label)); CHKERRQ(DMLabelGetValueIS(label, &vIS)); CHKERRQ(ISDuplicate(vIS, &valueIS)); CHKERRQ(ISDestroy(&vIS)); /* Sorting ruins the label */ CHKERRQ(ISSort(valueIS)); CHKERRQ(ISGetLocalSize(valueIS, &Nv)); CHKERRQ(ISGetIndices(valueIS, &values)); CHKERRQ(PetscMalloc1(Nv, &volConst)); for (v = 0; v < Nv; ++v) { char opt[128]; volConst[v] = PETSC_MAX_REAL; CHKERRQ(PetscSNPrintf(opt, 128, "-volume_constraint_%d", (int) values[v])); CHKERRQ(PetscOptionsGetReal(NULL, NULL, opt, &volConst[v], NULL)); } CHKERRQ(ISRestoreIndices(valueIS, &values)); CHKERRQ(ISDestroy(&valueIS)); /* Adapt mesh iteratively */ while (adapt) { DM dmAdapt; DMLabel adaptLabel; PetscInt nAdaptLoc[2], nAdapt[2]; adapt = PETSC_FALSE; nAdaptLoc[0] = nAdaptLoc[1] = 0; nAdapt[0] = nAdapt[1] = 0; /* Adaptation is not preserving the domain label */ CHKERRQ(DMHasLabel(dmCur, "Cell Sets", &hasLabel)); if (!hasLabel) CHKERRQ(CreateDomainLabel(dmCur)); CHKERRQ(DMGetLabel(dmCur, "Cell Sets", &label)); CHKERRQ(DMLabelGetValueIS(label, &vIS)); CHKERRQ(ISDuplicate(vIS, &valueIS)); CHKERRQ(ISDestroy(&vIS)); /* Sorting directly the label's value IS would corrupt the label so we duplicate the IS first */ CHKERRQ(ISSort(valueIS)); CHKERRQ(ISGetLocalSize(valueIS, &Nv)); CHKERRQ(ISGetIndices(valueIS, &values)); /* Construct adaptation label */ CHKERRQ(DMLabelCreate(PETSC_COMM_SELF, "adapt", &adaptLabel)); CHKERRQ(DMPlexGetHeightStratum(dmCur, 0, &cStart, &cEnd)); for (c = cStart; c < cEnd; ++c) { PetscReal volume, centroid[3]; PetscInt value, vidx; CHKERRQ(DMPlexComputeCellGeometryFVM(dmCur, c, &volume, centroid, NULL)); CHKERRQ(DMLabelGetValue(label, c, &value)); if (value < 0) continue; CHKERRQ(PetscFindInt(value, Nv, values, &vidx)); PetscCheckFalse(vidx < 0,PETSC_COMM_SELF, PETSC_ERR_ARG_OUTOFRANGE, "Value %D for cell %D does not exist in label", value, c); if (volume > volConst[vidx]) {CHKERRQ(DMLabelSetValue(adaptLabel, c, DM_ADAPT_REFINE)); ++nAdaptLoc[0];} if (volume < volConst[vidx]*ratio) {CHKERRQ(DMLabelSetValue(adaptLabel, c, DM_ADAPT_COARSEN)); ++nAdaptLoc[1];} } CHKERRQ(ISRestoreIndices(valueIS, &values)); CHKERRQ(ISDestroy(&valueIS)); CHKERRMPI(MPI_Allreduce(&nAdaptLoc, &nAdapt, 2, MPIU_INT, MPI_SUM, PetscObjectComm((PetscObject) dmCur))); if (nAdapt[0]) { CHKERRQ(PetscInfo(dmCur, "Adapted mesh, marking %D cells for refinement, and %D cells for coarsening\n", nAdapt[0], nAdapt[1])); CHKERRQ(DMAdaptLabel(dmCur, adaptLabel, &dmAdapt)); CHKERRQ(DMDestroy(&dmCur)); CHKERRQ(DMViewFromOptions(dmAdapt, NULL, "-adapt_dm_view")); dmCur = dmAdapt; adapt = PETSC_TRUE; } CHKERRQ(DMLabelDestroy(&adaptLabel)); } CHKERRQ(PetscFree(volConst)); *dm = dmCur; PetscFunctionReturn(0); } static PetscErrorCode CreateMesh(MPI_Comm comm, AppCtx *user, DM *dm) { PetscInt dim; PetscFunctionBeginUser; /* Create top surface */ CHKERRQ(DMCreate(comm, dm)); CHKERRQ(DMSetType(*dm, DMPLEX)); CHKERRQ(PetscObjectSetOptionsPrefix((PetscObject) *dm, "init_")); CHKERRQ(DMSetFromOptions(*dm)); CHKERRQ(PetscObjectSetOptionsPrefix((PetscObject) *dm, NULL)); /* Adapt surface */ CHKERRQ(AdaptMesh(dm, user)); /* Extrude surface to get volume mesh */ CHKERRQ(DMGetDimension(*dm, &dim)); CHKERRQ(DMLocalizeCoordinates(*dm)); CHKERRQ(PetscObjectSetName((PetscObject) *dm, "Mesh")); CHKERRQ(DMSetFromOptions(*dm)); CHKERRQ(DMViewFromOptions(*dm, NULL, "-dm_view")); PetscFunctionReturn(0); } int main(int argc, char **argv) { DM dm; AppCtx user; PetscErrorCode ierr; ierr = PetscInitialize(&argc, &argv, NULL, help);if (ierr) return ierr; CHKERRQ(ProcessOptions(PETSC_COMM_WORLD, &user)); CHKERRQ(CreateMesh(PETSC_COMM_WORLD, &user, &dm)); CHKERRQ(DMDestroy(&dm)); ierr = PetscFinalize(); return ierr; } /*TEST test: suffix: 0 requires: triangle args: -init_dm_plex_dim 2 -init_dm_plex_box_faces 1,1 -dm_extrude 1 -dm_view test: # Regularly refine the surface before extrusion suffix: 1 requires: triangle args: -init_dm_plex_dim 2 -init_dm_refine 2 -dm_extrude 1 -dm_view test: # Parallel run suffix: 2 requires: triangle nsize: 5 args: -init_dm_plex_dim 2 -init_dm_refine 3 -petscpartitioner_type simple -dm_extrude 3 -dm_view test: # adaptively refine the surface before extrusion suffix: 3 requires: triangle args: -init_dm_plex_dim 2 -init_dm_plex_box_faces 5,5 -adapt -volume_constraint_1 0.01 -volume_constraint_2 0.000625 -dm_extrude 10 TEST*/