static char help[] = "Tests mesh adaptation with DMPlex and pragmatic.\n"; #include #include typedef struct { PetscInt Nr; /* The number of refinement passes */ PetscInt metOpt; /* Different choices of metric */ PetscReal hmax, hmin; /* Max and min sizes prescribed by the metric */ PetscBool doL2; /* Test L2 projection */ } AppCtx; /* Classic hyperbolic sensor function for testing multi-scale anisotropic mesh adaptation: f:[-1, 1]x[-1, 1] \to R, f(x, y) = sin(50xy)/100 if |xy| > 2\pi/50 else sin(50xy) (mapped to have domain [0,1] x [0,1] in this case). */ static PetscErrorCode sensor(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nf, PetscScalar u[], PetscCtx ctx) { const PetscReal xref = 2. * x[0] - 1.; const PetscReal yref = 2. * x[1] - 1.; const PetscReal xy = xref * yref; PetscFunctionBeginUser; u[0] = PetscSinReal(50. * xy); if (PetscAbsReal(xy) > 2. * PETSC_PI / 50.) u[0] *= 0.01; PetscFunctionReturn(PETSC_SUCCESS); } static PetscErrorCode ProcessOptions(MPI_Comm comm, AppCtx *options) { PetscFunctionBegin; options->Nr = 1; options->metOpt = 1; options->hmin = 0.05; options->hmax = 0.5; options->doL2 = PETSC_FALSE; PetscOptionsBegin(comm, "", "Meshing Adaptation Options", "DMPLEX"); PetscCall(PetscOptionsBoundedInt("-Nr", "Numberof refinement passes", "ex19.c", options->Nr, &options->Nr, NULL, 1)); PetscCall(PetscOptionsBoundedInt("-met", "Different choices of metric", "ex19.c", options->metOpt, &options->metOpt, NULL, 0)); PetscCall(PetscOptionsReal("-hmax", "Max size prescribed by the metric", "ex19.c", options->hmax, &options->hmax, NULL)); PetscCall(PetscOptionsReal("-hmin", "Min size prescribed by the metric", "ex19.c", options->hmin, &options->hmin, NULL)); PetscCall(PetscOptionsBool("-do_L2", "Test L2 projection", "ex19.c", options->doL2, &options->doL2, NULL)); PetscOptionsEnd(); PetscFunctionReturn(PETSC_SUCCESS); } static PetscErrorCode CreateMesh(MPI_Comm comm, DM *dm) { PetscFunctionBegin; PetscCall(DMCreate(comm, dm)); PetscCall(DMSetType(*dm, DMPLEX)); PetscCall(DMSetFromOptions(*dm)); PetscCall(PetscObjectSetName((PetscObject)*dm, "DMinit")); PetscCall(DMViewFromOptions(*dm, NULL, "-init_dm_view")); PetscFunctionReturn(PETSC_SUCCESS); } static PetscErrorCode ComputeMetricSensor(DM dm, AppCtx *user, Vec *metric) { PetscSimplePointFn *funcs[1] = {sensor}; DM dmSensor, dmGrad, dmHess, dmDet; PetscFE fe; Vec f, g, H, determinant; PetscBool simplex; PetscInt dim; PetscFunctionBegin; PetscCall(DMGetDimension(dm, &dim)); PetscCall(DMPlexIsSimplex(dm, &simplex)); PetscCall(DMClone(dm, &dmSensor)); PetscCall(PetscFECreateLagrange(PETSC_COMM_SELF, dim, 1, simplex, 1, -1, &fe)); PetscCall(DMSetField(dmSensor, 0, NULL, (PetscObject)fe)); PetscCall(PetscFEDestroy(&fe)); PetscCall(DMCreateDS(dmSensor)); PetscCall(DMCreateLocalVector(dmSensor, &f)); PetscCall(DMProjectFunctionLocal(dmSensor, 0., funcs, NULL, INSERT_VALUES, f)); PetscCall(VecViewFromOptions(f, NULL, "-sensor_view")); // Recover the gradient of the sensor function PetscCall(DMClone(dm, &dmGrad)); PetscCall(PetscFECreateLagrange(PETSC_COMM_SELF, dim, dim, simplex, 1, -1, &fe)); PetscCall(DMSetField(dmGrad, 0, NULL, (PetscObject)fe)); PetscCall(PetscFEDestroy(&fe)); PetscCall(DMCreateDS(dmGrad)); PetscCall(DMCreateLocalVector(dmGrad, &g)); PetscCall(DMPlexComputeGradientClementInterpolant(dmSensor, f, g)); PetscCall(VecDestroy(&f)); PetscCall(VecViewFromOptions(g, NULL, "-gradient_view")); // Recover the Hessian of the sensor function PetscCall(DMClone(dm, &dmHess)); PetscCall(DMPlexMetricCreate(dmHess, 0, &H)); PetscCall(DMPlexComputeGradientClementInterpolant(dmGrad, g, H)); PetscCall(VecDestroy(&g)); PetscCall(VecViewFromOptions(H, NULL, "-hessian_view")); // Obtain a metric by Lp normalization PetscCall(DMPlexMetricCreate(dm, 0, metric)); PetscCall(DMPlexMetricDeterminantCreate(dm, 0, &determinant, &dmDet)); PetscCall(DMPlexMetricNormalize(dmHess, H, PETSC_TRUE, PETSC_TRUE, *metric, determinant)); PetscCall(VecDestroy(&determinant)); PetscCall(DMDestroy(&dmDet)); PetscCall(VecDestroy(&H)); PetscCall(DMDestroy(&dmHess)); PetscCall(DMDestroy(&dmGrad)); PetscCall(DMDestroy(&dmSensor)); PetscFunctionReturn(PETSC_SUCCESS); } static PetscErrorCode ComputeMetric(DM dm, AppCtx *user, Vec *metric) { PetscReal lambda = 1 / (user->hmax * user->hmax); PetscFunctionBeginUser; if (user->metOpt == 0) { /* Specify a uniform, isotropic metric */ PetscCall(DMPlexMetricCreateUniform(dm, 0, lambda, metric)); } else if (user->metOpt == 3) { PetscCall(ComputeMetricSensor(dm, user, metric)); } else { DM cdm; Vec coordinates; const PetscScalar *coords; PetscScalar *met; PetscReal h; PetscInt dim, i, j, vStart, vEnd, v; PetscCall(DMPlexMetricCreate(dm, 0, metric)); PetscCall(DMGetDimension(dm, &dim)); PetscCall(DMGetCoordinateDM(dm, &cdm)); PetscCall(DMGetCoordinatesLocal(dm, &coordinates)); PetscCall(VecGetArrayRead(coordinates, &coords)); PetscCall(VecGetArray(*metric, &met)); PetscCall(DMPlexGetDepthStratum(dm, 0, &vStart, &vEnd)); for (v = vStart; v < vEnd; ++v) { PetscScalar *vcoords; PetscScalar *pmet; PetscCall(DMPlexPointLocalRead(cdm, v, coords, &vcoords)); switch (user->metOpt) { case 1: h = user->hmax - (user->hmax - user->hmin) * PetscRealPart(vcoords[0]); break; case 2: h = user->hmax * PetscAbsReal(((PetscReal)1.0) - PetscExpReal(-PetscAbsScalar(vcoords[0] - (PetscReal)0.5))) + user->hmin; break; default: SETERRQ(PetscObjectComm((PetscObject)dm), PETSC_ERR_ARG_WRONG, "metOpt = 0, 1, 2 or 3, cannot be %d", user->metOpt); } PetscCall(DMPlexPointLocalRef(dm, v, met, &pmet)); for (i = 0; i < dim; ++i) { for (j = 0; j < dim; ++j) { if (i == j) { if (i == 0) pmet[i * dim + j] = 1 / (h * h); else pmet[i * dim + j] = lambda; } else pmet[i * dim + j] = 0.0; } } } PetscCall(VecRestoreArray(*metric, &met)); PetscCall(VecRestoreArrayRead(coordinates, &coords)); } PetscFunctionReturn(PETSC_SUCCESS); } static PetscErrorCode linear(PetscInt dim, PetscReal time, const PetscReal x[], PetscInt Nc, PetscScalar *u, PetscCtx ctx) { u[0] = x[0] + x[1]; return 0; } static PetscErrorCode TestL2Projection(DM dm, DM dma, AppCtx *user) { PetscErrorCode (*funcs[1])(PetscInt, PetscReal, const PetscReal[], PetscInt, PetscScalar *, void *) = {linear}; DM dmProj, dmaProj; PetscFE fe; KSP ksp; Mat Interp, mass, mass2; Vec u, ua, scaling, rhs, uproj; PetscReal error; PetscBool simplex; PetscInt dim; PetscFunctionBeginUser; PetscCall(DMGetDimension(dm, &dim)); PetscCall(DMPlexIsSimplex(dm, &simplex)); PetscCall(DMClone(dm, &dmProj)); PetscCall(PetscFECreateDefault(PETSC_COMM_SELF, dim, 1, simplex, NULL, -1, &fe)); PetscCall(DMSetField(dmProj, 0, NULL, (PetscObject)fe)); PetscCall(PetscFEDestroy(&fe)); PetscCall(DMCreateDS(dmProj)); PetscCall(DMClone(dma, &dmaProj)); PetscCall(PetscFECreateDefault(PETSC_COMM_SELF, dim, 1, simplex, NULL, -1, &fe)); PetscCall(DMSetField(dmaProj, 0, NULL, (PetscObject)fe)); PetscCall(PetscFEDestroy(&fe)); PetscCall(DMCreateDS(dmaProj)); PetscCall(DMGetGlobalVector(dmProj, &u)); PetscCall(DMGetGlobalVector(dmaProj, &ua)); PetscCall(DMGetGlobalVector(dmaProj, &rhs)); PetscCall(DMGetGlobalVector(dmaProj, &uproj)); // Interpolate onto original mesh using dual basis PetscCall(DMProjectFunction(dmProj, 0.0, funcs, NULL, INSERT_VALUES, u)); PetscCall(PetscObjectSetName((PetscObject)u, "Original")); PetscCall(VecViewFromOptions(u, NULL, "-orig_vec_view")); PetscCall(DMComputeL2Diff(dmProj, 0.0, funcs, NULL, u, &error)); PetscCall(PetscPrintf(PETSC_COMM_WORLD, "Original L2 Error: %g\n", (double)error)); // Interpolate onto NEW mesh using dual basis PetscCall(DMProjectFunction(dmaProj, 0.0, funcs, NULL, INSERT_VALUES, ua)); PetscCall(PetscObjectSetName((PetscObject)ua, "Adapted")); PetscCall(VecViewFromOptions(ua, NULL, "-adapt_vec_view")); PetscCall(DMComputeL2Diff(dmaProj, 0.0, funcs, NULL, ua, &error)); PetscCall(PetscPrintf(PETSC_COMM_WORLD, "Adapted L2 Error: %g\n", (double)error)); // Interpolate between meshes using interpolation matrix PetscCall(DMCreateInterpolation(dmProj, dmaProj, &Interp, &scaling)); PetscCall(MatInterpolate(Interp, u, ua)); PetscCall(MatDestroy(&Interp)); PetscCall(VecDestroy(&scaling)); PetscCall(PetscObjectSetName((PetscObject)ua, "Interpolation")); PetscCall(VecViewFromOptions(ua, NULL, "-interp_vec_view")); PetscCall(DMComputeL2Diff(dmaProj, 0.0, funcs, NULL, ua, &error)); PetscCall(PetscPrintf(PETSC_COMM_WORLD, "Interpolated L2 Error: %g\n", (double)error)); // L2 projection PetscCall(DMCreateMassMatrix(dmaProj, dmaProj, &mass)); PetscCall(MatViewFromOptions(mass, NULL, "-mass_mat_view")); PetscCall(KSPCreate(PETSC_COMM_WORLD, &ksp)); PetscCall(KSPSetOperators(ksp, mass, mass)); PetscCall(KSPSetFromOptions(ksp)); // Compute rhs as M f, could also directly project the analytic function but we might not have it PetscCall(DMCreateMassMatrix(dmProj, dmaProj, &mass2)); PetscCall(MatMult(mass2, u, rhs)); PetscCall(MatDestroy(&mass2)); PetscCall(KSPSolve(ksp, rhs, uproj)); PetscCall(PetscObjectSetName((PetscObject)uproj, "L_2 Projection")); PetscCall(VecViewFromOptions(uproj, NULL, "-proj_vec_view")); PetscCall(DMComputeL2Diff(dmaProj, 0.0, funcs, NULL, uproj, &error)); PetscCall(PetscPrintf(PETSC_COMM_WORLD, "Projected L2 Error: %g\n", (double)error)); PetscCall(KSPDestroy(&ksp)); PetscCall(MatDestroy(&mass)); PetscCall(DMRestoreGlobalVector(dmProj, &u)); PetscCall(DMRestoreGlobalVector(dmaProj, &ua)); PetscCall(DMRestoreGlobalVector(dmaProj, &rhs)); PetscCall(DMRestoreGlobalVector(dmaProj, &uproj)); PetscCall(DMDestroy(&dmProj)); PetscCall(DMDestroy(&dmaProj)); PetscFunctionReturn(PETSC_SUCCESS); } int main(int argc, char *argv[]) { DM dm; AppCtx user; /* user-defined work context */ MPI_Comm comm; DM dma, odm; Vec metric; PetscInt r; PetscFunctionBeginUser; PetscCall(PetscInitialize(&argc, &argv, NULL, help)); comm = PETSC_COMM_WORLD; PetscCall(ProcessOptions(comm, &user)); PetscCall(CreateMesh(comm, &dm)); odm = dm; PetscCall(DMPlexDistributeOverlap(odm, 1, NULL, &dm)); if (!dm) { dm = odm; } else PetscCall(DMDestroy(&odm)); for (r = 0; r < user.Nr; ++r) { DMLabel label; PetscCall(ComputeMetric(dm, &user, &metric)); PetscCall(DMGetLabel(dm, "marker", &label)); PetscCall(DMAdaptMetric(dm, metric, label, NULL, &dma)); PetscCall(VecDestroy(&metric)); PetscCall(PetscObjectSetName((PetscObject)dma, "DMadapt")); PetscCall(PetscObjectSetOptionsPrefix((PetscObject)dma, "adapt_")); PetscCall(DMViewFromOptions(dma, NULL, "-dm_view")); if (user.doL2) PetscCall(TestL2Projection(dm, dma, &user)); PetscCall(DMDestroy(&dm)); dm = dma; } PetscCall(PetscObjectSetOptionsPrefix((PetscObject)dm, "final_")); PetscCall(DMViewFromOptions(dm, NULL, "-dm_view")); PetscCall(DMDestroy(&dm)); PetscCall(PetscFinalize()); return 0; } /*TEST build: requires: pragmatic testset: args: -dm_plex_box_faces 4,4,4 -dm_adaptor pragmatic -met 2 -init_dm_view -adapt_dm_view -dm_adaptor pragmatic test: suffix: 2d args: -dm_plex_separate_marker 0 test: suffix: 2d_sep args: -dm_plex_separate_marker 1 test: suffix: 3d args: -dm_plex_dim 3 # Pragmatic hangs for simple partitioner testset: requires: parmetis args: -dm_plex_box_faces 2,2 -petscpartitioner_type parmetis -met 2 -init_dm_view -adapt_dm_view -dm_adaptor pragmatic test: suffix: 2d_parmetis_np2 nsize: 2 test: suffix: 2d_parmetis_np4 nsize: 4 test: requires: parmetis suffix: 3d_parmetis_met0 nsize: 2 args: -dm_plex_dim 3 -dm_plex_box_faces 9,9,9 -dm_adaptor pragmatic -petscpartitioner_type parmetis \ -met 0 -hmin 0.01 -hmax 0.03 -init_dm_view -adapt_dm_view -dm_adaptor pragmatic test: requires: parmetis suffix: 3d_parmetis_met2 nsize: 2 args: -dm_plex_box_faces 19,19 -dm_adaptor pragmatic -petscpartitioner_type parmetis \ -met 2 -hmax 0.5 -hmin 0.001 -init_dm_view -adapt_dm_view -dm_adaptor pragmatic test: suffix: proj2 args: -dm_plex_box_faces 2,2 -dm_plex_hash_location -dm_adaptor pragmatic -init_dm_view -adapt_dm_view -do_L2 \ -petscspace_degree 1 -petscfe_default_quadrature_order 1 -pc_type lu -dm_adaptor pragmatic test: suffix: proj4 args: -dm_plex_box_faces 4,4 -dm_plex_hash_location -dm_adaptor pragmatic -init_dm_view -adapt_dm_view -do_L2 \ -petscspace_degree 1 -petscfe_default_quadrature_order 1 -pc_type lu -dm_adaptor pragmatic test: suffix: 2d_met3 args: -dm_plex_box_faces 9,9 -met 3 -dm_adaptor pragmatic -init_dm_view -adapt_dm_view \ -dm_plex_metric_h_min 1.e-10 -dm_plex_metric_h_max 1.0e-01 -dm_plex_metric_a_max 1.0e+05 -dm_plex_metric_p 1.0 \ -dm_plex_metric_target_complexity 10000.0 -dm_adaptor pragmatic TEST*/