1 // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors. 2 // All Rights Reserved. See the top-level LICENSE and NOTICE files for details. 3 // 4 // SPDX-License-Identifier: BSD-2-Clause 5 // 6 // This file is part of CEED: http://github.com/ceed 7 /// @file 8 /// Functions for setting up and performing statistics collection 9 10 #include "../qfunctions/turb_spanstats.h" 11 12 #include <ceed.h> 13 #include <petscdmplex.h> 14 #include <petscsf.h> 15 16 #include "../include/petsc_ops.h" 17 #include "../navierstokes.h" 18 19 typedef struct { 20 CeedElemRestriction elem_restr_parent_x, elem_restr_parent_stats, elem_restr_parent_qd, elem_restr_parent_colloc, elem_restr_child_colloc; 21 CeedBasis basis_x, basis_stats; 22 CeedVector x_coord, q_data; 23 } *SpanStatsSetupData; 24 25 PetscErrorCode CreateStatsDM(User user, ProblemData *problem, PetscInt degree, SimpleBC bc) { 26 user->spanstats.num_comp_stats = TURB_NUM_COMPONENTS; 27 PetscReal domain_min[3], domain_max[3]; 28 PetscFE fe; 29 PetscSection section; 30 PetscLogStage stage_stats_setup; 31 MPI_Comm comm = PetscObjectComm((PetscObject)user->dm); 32 PetscFunctionBeginUser; 33 34 PetscCall(PetscLogStageGetId("Stats Setup", &stage_stats_setup)); 35 if (stage_stats_setup == -1) PetscCall(PetscLogStageRegister("Stats Setup", &stage_stats_setup)); 36 PetscCall(PetscLogStagePush(stage_stats_setup)); 37 38 // Get spanwise length 39 PetscCall(DMGetBoundingBox(user->dm, domain_min, domain_max)); 40 user->spanstats.span_width = domain_max[2] - domain_min[1]; 41 42 { // Get DM from surface 43 DM parent_distributed_dm; 44 PetscSF isoperiodicface; 45 DMLabel label; 46 PetscMPIInt size; 47 48 PetscCall(DMPlexGetIsoperiodicFaceSF(user->dm, &isoperiodicface)); 49 50 if (isoperiodicface) { 51 PetscSF inv_isoperiodicface; 52 PetscInt nleaves; 53 const PetscInt *ilocal; 54 55 PetscCall(PetscSFCreateInverseSF(isoperiodicface, &inv_isoperiodicface)); 56 PetscCall(PetscSFGetGraph(inv_isoperiodicface, NULL, &nleaves, &ilocal, NULL)); 57 PetscCall(DMCreateLabel(user->dm, "Periodic Face")); 58 PetscCall(DMGetLabel(user->dm, "Periodic Face", &label)); 59 for (PetscInt i = 0; i < nleaves; i++) { 60 PetscCall(DMLabelSetValue(label, ilocal[i], 1)); 61 } 62 } else { 63 PetscCall(DMGetLabel(user->dm, "Face Sets", &label)); 64 } 65 66 PetscCall(DMPlexLabelComplete(user->dm, label)); 67 PetscCall(DMPlexFilter(user->dm, label, 1, &user->spanstats.dm)); 68 PetscCall(DMProjectCoordinates(user->spanstats.dm, NULL)); // Ensure that a coordinate FE exists 69 70 PetscCall(DMPlexDistribute(user->spanstats.dm, 0, NULL, &parent_distributed_dm)); 71 PetscCallMPI(MPI_Comm_size(comm, &size)); 72 if (parent_distributed_dm) { 73 PetscCall(DMDestroy(&user->spanstats.dm)); 74 user->spanstats.dm = parent_distributed_dm; 75 } else if (size > 1) { 76 PetscCall(PetscPrintf(comm, "WARNING: Turbulent spanwise statistics: parent DM could not be distributed accross %d ranks.\n", size)); 77 } 78 } 79 80 PetscCall(PetscObjectSetName((PetscObject)user->spanstats.dm, "Spanwise_Stats")); 81 PetscCall(DMSetOptionsPrefix(user->spanstats.dm, "turbulence_spanstats_")); 82 PetscCall(DMSetFromOptions(user->spanstats.dm)); 83 PetscCall(DMViewFromOptions(user->spanstats.dm, NULL, "-dm_view")); 84 85 // Create FE space for parent DM 86 PetscCall(PetscFECreateLagrange(PETSC_COMM_SELF, problem->dim - 1, user->spanstats.num_comp_stats, PETSC_FALSE, degree, PETSC_DECIDE, &fe)); 87 PetscCall(PetscObjectSetName((PetscObject)fe, "stats")); 88 PetscCall(DMAddField(user->spanstats.dm, NULL, (PetscObject)fe)); 89 PetscCall(DMCreateDS(user->spanstats.dm)); 90 PetscCall(DMPlexSetClosurePermutationTensor(user->spanstats.dm, PETSC_DETERMINE, NULL)); 91 92 // Create Section for data 93 PetscCall(DMGetLocalSection(user->spanstats.dm, §ion)); 94 PetscCall(PetscSectionSetFieldName(section, 0, "")); 95 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_DENSITY, "MeanDensity")); 96 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_PRESSURE, "MeanPressure")); 97 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_PRESSURE_SQUARED, "MeanPressureSquared")); 98 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_PRESSURE_VELOCITY_X, "MeanPressureVelocityX")); 99 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_PRESSURE_VELOCITY_Y, "MeanPressureVelocityY")); 100 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_PRESSURE_VELOCITY_Z, "MeanPressureVelocityZ")); 101 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_DENSITY_TEMPERATURE, "MeanDensityTemperature")); 102 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_DENSITY_TEMPERATURE_FLUX_X, "MeanDensityTemperatureFluxX")); 103 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_DENSITY_TEMPERATURE_FLUX_Y, "MeanDensityTemperatureFluxY")); 104 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_DENSITY_TEMPERATURE_FLUX_Z, "MeanDensityTemperatureFluxZ")); 105 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_MOMENTUM_X, "MeanMomentumX")); 106 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_MOMENTUM_Y, "MeanMomentumY")); 107 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_MOMENTUM_Z, "MeanMomentumZ")); 108 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_MOMENTUMFLUX_XX, "MeanMomentumFluxXX")); 109 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_MOMENTUMFLUX_YY, "MeanMomentumFluxYY")); 110 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_MOMENTUMFLUX_ZZ, "MeanMomentumFluxZZ")); 111 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_MOMENTUMFLUX_YZ, "MeanMomentumFluxYZ")); 112 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_MOMENTUMFLUX_XZ, "MeanMomentumFluxXZ")); 113 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_MOMENTUMFLUX_XY, "MeanMomentumFluxXY")); 114 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_VELOCITY_X, "MeanVelocityX")); 115 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_VELOCITY_Y, "MeanVelocityY")); 116 PetscCall(PetscSectionSetComponentName(section, 0, TURB_MEAN_VELOCITY_Z, "MeanVelocityZ")); 117 118 // Cleanup 119 PetscCall(PetscFEDestroy(&fe)); 120 121 PetscCall(PetscLogStagePop()); 122 PetscFunctionReturn(0); 123 } 124 125 // Create CeedElemRestriction for collocated data based on associated CeedBasis and CeedElemRestriction 126 // Number of quadrature points is used from the CeedBasis, and number of elements is used from the CeedElemRestriction 127 PetscErrorCode CreateElemRestrColloc(Ceed ceed, CeedInt num_comp, CeedBasis basis, CeedElemRestriction elem_restr_base, 128 CeedElemRestriction *elem_restr_collocated) { 129 CeedInt num_elem_qpts, loc_num_elem; 130 PetscFunctionBeginUser; 131 132 CeedBasisGetNumQuadraturePoints(basis, &num_elem_qpts); 133 CeedElemRestrictionGetNumElements(elem_restr_base, &loc_num_elem); 134 135 const CeedInt strides[] = {num_comp, 1, num_elem_qpts * num_comp}; 136 CeedElemRestrictionCreateStrided(ceed, loc_num_elem, num_elem_qpts, num_comp, num_comp * loc_num_elem * num_elem_qpts, strides, 137 elem_restr_collocated); 138 PetscFunctionReturn(0); 139 } 140 141 // Get coordinates of quadrature points 142 PetscErrorCode GetQuadratureCoords(Ceed ceed, DM dm, CeedElemRestriction elem_restr_x, CeedBasis basis_x, CeedVector x_coords, Vec *Qx_coords, 143 PetscInt *total_nqpnts) { 144 CeedElemRestriction elem_restr_qx; 145 CeedQFunction qf_quad_coords; 146 CeedOperator op_quad_coords; 147 PetscInt num_comp_x, loc_num_elem, num_elem_qpts; 148 OperatorApplyContext op_quad_coords_ctx; 149 150 PetscFunctionBeginUser; 151 // Create Element Restriction and CeedVector for quadrature coordinates 152 CeedBasisGetNumQuadraturePoints(basis_x, &num_elem_qpts); 153 CeedElemRestrictionGetNumElements(elem_restr_x, &loc_num_elem); 154 CeedElemRestrictionGetNumComponents(elem_restr_x, &num_comp_x); 155 *total_nqpnts = num_elem_qpts * loc_num_elem; 156 PetscCall(CreateElemRestrColloc(ceed, num_comp_x, basis_x, elem_restr_x, &elem_restr_qx)); 157 158 // Create QFunction 159 CeedQFunctionCreateIdentity(ceed, num_comp_x, CEED_EVAL_INTERP, CEED_EVAL_NONE, &qf_quad_coords); 160 161 // Create Operator 162 CeedOperatorCreate(ceed, qf_quad_coords, NULL, NULL, &op_quad_coords); 163 CeedOperatorSetField(op_quad_coords, "input", elem_restr_x, basis_x, x_coords); 164 CeedOperatorSetField(op_quad_coords, "output", elem_restr_qx, CEED_BASIS_COLLOCATED, CEED_VECTOR_ACTIVE); 165 166 PetscCall(CeedOperatorCreateLocalVecs(op_quad_coords, DMReturnVecType(dm), PetscObjectComm((PetscObject)dm), NULL, Qx_coords)); 167 PetscCall(OperatorApplyContextCreate(NULL, NULL, ceed, op_quad_coords, CEED_VECTOR_NONE, NULL, NULL, NULL, &op_quad_coords_ctx)); 168 169 PetscCall(ApplyCeedOperatorLocalToLocal(NULL, *Qx_coords, op_quad_coords_ctx)); 170 171 PetscCall(OperatorApplyContextDestroy(op_quad_coords_ctx)); 172 CeedElemRestrictionDestroy(&elem_restr_qx); 173 CeedQFunctionDestroy(&qf_quad_coords); 174 CeedOperatorDestroy(&op_quad_coords); 175 PetscFunctionReturn(0); 176 } 177 178 PetscErrorCode SpanStatsSetupDataCreate(Ceed ceed, User user, CeedData ceed_data, ProblemData *problem, SpanStatsSetupData *stats_data) { 179 DM dm = user->spanstats.dm; 180 CeedInt dim, P, Q, num_comp_x, num_comp_stats = user->spanstats.num_comp_stats; 181 Vec X_loc; 182 PetscFunctionBeginUser; 183 184 PetscCall(PetscNew(stats_data)); 185 186 PetscCall(DMGetDimension(dm, &dim)); 187 CeedBasisGetNumQuadraturePoints1D(ceed_data->basis_q, &Q); 188 CeedBasisGetNumNodes1D(ceed_data->basis_q, &P); 189 190 PetscCall(GetRestrictionForDomain(ceed, dm, 0, 0, 0, Q, problem->q_data_size_sur, &(*stats_data)->elem_restr_parent_stats, 191 &(*stats_data)->elem_restr_parent_x, &(*stats_data)->elem_restr_parent_qd)); 192 CeedElemRestrictionGetNumComponents((*stats_data)->elem_restr_parent_x, &num_comp_x); 193 CeedElemRestrictionCreateVector((*stats_data)->elem_restr_parent_x, &(*stats_data)->x_coord, NULL); 194 CeedElemRestrictionCreateVector((*stats_data)->elem_restr_parent_qd, &(*stats_data)->q_data, NULL); 195 196 CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_x, 2, Q, CEED_GAUSS, &(*stats_data)->basis_x); 197 CeedBasisCreateTensorH1Lagrange(ceed, dim, num_comp_stats, P, Q, CEED_GAUSS, &(*stats_data)->basis_stats); 198 199 PetscCall(CreateElemRestrColloc(ceed, num_comp_stats, (*stats_data)->basis_stats, (*stats_data)->elem_restr_parent_stats, 200 &(*stats_data)->elem_restr_parent_colloc)); 201 PetscCall(CreateElemRestrColloc(ceed, num_comp_stats, ceed_data->basis_q, ceed_data->elem_restr_q, &(*stats_data)->elem_restr_child_colloc)); 202 203 { // -- Copy DM coordinates into CeedVector 204 DM cdm; 205 PetscCall(DMGetCellCoordinateDM(dm, &cdm)); 206 if (cdm) { 207 PetscCall(DMGetCellCoordinatesLocal(dm, &X_loc)); 208 } else { 209 PetscCall(DMGetCoordinatesLocal(dm, &X_loc)); 210 } 211 } 212 PetscCall(VecScale(X_loc, problem->dm_scale)); 213 PetscCall(VecCopyP2C(X_loc, (*stats_data)->x_coord)); 214 215 PetscFunctionReturn(0); 216 } 217 218 PetscErrorCode SpanStatsSetupDataDestroy(SpanStatsSetupData data) { 219 PetscFunctionBeginUser; 220 221 CeedElemRestrictionDestroy(&data->elem_restr_parent_x); 222 CeedElemRestrictionDestroy(&data->elem_restr_parent_stats); 223 CeedElemRestrictionDestroy(&data->elem_restr_parent_qd); 224 CeedElemRestrictionDestroy(&data->elem_restr_parent_colloc); 225 CeedElemRestrictionDestroy(&data->elem_restr_child_colloc); 226 227 CeedBasisDestroy(&data->basis_x); 228 CeedBasisDestroy(&data->basis_stats); 229 230 CeedVectorDestroy(&data->x_coord); 231 CeedVectorDestroy(&data->q_data); 232 233 PetscCall(PetscFree(data)); 234 PetscFunctionReturn(0); 235 } 236 237 // Create PetscSF for child-to-parent communication 238 PetscErrorCode CreateStatsSF(Ceed ceed, CeedData ceed_data, SpanStatsSetupData stats_data, DM parentdm, DM childdm, PetscSF *statssf) { 239 PetscInt child_num_qpnts, parent_num_qpnts, num_comp_x; 240 Vec Child_qx_coords, Parent_qx_coords; 241 242 PetscFunctionBeginUser; 243 PetscCall(PetscSFCreate(PetscObjectComm((PetscObject)childdm), statssf)); 244 245 // Assume that child and parent have the same number of components 246 CeedBasisGetNumComponents(ceed_data->basis_x, &num_comp_x); 247 const PetscInt num_comp_sf = num_comp_x - 1; // Number of coord components used in the creation of the SF 248 249 // Get quad_coords for child and parent DM 250 PetscCall(GetQuadratureCoords(ceed, childdm, ceed_data->elem_restr_x, ceed_data->basis_x, ceed_data->x_coord, &Child_qx_coords, &child_num_qpnts)); 251 PetscCall(GetQuadratureCoords(ceed, parentdm, stats_data->elem_restr_parent_x, stats_data->basis_x, stats_data->x_coord, &Parent_qx_coords, 252 &parent_num_qpnts)); 253 254 { // Remove z component of coordinates for matching 255 const PetscReal *child_quad_coords, *parent_quad_coords; 256 PetscReal *child_coords, *parent_coords; 257 258 PetscCall(VecGetArrayRead(Child_qx_coords, &child_quad_coords)); 259 PetscCall(VecGetArrayRead(Parent_qx_coords, &parent_quad_coords)); 260 261 PetscCall(PetscMalloc2(child_num_qpnts * 2, &child_coords, parent_num_qpnts * 2, &parent_coords)); 262 for (int i = 0; i < child_num_qpnts; i++) { 263 child_coords[0 + i * num_comp_sf] = child_quad_coords[0 + i * num_comp_x]; 264 child_coords[1 + i * num_comp_sf] = child_quad_coords[1 + i * num_comp_x]; 265 } 266 for (int i = 0; i < parent_num_qpnts; i++) { 267 parent_coords[0 + i * num_comp_sf] = parent_quad_coords[0 + i * num_comp_x]; 268 parent_coords[1 + i * num_comp_sf] = parent_quad_coords[1 + i * num_comp_x]; 269 } 270 PetscCall(VecRestoreArrayRead(Child_qx_coords, &child_quad_coords)); 271 PetscCall(VecRestoreArrayRead(Parent_qx_coords, &parent_quad_coords)); 272 273 PetscCall(PetscSFSetGraphFromCoordinates(*statssf, parent_num_qpnts, child_num_qpnts, num_comp_sf, 1e-12, parent_coords, child_coords)); 274 PetscCall(PetscFree2(child_coords, parent_coords)); 275 } 276 277 PetscCall(PetscSFViewFromOptions(*statssf, NULL, "-spanstats_sf_view")); 278 279 PetscCall(VecDestroy(&Child_qx_coords)); 280 PetscCall(VecDestroy(&Parent_qx_coords)); 281 PetscFunctionReturn(0); 282 } 283 284 // @brief Setup RHS and LHS for L^2 projection of statistics 285 PetscErrorCode SetupL2ProjectionStats(Ceed ceed, User user, CeedData ceed_data, SpanStatsSetupData stats_data) { 286 CeedOperator op_mass, op_setup_sur, op_proj_rhs; 287 CeedQFunction qf_mass, qf_stats_proj; 288 CeedInt q_data_size, num_comp_stats = user->spanstats.num_comp_stats; 289 MPI_Comm comm = PetscObjectComm((PetscObject)user->spanstats.dm); 290 291 PetscFunctionBeginUser; 292 // -- Create Operator for RHS of L^2 projection of statistics 293 // Simply take collocated parent data (with quadrature weight already applied) and multiply by weight function. 294 // Therefore, an Identity QF is sufficient 295 CeedQFunctionCreateIdentity(ceed, num_comp_stats, CEED_EVAL_NONE, CEED_EVAL_INTERP, &qf_stats_proj); 296 297 CeedOperatorCreate(ceed, qf_stats_proj, NULL, NULL, &op_proj_rhs); 298 CeedOperatorSetField(op_proj_rhs, "input", stats_data->elem_restr_parent_colloc, CEED_BASIS_COLLOCATED, CEED_VECTOR_ACTIVE); 299 CeedOperatorSetField(op_proj_rhs, "output", stats_data->elem_restr_parent_stats, stats_data->basis_stats, CEED_VECTOR_ACTIVE); 300 301 PetscCall(OperatorApplyContextCreate(NULL, user->spanstats.dm, ceed, op_proj_rhs, NULL, NULL, NULL, NULL, &user->spanstats.op_proj_rhs_ctx)); 302 PetscCall(CeedOperatorCreateLocalVecs(op_proj_rhs, DMReturnVecType(user->spanstats.dm), comm, &user->spanstats.Parent_Stats_loc, NULL)); 303 304 // -- Setup LHS of L^2 projection 305 // Get q_data for mass matrix operator 306 CeedOperatorCreate(ceed, ceed_data->qf_setup_sur, NULL, NULL, &op_setup_sur); 307 CeedOperatorSetField(op_setup_sur, "dx", stats_data->elem_restr_parent_x, stats_data->basis_x, CEED_VECTOR_ACTIVE); 308 CeedOperatorSetField(op_setup_sur, "weight", CEED_ELEMRESTRICTION_NONE, stats_data->basis_x, CEED_VECTOR_NONE); 309 CeedOperatorSetField(op_setup_sur, "surface qdata", stats_data->elem_restr_parent_qd, CEED_BASIS_COLLOCATED, CEED_VECTOR_ACTIVE); 310 CeedOperatorApply(op_setup_sur, stats_data->x_coord, stats_data->q_data, CEED_REQUEST_IMMEDIATE); 311 312 // CEED Restriction 313 CeedElemRestrictionGetNumComponents(stats_data->elem_restr_parent_qd, &q_data_size); 314 315 // Create Mass CeedOperator 316 PetscCall(CreateMassQFunction(ceed, num_comp_stats, q_data_size, &qf_mass)); 317 CeedOperatorCreate(ceed, qf_mass, NULL, NULL, &op_mass); 318 CeedOperatorSetField(op_mass, "u", stats_data->elem_restr_parent_stats, stats_data->basis_stats, CEED_VECTOR_ACTIVE); 319 CeedOperatorSetField(op_mass, "qdata", stats_data->elem_restr_parent_qd, CEED_BASIS_COLLOCATED, stats_data->q_data); 320 CeedOperatorSetField(op_mass, "v", stats_data->elem_restr_parent_stats, stats_data->basis_stats, CEED_VECTOR_ACTIVE); 321 322 { // Setup KSP for L^2 projection 323 OperatorApplyContext M_ctx; 324 Mat mat_mass; 325 KSP ksp; 326 327 PetscCall(OperatorApplyContextCreate(user->spanstats.dm, user->spanstats.dm, user->ceed, op_mass, NULL, NULL, NULL, NULL, &M_ctx)); 328 PetscCall(CreateMatShell_Ceed(M_ctx, &mat_mass)); 329 330 PetscCall(KSPCreate(comm, &ksp)); 331 PetscCall(KSPSetOptionsPrefix(ksp, "turbulence_spanstats_")); 332 { 333 PC pc; 334 PetscCall(KSPGetPC(ksp, &pc)); 335 PetscCall(PCSetType(pc, PCJACOBI)); 336 PetscCall(PCJacobiSetType(pc, PC_JACOBI_DIAGONAL)); 337 PetscCall(KSPSetType(ksp, KSPCG)); 338 PetscCall(KSPSetNormType(ksp, KSP_NORM_NATURAL)); 339 PetscCall(KSPSetTolerances(ksp, 1e-10, PETSC_DEFAULT, PETSC_DEFAULT, PETSC_DEFAULT)); 340 } 341 PetscCall(KSPSetOperators(ksp, mat_mass, mat_mass)); 342 PetscCall(KSPSetFromOptions(ksp)); 343 user->spanstats.ksp = ksp; 344 } 345 346 // Cleanup 347 CeedQFunctionDestroy(&qf_mass); 348 CeedQFunctionDestroy(&qf_stats_proj); 349 CeedOperatorDestroy(&op_mass); 350 CeedOperatorDestroy(&op_setup_sur); 351 CeedOperatorDestroy(&op_proj_rhs); 352 PetscFunctionReturn(0); 353 } 354 355 // Create CeedOperator for statistics collection 356 PetscErrorCode CreateStatisticCollectionOperator(Ceed ceed, User user, CeedData ceed_data, SpanStatsSetupData stats_data, ProblemData *problem) { 357 CeedInt num_comp_stats = user->spanstats.num_comp_stats, num_comp_x = problem->dim, num_comp_q; 358 Turbulence_SpanStatsContext collect_ctx; 359 NewtonianIdealGasContext newtonian_ig_ctx; 360 CeedQFunctionContext collect_context; 361 CeedQFunction qf_stats_collect; 362 CeedOperator op_stats_collect; 363 364 PetscFunctionBeginUser; 365 CeedBasisGetNumComponents(ceed_data->basis_q, &num_comp_q); 366 367 // Create Operator for statistics collection 368 switch (user->phys->state_var) { 369 case STATEVAR_PRIMITIVE: 370 CeedQFunctionCreateInterior(ceed, 1, ChildStatsCollection_Prim, ChildStatsCollection_Prim_loc, &qf_stats_collect); 371 break; 372 case STATEVAR_CONSERVATIVE: 373 CeedQFunctionCreateInterior(ceed, 1, ChildStatsCollection_Conserv, ChildStatsCollection_Conserv_loc, &qf_stats_collect); 374 break; 375 default: 376 SETERRQ(PetscObjectComm((PetscObject)user->dm), PETSC_ERR_SUP, "No statisics collection available for chosen state variable"); 377 } 378 379 if (user->spanstats.do_mms_test) { 380 CeedQFunctionDestroy(&qf_stats_collect); 381 CeedQFunctionCreateInterior(ceed, 1, ChildStatsCollectionMMSTest, ChildStatsCollectionMMSTest_loc, &qf_stats_collect); 382 } 383 384 { // Setup Collection Context 385 PetscCall(PetscNew(&collect_ctx)); 386 CeedQFunctionContextGetData(problem->apply_vol_rhs.qfunction_context, CEED_MEM_HOST, &newtonian_ig_ctx); 387 collect_ctx->gas = *newtonian_ig_ctx; 388 389 CeedQFunctionContextCreate(user->ceed, &collect_context); 390 CeedQFunctionContextSetData(collect_context, CEED_MEM_HOST, CEED_USE_POINTER, sizeof(*collect_ctx), collect_ctx); 391 CeedQFunctionContextSetDataDestroy(collect_context, CEED_MEM_HOST, FreeContextPetsc); 392 393 CeedQFunctionContextRegisterDouble(collect_context, "solution time", offsetof(struct Turbulence_SpanStatsContext_, solution_time), 1, 394 "Current solution time"); 395 CeedQFunctionContextRegisterDouble(collect_context, "previous time", offsetof(struct Turbulence_SpanStatsContext_, previous_time), 1, 396 "Previous time statistics collection was done"); 397 398 CeedQFunctionContextRestoreData(problem->apply_vol_rhs.qfunction_context, &newtonian_ig_ctx); 399 } 400 401 CeedQFunctionSetContext(qf_stats_collect, collect_context); 402 CeedQFunctionContextDestroy(&collect_context); 403 CeedQFunctionAddInput(qf_stats_collect, "q", num_comp_q, CEED_EVAL_INTERP); 404 CeedQFunctionAddInput(qf_stats_collect, "q_data", problem->q_data_size_vol, CEED_EVAL_NONE); 405 CeedQFunctionAddInput(qf_stats_collect, "x", num_comp_x, CEED_EVAL_INTERP); 406 CeedQFunctionAddOutput(qf_stats_collect, "v", num_comp_stats, CEED_EVAL_NONE); 407 408 CeedOperatorCreate(ceed, qf_stats_collect, NULL, NULL, &op_stats_collect); 409 CeedOperatorSetField(op_stats_collect, "q", ceed_data->elem_restr_q, ceed_data->basis_q, CEED_VECTOR_ACTIVE); 410 CeedOperatorSetField(op_stats_collect, "q_data", ceed_data->elem_restr_qd_i, CEED_BASIS_COLLOCATED, ceed_data->q_data); 411 CeedOperatorSetField(op_stats_collect, "x", ceed_data->elem_restr_x, ceed_data->basis_x, ceed_data->x_coord); 412 CeedOperatorSetField(op_stats_collect, "v", stats_data->elem_restr_child_colloc, CEED_BASIS_COLLOCATED, CEED_VECTOR_ACTIVE); 413 414 CeedOperatorGetContextFieldLabel(op_stats_collect, "solution time", &user->spanstats.solution_time_label); 415 CeedOperatorGetContextFieldLabel(op_stats_collect, "previous time", &user->spanstats.previous_time_label); 416 417 PetscCall(OperatorApplyContextCreate(user->dm, user->spanstats.dm, user->ceed, op_stats_collect, user->q_ceed, NULL, NULL, NULL, 418 &user->spanstats.op_stats_collect_ctx)); 419 420 PetscCall(CeedOperatorCreateLocalVecs(op_stats_collect, DMReturnVecType(user->spanstats.dm), PetscObjectComm((PetscObject)user->spanstats.dm), NULL, 421 &user->spanstats.Child_Stats_loc)); 422 PetscCall(VecZeroEntries(user->spanstats.Child_Stats_loc)); 423 424 CeedQFunctionDestroy(&qf_stats_collect); 425 CeedOperatorDestroy(&op_stats_collect); 426 PetscFunctionReturn(0); 427 } 428 429 // Creates operator for calculating error of method of manufactured solution (MMS) test 430 PetscErrorCode SetupMMSErrorChecking(Ceed ceed, User user, CeedData ceed_data, SpanStatsSetupData stats_data) { 431 CeedInt num_comp_stats = user->spanstats.num_comp_stats, num_comp_x, q_data_size; 432 CeedQFunction qf_error; 433 CeedOperator op_error; 434 CeedVector x_ceed, y_ceed; 435 PetscFunctionBeginUser; 436 437 CeedElemRestrictionGetNumComponents(stats_data->elem_restr_parent_qd, &q_data_size); 438 CeedBasisGetNumComponents(stats_data->basis_x, &num_comp_x); 439 440 CeedQFunctionCreateInterior(ceed, 1, ChildStatsCollectionMMSTest_Error, ChildStatsCollectionMMSTest_Error_loc, &qf_error); 441 CeedQFunctionAddInput(qf_error, "q", num_comp_stats, CEED_EVAL_INTERP); 442 CeedQFunctionAddInput(qf_error, "qdata", q_data_size, CEED_EVAL_NONE); 443 CeedQFunctionAddInput(qf_error, "x", num_comp_x, CEED_EVAL_INTERP); 444 CeedQFunctionAddOutput(qf_error, "v", num_comp_stats, CEED_EVAL_INTERP); 445 446 CeedOperatorCreate(ceed, qf_error, NULL, NULL, &op_error); 447 CeedOperatorSetField(op_error, "q", stats_data->elem_restr_parent_stats, stats_data->basis_stats, CEED_VECTOR_ACTIVE); 448 CeedOperatorSetField(op_error, "qdata", stats_data->elem_restr_parent_qd, CEED_BASIS_COLLOCATED, stats_data->q_data); 449 CeedOperatorSetField(op_error, "x", stats_data->elem_restr_parent_x, stats_data->basis_x, stats_data->x_coord); 450 CeedOperatorSetField(op_error, "v", stats_data->elem_restr_parent_stats, stats_data->basis_stats, CEED_VECTOR_ACTIVE); 451 452 CeedElemRestrictionCreateVector(stats_data->elem_restr_parent_stats, &x_ceed, NULL); 453 CeedElemRestrictionCreateVector(stats_data->elem_restr_parent_stats, &y_ceed, NULL); 454 PetscCall(OperatorApplyContextCreate(user->spanstats.dm, user->spanstats.dm, user->ceed, op_error, x_ceed, y_ceed, NULL, NULL, 455 &user->spanstats.mms_error_ctx)); 456 457 CeedOperatorDestroy(&op_error); 458 CeedQFunctionDestroy(&qf_error); 459 CeedVectorDestroy(&x_ceed); 460 CeedVectorDestroy(&y_ceed); 461 PetscFunctionReturn(0); 462 } 463 464 // Setup for statistics collection 465 PetscErrorCode SetupStatsCollection(Ceed ceed, User user, CeedData ceed_data, ProblemData *problem) { 466 SpanStatsSetupData stats_data; 467 PetscLogStage stage_stats_setup; 468 PetscFunctionBeginUser; 469 PetscCall(PetscLogStageGetId("Stats Setup", &stage_stats_setup)); 470 if (stage_stats_setup == -1) PetscCall(PetscLogStageRegister("Stats Setup", &stage_stats_setup)); 471 PetscCall(PetscLogStagePush(stage_stats_setup)); 472 473 // Create necessary CeedObjects for setting up statistics 474 PetscCall(SpanStatsSetupDataCreate(ceed, user, ceed_data, problem, &stats_data)); 475 476 // Create SF for communicating child data back their respective parents 477 PetscCall(CreateStatsSF(ceed, ceed_data, stats_data, user->dm, user->spanstats.dm, &user->spanstats.sf)); 478 479 // Create CeedOperators for statistics collection 480 PetscCall(CreateStatisticCollectionOperator(ceed, user, ceed_data, stats_data, problem)); 481 482 // Setup KSP and Mat for L^2 projection of statistics 483 PetscCall(SetupL2ProjectionStats(ceed, user, ceed_data, stats_data)); 484 485 PetscCall(PetscOptionsGetBool(NULL, NULL, "-ts_monitor_turbulence_spanstats_mms", &user->spanstats.do_mms_test, NULL)); 486 if (user->spanstats.do_mms_test) { 487 PetscCall(SetupMMSErrorChecking(ceed, user, ceed_data, stats_data)); 488 } 489 490 { // Setup stats viewer with prefix 491 PetscViewerType viewer_type; 492 PetscCall(PetscViewerGetType(user->app_ctx->turb_spanstats_viewer, &viewer_type)); 493 PetscCall(PetscOptionsSetValue(NULL, "-ts_monitor_turbulence_spanstats_viewer_type", viewer_type)); 494 495 PetscCall(PetscViewerSetOptionsPrefix(user->app_ctx->turb_spanstats_viewer, "ts_monitor_turbulence_spanstats_")); 496 PetscCall(PetscViewerSetFromOptions(user->app_ctx->turb_spanstats_viewer)); 497 } 498 499 PetscCall(SpanStatsSetupDataDestroy(stats_data)); 500 PetscCall(PetscLogStagePop()); 501 PetscFunctionReturn(0); 502 } 503 504 // Collect statistics based on the solution Q 505 PetscErrorCode CollectStatistics(User user, PetscScalar solution_time, Vec Q) { 506 Span_Stats user_stats = user->spanstats; 507 508 PetscFunctionBeginUser; 509 PetscLogStage stage_stats_collect; 510 PetscCall(PetscLogStageGetId("Stats Collect", &stage_stats_collect)); 511 if (stage_stats_collect == -1) PetscCall(PetscLogStageRegister("Stats Collect", &stage_stats_collect)); 512 PetscCall(PetscLogStagePush(stage_stats_collect)); 513 514 PetscCall(UpdateBoundaryValues(user, user->Q_loc, solution_time)); 515 CeedOperatorSetContextDouble(user_stats.op_stats_collect_ctx->op, user_stats.solution_time_label, &solution_time); 516 PetscCall(DMGlobalToLocal(user->dm, Q, INSERT_VALUES, user->Q_loc)); 517 PetscCall(ApplyAddCeedOperatorLocalToLocal(user->Q_loc, user_stats.Child_Stats_loc, user_stats.op_stats_collect_ctx)); 518 519 CeedOperatorSetContextDouble(user_stats.op_stats_collect_ctx->op, user_stats.previous_time_label, &solution_time); 520 521 PetscCall(PetscLogStagePop()); 522 PetscFunctionReturn(0); 523 } 524 525 // Process the child statistics into parent statistics and project them onto stats 526 PetscErrorCode ProcessStatistics(User user, Vec stats) { 527 Span_Stats user_stats = user->spanstats; 528 const PetscScalar *child_stats; 529 PetscScalar *parent_stats; 530 MPI_Datatype unit; 531 Vec RHS; 532 533 PetscFunctionBeginUser; 534 PetscLogStage stage_stats_process; 535 PetscCall(PetscLogStageGetId("Stats Process", &stage_stats_process)); 536 if (stage_stats_process == -1) PetscCall(PetscLogStageRegister("Stats Process", &stage_stats_process)); 537 PetscCall(PetscLogStagePush(stage_stats_process)); 538 539 PetscCall(VecZeroEntries(user_stats.Parent_Stats_loc)); 540 541 PetscCall(VecGetArrayRead(user_stats.Child_Stats_loc, &child_stats)); 542 PetscCall(VecGetArray(user_stats.Parent_Stats_loc, &parent_stats)); 543 544 if (user_stats.num_comp_stats == 1) unit = MPIU_REAL; 545 else { 546 PetscCallMPI(MPI_Type_contiguous(user_stats.num_comp_stats, MPIU_REAL, &unit)); 547 PetscCallMPI(MPI_Type_commit(&unit)); 548 } 549 550 PetscCall(PetscSFReduceBegin(user_stats.sf, unit, child_stats, parent_stats, MPI_SUM)); 551 PetscCall(PetscSFReduceEnd(user_stats.sf, unit, child_stats, parent_stats, MPI_SUM)); 552 553 PetscCall(VecRestoreArrayRead(user_stats.Child_Stats_loc, &child_stats)); 554 PetscCall(VecRestoreArray(user_stats.Parent_Stats_loc, &parent_stats)); 555 PetscCallMPI(MPI_Type_free(&unit)); 556 557 PetscReal solution_time; 558 PetscCall(DMGetOutputSequenceNumber(user_stats.dm, NULL, &solution_time)); 559 PetscReal summing_duration = solution_time - user->app_ctx->cont_time; 560 PetscCall(VecScale(user_stats.Parent_Stats_loc, 1 / (summing_duration * user_stats.span_width))); 561 562 // L^2 projection with the parent_data 563 PetscCall(DMGetGlobalVector(user_stats.dm, &RHS)); 564 PetscCall(ApplyCeedOperatorLocalToGlobal(user_stats.Parent_Stats_loc, RHS, user_stats.op_proj_rhs_ctx)); 565 566 PetscCall(KSPSolve(user_stats.ksp, RHS, stats)); 567 568 PetscCall(DMRestoreGlobalVector(user_stats.dm, &RHS)); 569 PetscCall(PetscLogStagePop()); 570 PetscFunctionReturn(0); 571 } 572 573 // TSMonitor for the statistics collection and processing 574 PetscErrorCode TSMonitor_Statistics(TS ts, PetscInt steps, PetscReal solution_time, Vec Q, void *ctx) { 575 User user = (User)ctx; 576 Vec stats; 577 TSConvergedReason reason; 578 PetscInt collect_interval = user->app_ctx->turb_spanstats_collect_interval, viewer_interval = user->app_ctx->turb_spanstats_viewer_interval; 579 PetscFunctionBeginUser; 580 PetscCall(TSGetConvergedReason(ts, &reason)); 581 // Do not collect or process on the first step of the run (ie. on the initial condition) 582 if (steps == user->app_ctx->cont_steps && reason == TS_CONVERGED_ITERATING) PetscFunctionReturn(0); 583 584 PetscBool run_processing_and_viewer = (steps % viewer_interval == 0 && viewer_interval != -1) || reason != TS_CONVERGED_ITERATING; 585 586 if (steps % collect_interval == 0 || run_processing_and_viewer) { 587 PetscCall(CollectStatistics(user, solution_time, Q)); 588 589 if (run_processing_and_viewer) { 590 PetscCall(DMSetOutputSequenceNumber(user->spanstats.dm, steps, solution_time)); 591 PetscCall(DMGetGlobalVector(user->spanstats.dm, &stats)); 592 PetscCall(ProcessStatistics(user, stats)); 593 if (user->app_ctx->test_type == TESTTYPE_NONE) { 594 PetscCall(PetscViewerPushFormat(user->app_ctx->turb_spanstats_viewer, user->app_ctx->turb_spanstats_viewer_format)); 595 PetscCall(VecView(stats, user->app_ctx->turb_spanstats_viewer)); 596 PetscCall(PetscViewerPopFormat(user->app_ctx->turb_spanstats_viewer)); 597 } 598 if (user->app_ctx->test_type == TESTTYPE_TURB_SPANSTATS && reason != TS_CONVERGED_ITERATING) { 599 PetscCall(RegressionTests_NS(user->app_ctx, stats)); 600 } 601 if (user->spanstats.do_mms_test && reason != TS_CONVERGED_ITERATING) { 602 Vec error; 603 PetscCall(VecDuplicate(stats, &error)); 604 PetscCall(ApplyCeedOperatorGlobalToGlobal(stats, error, user->spanstats.mms_error_ctx)); 605 PetscScalar error_sq = 0; 606 PetscCall(VecSum(error, &error_sq)); 607 PetscScalar l2_error = sqrt(error_sq); 608 PetscCall(PetscPrintf(PETSC_COMM_WORLD, "l2 error: %.5e\n", l2_error)); 609 } 610 PetscCall(DMRestoreGlobalVector(user->spanstats.dm, &stats)); 611 } 612 } 613 PetscFunctionReturn(0); 614 } 615 616 PetscErrorCode DestroyStats(User user, CeedData ceed_data) { 617 PetscFunctionBeginUser; 618 619 // -- CeedVectors 620 PetscCall(VecDestroy(&user->spanstats.Child_Stats_loc)); 621 PetscCall(VecDestroy(&user->spanstats.Parent_Stats_loc)); 622 623 // -- CeedOperators 624 PetscCall(OperatorApplyContextDestroy(user->spanstats.op_stats_collect_ctx)); 625 PetscCall(OperatorApplyContextDestroy(user->spanstats.op_proj_rhs_ctx)); 626 PetscCall(OperatorApplyContextDestroy(user->spanstats.mms_error_ctx)); 627 628 // -- KSP 629 PetscCall(KSPDestroy(&user->spanstats.ksp)); 630 631 // -- SF 632 PetscCall(PetscSFDestroy(&user->spanstats.sf)); 633 634 // -- DM 635 PetscCall(DMDestroy(&user->spanstats.dm)); 636 637 PetscFunctionReturn(0); 638 } 639