xref: /libCEED/examples/fluids/problems/advection.c (revision 1864f1c2b4e770a2a9adc26a02ef77fc3a284256)
177841947SLeila Ghaffari // Copyright (c) 2017, Lawrence Livermore National Security, LLC. Produced at
277841947SLeila Ghaffari // the Lawrence Livermore National Laboratory. LLNL-CODE-734707. All Rights
377841947SLeila Ghaffari // reserved. See files LICENSE and NOTICE for details.
477841947SLeila Ghaffari //
577841947SLeila Ghaffari // This file is part of CEED, a collection of benchmarks, miniapps, software
677841947SLeila Ghaffari // libraries and APIs for efficient high-order finite element and spectral
777841947SLeila Ghaffari // element discretizations for exascale applications. For more information and
877841947SLeila Ghaffari // source code availability see http://github.com/ceed.
977841947SLeila Ghaffari //
1077841947SLeila Ghaffari // The CEED research is supported by the Exascale Computing Project 17-SC-20-SC,
1177841947SLeila Ghaffari // a collaborative effort of two U.S. Department of Energy organizations (Office
1277841947SLeila Ghaffari // of Science and the National Nuclear Security Administration) responsible for
1377841947SLeila Ghaffari // the planning and preparation of a capable exascale ecosystem, including
1477841947SLeila Ghaffari // software, applications, hardware, advanced system engineering and early
1577841947SLeila Ghaffari // testbed platforms, in support of the nation's exascale computing imperative.
1677841947SLeila Ghaffari 
1777841947SLeila Ghaffari /// @file
1877841947SLeila Ghaffari /// Utility functions for setting up ADVECTION
1977841947SLeila Ghaffari 
2077841947SLeila Ghaffari #include "../navierstokes.h"
2177841947SLeila Ghaffari #include "../qfunctions/setupgeo.h"
2277841947SLeila Ghaffari #include "../qfunctions/advection.h"
2377841947SLeila Ghaffari 
24*1864f1c2SLeila Ghaffari PetscErrorCode NS_ADVECTION(ProblemData *problem, DM dm, void *setup_ctx,
25*1864f1c2SLeila Ghaffari                             void *ctx) {
2677841947SLeila Ghaffari   WindType             wind_type;
2777841947SLeila Ghaffari   BubbleType           bubble_type;
2877841947SLeila Ghaffari   BubbleContinuityType bubble_continuity_type;
2977841947SLeila Ghaffari   StabilizationType    stab;
3077841947SLeila Ghaffari   SetupContext         setup_context = *(SetupContext *)setup_ctx;
3177841947SLeila Ghaffari   User                 user = *(User *)ctx;
3277841947SLeila Ghaffari   MPI_Comm             comm = PETSC_COMM_WORLD;
3377841947SLeila Ghaffari   PetscBool            implicit;
3477841947SLeila Ghaffari   PetscBool            has_curr_time = PETSC_FALSE;
3577841947SLeila Ghaffari   PetscInt             ierr;
3677841947SLeila Ghaffari   PetscFunctionBeginUser;
3777841947SLeila Ghaffari 
3877841947SLeila Ghaffari   ierr = PetscCalloc1(1, &user->phys->advection_ctx); CHKERRQ(ierr);
3977841947SLeila Ghaffari 
4077841947SLeila Ghaffari   // ------------------------------------------------------
4177841947SLeila Ghaffari   //               SET UP ADVECTION
4277841947SLeila Ghaffari   // ------------------------------------------------------
4377841947SLeila Ghaffari   problem->dim                     = 3;
4477841947SLeila Ghaffari   problem->q_data_size_vol         = 10;
4577841947SLeila Ghaffari   problem->q_data_size_sur         = 4;
4677841947SLeila Ghaffari   problem->setup_vol               = Setup;
4777841947SLeila Ghaffari   problem->setup_vol_loc           = Setup_loc;
4877841947SLeila Ghaffari   problem->setup_sur               = SetupBoundary;
4977841947SLeila Ghaffari   problem->setup_sur_loc           = SetupBoundary_loc;
5077841947SLeila Ghaffari   problem->ics                     = ICsAdvection;
5177841947SLeila Ghaffari   problem->ics_loc                 = ICsAdvection_loc;
5277841947SLeila Ghaffari   problem->apply_vol_rhs           = Advection;
5377841947SLeila Ghaffari   problem->apply_vol_rhs_loc       = Advection_loc;
5477841947SLeila Ghaffari   problem->apply_vol_ifunction     = IFunction_Advection;
5577841947SLeila Ghaffari   problem->apply_vol_ifunction_loc = IFunction_Advection_loc;
5677841947SLeila Ghaffari   problem->apply_sur               = Advection_Sur;
5777841947SLeila Ghaffari   problem->apply_sur_loc           = Advection_Sur_loc;
5877841947SLeila Ghaffari   problem->bc                      = Exact_Advection;
59d0b732dbSLeila Ghaffari   problem->setup_ctx               = SetupContext_ADVECTION;
6077841947SLeila Ghaffari   problem->bc_func                 = BC_ADVECTION;
6177841947SLeila Ghaffari   problem->non_zero_time           = PETSC_FALSE;
6277841947SLeila Ghaffari   problem->print_info              = PRINT_ADVECTION;
6377841947SLeila Ghaffari 
6477841947SLeila Ghaffari   // ------------------------------------------------------
6577841947SLeila Ghaffari   //             Create the libCEED context
6677841947SLeila Ghaffari   // ------------------------------------------------------
6777841947SLeila Ghaffari   CeedScalar rc          = 1000.;      // m (Radius of bubble)
6877841947SLeila Ghaffari   CeedScalar CtauS       = 0.;         // dimensionless
6977841947SLeila Ghaffari   CeedScalar strong_form = 0.;         // [0,1]
7077841947SLeila Ghaffari   CeedScalar E_wind      = 1.e6;       // J
7177841947SLeila Ghaffari   PetscReal wind[3]      = {1., 0, 0}; // m/s
72*1864f1c2SLeila Ghaffari   PetscReal domain_min[3], domain_max[3], domain_size[3];
73*1864f1c2SLeila Ghaffari   ierr = DMGetBoundingBox(dm, domain_min, domain_max); CHKERRQ(ierr);
74*1864f1c2SLeila Ghaffari   for (int i=0; i<3; i++) domain_size[i] = domain_max[i] - domain_min[i];
75*1864f1c2SLeila Ghaffari 
7677841947SLeila Ghaffari 
7777841947SLeila Ghaffari   // ------------------------------------------------------
7877841947SLeila Ghaffari   //             Create the PETSc context
7977841947SLeila Ghaffari   // ------------------------------------------------------
8077841947SLeila Ghaffari   PetscScalar meter    = 1e-2; // 1 meter in scaled length units
8177841947SLeila Ghaffari   PetscScalar kilogram = 1e-6; // 1 kilogram in scaled mass units
8277841947SLeila Ghaffari   PetscScalar second   = 1e-2; // 1 second in scaled time units
8377841947SLeila Ghaffari   PetscScalar Joule;
8477841947SLeila Ghaffari 
8577841947SLeila Ghaffari   // ------------------------------------------------------
8677841947SLeila Ghaffari   //              Command line Options
8777841947SLeila Ghaffari   // ------------------------------------------------------
8877841947SLeila Ghaffari   ierr = PetscOptionsBegin(comm, NULL, "Options for ADVECTION problem",
8977841947SLeila Ghaffari                            NULL); CHKERRQ(ierr);
9077841947SLeila Ghaffari   // -- Physics
9177841947SLeila Ghaffari   ierr = PetscOptionsScalar("-rc", "Characteristic radius of thermal bubble",
9277841947SLeila Ghaffari                             NULL, rc, &rc, NULL); CHKERRQ(ierr);
9377841947SLeila Ghaffari   PetscBool translation;
9477841947SLeila Ghaffari   ierr = PetscOptionsEnum("-wind_type", "Wind type in Advection",
9577841947SLeila Ghaffari                           NULL, WindTypes,
9677841947SLeila Ghaffari                           (PetscEnum)(wind_type = WIND_ROTATION),
9777841947SLeila Ghaffari                           (PetscEnum *)&wind_type, &translation); CHKERRQ(ierr);
9877841947SLeila Ghaffari   if (translation) user->phys->has_neumann = PETSC_TRUE;
9977841947SLeila Ghaffari   PetscInt n = problem->dim;
10077841947SLeila Ghaffari   PetscBool user_wind;
10177841947SLeila Ghaffari   ierr = PetscOptionsRealArray("-wind_translation", "Constant wind vector",
10277841947SLeila Ghaffari                                NULL, wind, &n, &user_wind); CHKERRQ(ierr);
10377841947SLeila Ghaffari   ierr = PetscOptionsScalar("-CtauS",
10477841947SLeila Ghaffari                             "Scale coefficient for tau (nondimensional)",
10577841947SLeila Ghaffari                             NULL, CtauS, &CtauS, NULL); CHKERRQ(ierr);
10677841947SLeila Ghaffari   ierr = PetscOptionsScalar("-strong_form",
10777841947SLeila Ghaffari                             "Strong (1) or weak/integrated by parts (0) advection residual",
10877841947SLeila Ghaffari                             NULL, strong_form, &strong_form, NULL); CHKERRQ(ierr);
10977841947SLeila Ghaffari   ierr = PetscOptionsScalar("-E_wind", "Total energy of inflow wind",
11077841947SLeila Ghaffari                             NULL, E_wind, &E_wind, NULL); CHKERRQ(ierr);
11177841947SLeila Ghaffari   ierr = PetscOptionsEnum("-bubble_type", "Sphere (3D) or cylinder (2D)",
11277841947SLeila Ghaffari                           NULL, BubbleTypes,
11377841947SLeila Ghaffari                           (PetscEnum)(bubble_type = BUBBLE_SPHERE),
11477841947SLeila Ghaffari                           (PetscEnum *)&bubble_type, NULL); CHKERRQ(ierr);
11577841947SLeila Ghaffari   ierr = PetscOptionsEnum("-bubble_continuity", "Smooth, back_sharp, or thick",
11677841947SLeila Ghaffari                           NULL, BubbleContinuityTypes,
11777841947SLeila Ghaffari                           (PetscEnum)(bubble_continuity_type = BUBBLE_CONTINUITY_SMOOTH),
11877841947SLeila Ghaffari                           (PetscEnum *)&bubble_continuity_type, NULL); CHKERRQ(ierr);
11977841947SLeila Ghaffari   ierr = PetscOptionsEnum("-stab", "Stabilization method", NULL,
12077841947SLeila Ghaffari                           StabilizationTypes, (PetscEnum)(stab = STAB_NONE),
12177841947SLeila Ghaffari                           (PetscEnum *)&stab, NULL); CHKERRQ(ierr);
12277841947SLeila Ghaffari   ierr = PetscOptionsBool("-implicit", "Use implicit (IFunction) formulation",
12377841947SLeila Ghaffari                           NULL, implicit=PETSC_FALSE, &implicit, NULL);
12477841947SLeila Ghaffari   CHKERRQ(ierr);
12577841947SLeila Ghaffari 
12677841947SLeila Ghaffari   // -- Units
12777841947SLeila Ghaffari   ierr = PetscOptionsScalar("-units_meter", "1 meter in scaled length units",
12877841947SLeila Ghaffari                             NULL, meter, &meter, NULL); CHKERRQ(ierr);
12977841947SLeila Ghaffari   meter = fabs(meter);
13077841947SLeila Ghaffari   ierr = PetscOptionsScalar("-units_kilogram","1 kilogram in scaled mass units",
13177841947SLeila Ghaffari                             NULL, kilogram, &kilogram, NULL); CHKERRQ(ierr);
13277841947SLeila Ghaffari   kilogram = fabs(kilogram);
13377841947SLeila Ghaffari   ierr = PetscOptionsScalar("-units_second","1 second in scaled time units",
13477841947SLeila Ghaffari                             NULL, second, &second, NULL); CHKERRQ(ierr);
13577841947SLeila Ghaffari   second = fabs(second);
13677841947SLeila Ghaffari 
13777841947SLeila Ghaffari   // -- Warnings
13877841947SLeila Ghaffari   if (wind_type == WIND_ROTATION && user_wind) {
13977841947SLeila Ghaffari     ierr = PetscPrintf(comm,
14077841947SLeila Ghaffari                        "Warning! Use -wind_translation only with -wind_type translation\n");
14177841947SLeila Ghaffari     CHKERRQ(ierr);
14277841947SLeila Ghaffari   }
14377841947SLeila Ghaffari   if (wind_type == WIND_TRANSLATION
14477841947SLeila Ghaffari       && bubble_type == BUBBLE_CYLINDER && wind[2] != 0.) {
14577841947SLeila Ghaffari     wind[2] = 0;
14677841947SLeila Ghaffari     ierr = PetscPrintf(comm,
14777841947SLeila Ghaffari                        "Warning! Background wind in the z direction should be zero (-wind_translation x,x,0) with -bubble_type cylinder\n");
14877841947SLeila Ghaffari     CHKERRQ(ierr);
14977841947SLeila Ghaffari   }
15077841947SLeila Ghaffari   if (stab == STAB_NONE && CtauS != 0) {
15177841947SLeila Ghaffari     ierr = PetscPrintf(comm,
15277841947SLeila Ghaffari                        "Warning! Use -CtauS only with -stab su or -stab supg\n");
15377841947SLeila Ghaffari     CHKERRQ(ierr);
15477841947SLeila Ghaffari   }
15577841947SLeila Ghaffari   if (stab == STAB_SUPG && !implicit) {
15677841947SLeila Ghaffari     ierr = PetscPrintf(comm,
15777841947SLeila Ghaffari                        "Warning! Use -stab supg only with -implicit\n");
15877841947SLeila Ghaffari     CHKERRQ(ierr);
15977841947SLeila Ghaffari   }
16077841947SLeila Ghaffari 
16177841947SLeila Ghaffari   ierr = PetscOptionsEnd(); CHKERRQ(ierr);
16277841947SLeila Ghaffari 
16377841947SLeila Ghaffari   // ------------------------------------------------------
16477841947SLeila Ghaffari   //           Set up the PETSc context
16577841947SLeila Ghaffari   // ------------------------------------------------------
16677841947SLeila Ghaffari   // -- Define derived units
16777841947SLeila Ghaffari   Joule = kilogram * PetscSqr(meter) / PetscSqr(second);
16877841947SLeila Ghaffari 
16977841947SLeila Ghaffari   user->units->meter    = meter;
17077841947SLeila Ghaffari   user->units->kilogram = kilogram;
17177841947SLeila Ghaffari   user->units->second   = second;
17277841947SLeila Ghaffari   user->units->Joule    = Joule;
17377841947SLeila Ghaffari 
17477841947SLeila Ghaffari   // ------------------------------------------------------
17577841947SLeila Ghaffari   //           Set up the libCEED context
17677841947SLeila Ghaffari   // ------------------------------------------------------
17777841947SLeila Ghaffari   // -- Scale variables to desired units
17877841947SLeila Ghaffari   E_wind *= Joule;
17977841947SLeila Ghaffari   rc = fabs(rc) * meter;
180*1864f1c2SLeila Ghaffari   for (int i=0; i<3; i++) {
181*1864f1c2SLeila Ghaffari     wind[i] *= (meter/second);
182*1864f1c2SLeila Ghaffari     domain_size[i] *= meter;
183*1864f1c2SLeila Ghaffari   }
184*1864f1c2SLeila Ghaffari   problem->dm_scale = meter;
18577841947SLeila Ghaffari 
18677841947SLeila Ghaffari   // -- Setup Context
18777841947SLeila Ghaffari   setup_context->rc                     = rc;
188*1864f1c2SLeila Ghaffari   setup_context->lx                     = domain_size[0];
189*1864f1c2SLeila Ghaffari   setup_context->ly                     = domain_size[1];
190*1864f1c2SLeila Ghaffari   setup_context->lz                     = domain_size[2];
19177841947SLeila Ghaffari   setup_context->wind[0]                = wind[0];
19277841947SLeila Ghaffari   setup_context->wind[1]                = wind[1];
19377841947SLeila Ghaffari   setup_context->wind[2]                = wind[2];
19477841947SLeila Ghaffari   setup_context->wind_type              = wind_type;
19577841947SLeila Ghaffari   setup_context->bubble_type            = bubble_type;
19677841947SLeila Ghaffari   setup_context->bubble_continuity_type = bubble_continuity_type;
19777841947SLeila Ghaffari   setup_context->time = 0;
19877841947SLeila Ghaffari 
19977841947SLeila Ghaffari   // -- QFunction Context
20077841947SLeila Ghaffari   user->phys->stab                         = stab;
20177841947SLeila Ghaffari   user->phys->wind_type                    = wind_type;
20277841947SLeila Ghaffari   user->phys->bubble_type                  = bubble_type;
20377841947SLeila Ghaffari   user->phys->bubble_continuity_type       = bubble_continuity_type;
20477841947SLeila Ghaffari   //  if passed correctly
20577841947SLeila Ghaffari   user->phys->implicit                     = implicit;
20677841947SLeila Ghaffari   user->phys->has_curr_time                = has_curr_time;
20777841947SLeila Ghaffari   user->phys->advection_ctx->CtauS         = CtauS;
20877841947SLeila Ghaffari   user->phys->advection_ctx->E_wind        = E_wind;
20977841947SLeila Ghaffari   user->phys->advection_ctx->implicit      = implicit;
21077841947SLeila Ghaffari   user->phys->advection_ctx->strong_form   = strong_form;
21177841947SLeila Ghaffari   user->phys->advection_ctx->stabilization = stab;
21277841947SLeila Ghaffari 
21377841947SLeila Ghaffari   PetscFunctionReturn(0);
21477841947SLeila Ghaffari }
21577841947SLeila Ghaffari 
216d0b732dbSLeila Ghaffari PetscErrorCode SetupContext_ADVECTION(Ceed ceed, CeedData ceed_data,
217d0b732dbSLeila Ghaffari                                       AppCtx app_ctx, SetupContext setup_ctx, Physics phys) {
218d0b732dbSLeila Ghaffari   PetscFunctionBeginUser;
219d0b732dbSLeila Ghaffari 
220d0b732dbSLeila Ghaffari   CeedQFunctionContextCreate(ceed, &ceed_data->setup_context);
221d0b732dbSLeila Ghaffari   CeedQFunctionContextSetData(ceed_data->setup_context, CEED_MEM_HOST,
222d0b732dbSLeila Ghaffari                               CEED_USE_POINTER, sizeof(*setup_ctx), setup_ctx);
223d0b732dbSLeila Ghaffari   CeedQFunctionSetContext(ceed_data->qf_ics, ceed_data->setup_context);
224d0b732dbSLeila Ghaffari   CeedQFunctionContextCreate(ceed, &ceed_data->advection_context);
225d0b732dbSLeila Ghaffari   CeedQFunctionContextSetData(ceed_data->advection_context, CEED_MEM_HOST,
226d0b732dbSLeila Ghaffari                               CEED_USE_POINTER,
227d0b732dbSLeila Ghaffari                               sizeof(*phys->advection_ctx), phys->advection_ctx);
228d0b732dbSLeila Ghaffari   if (ceed_data->qf_rhs_vol)
229d0b732dbSLeila Ghaffari     CeedQFunctionSetContext(ceed_data->qf_rhs_vol, ceed_data->advection_context);
230d0b732dbSLeila Ghaffari   if (ceed_data->qf_ifunction_vol)
231d0b732dbSLeila Ghaffari     CeedQFunctionSetContext(ceed_data->qf_ifunction_vol,
232d0b732dbSLeila Ghaffari                             ceed_data->advection_context);
233d0b732dbSLeila Ghaffari   if (ceed_data->qf_apply_sur)
234d0b732dbSLeila Ghaffari     CeedQFunctionSetContext(ceed_data->qf_apply_sur, ceed_data->advection_context);
235d0b732dbSLeila Ghaffari 
236d0b732dbSLeila Ghaffari   PetscFunctionReturn(0);
237d0b732dbSLeila Ghaffari }
238d0b732dbSLeila Ghaffari 
23977841947SLeila Ghaffari PetscErrorCode BC_ADVECTION(DM dm, SimpleBC bc, Physics phys,
24077841947SLeila Ghaffari                             void *setup_ctx) {
24177841947SLeila Ghaffari   PetscErrorCode ierr;
24277841947SLeila Ghaffari   PetscFunctionBeginUser;
24377841947SLeila Ghaffari 
24477841947SLeila Ghaffari   // Define boundary conditions
24577841947SLeila Ghaffari   if (phys->wind_type == WIND_TRANSLATION) {
24677841947SLeila Ghaffari     bc->num_wall = bc->num_slip[2] = 0;
24777841947SLeila Ghaffari   } else if (phys->wind_type == WIND_ROTATION &&
24877841947SLeila Ghaffari              phys->bubble_type == BUBBLE_CYLINDER) {
24977841947SLeila Ghaffari     bc->num_slip[2] = 2; bc->slips[2][0] = 1; bc->slips[2][1] = 2;
25077841947SLeila Ghaffari     bc->num_wall = 4;
25177841947SLeila Ghaffari     bc->walls[0] = 3; bc->walls[1] = 4; bc->walls[2] = 5; bc->walls[3] = 6;
25277841947SLeila Ghaffari   } else {
25377841947SLeila Ghaffari     bc->num_slip[2] = 0;
25477841947SLeila Ghaffari     bc->num_wall = 6;
25577841947SLeila Ghaffari     bc->walls[0] = 1; bc->walls[1] = 2; bc->walls[2] = 3;
25677841947SLeila Ghaffari     bc->walls[3] = 4; bc->walls[4] = 5; bc->walls[5] = 6;
25777841947SLeila Ghaffari   }
25877841947SLeila Ghaffari 
25977841947SLeila Ghaffari   {
26077841947SLeila Ghaffari     // Set slip boundary conditions
26177841947SLeila Ghaffari     DMLabel label;
26277841947SLeila Ghaffari     ierr = DMGetLabel(dm, "Face Sets", &label); CHKERRQ(ierr);
26377841947SLeila Ghaffari     PetscInt comps[1] = {3};
264b8962995SJeremy L Thompson     ierr = DMAddBoundary(dm, DM_BC_ESSENTIAL, "slipz", label,
26577841947SLeila Ghaffari                          bc->num_slip[2], bc->slips[2], 0, 1, comps,
26677841947SLeila Ghaffari                          (void(*)(void))NULL, NULL, setup_ctx, NULL);
26777841947SLeila Ghaffari     CHKERRQ(ierr);
26877841947SLeila Ghaffari   }
26977841947SLeila Ghaffari 
27077841947SLeila Ghaffari   // Set wall boundary conditions
27177841947SLeila Ghaffari   //   zero energy density and zero flux
27277841947SLeila Ghaffari   {
27377841947SLeila Ghaffari     DMLabel  label;
27477841947SLeila Ghaffari     PetscInt comps[1] = {4};
27577841947SLeila Ghaffari     ierr = DMGetLabel(dm, "Face Sets", &label); CHKERRQ(ierr);
276b8962995SJeremy L Thompson     ierr = DMAddBoundary(dm, DM_BC_ESSENTIAL, "wall", label,
27777841947SLeila Ghaffari                          bc->num_wall, bc->walls, 0,
27877841947SLeila Ghaffari                          1, comps, (void(*)(void))Exact_Advection, NULL,
27977841947SLeila Ghaffari                          setup_ctx, NULL); CHKERRQ(ierr);
28077841947SLeila Ghaffari   }
28177841947SLeila Ghaffari 
28277841947SLeila Ghaffari   PetscFunctionReturn(0);
28377841947SLeila Ghaffari }
28477841947SLeila Ghaffari 
28577841947SLeila Ghaffari PetscErrorCode PRINT_ADVECTION(Physics phys, SetupContext setup_ctx,
28677841947SLeila Ghaffari                                AppCtx app_ctx) {
28777841947SLeila Ghaffari   MPI_Comm       comm = PETSC_COMM_WORLD;
28877841947SLeila Ghaffari   PetscErrorCode ierr;
28977841947SLeila Ghaffari   PetscFunctionBeginUser;
29077841947SLeila Ghaffari 
29177841947SLeila Ghaffari   ierr = PetscPrintf(comm,
29277841947SLeila Ghaffari                      "  Problem:\n"
29377841947SLeila Ghaffari                      "    Problem Name                       : %s\n"
29477841947SLeila Ghaffari                      "    Stabilization                      : %s\n"
29577841947SLeila Ghaffari                      "    Bubble Type                        : %s (%dD)\n"
29677841947SLeila Ghaffari                      "    Bubble Continuity                  : %s\n"
29777841947SLeila Ghaffari                      "    Wind Type                          : %s\n",
29877841947SLeila Ghaffari                      app_ctx->problem_name, StabilizationTypes[phys->stab],
29977841947SLeila Ghaffari                      BubbleTypes[phys->bubble_type],
30077841947SLeila Ghaffari                      phys->bubble_type == BUBBLE_SPHERE ? 3 : 2,
30177841947SLeila Ghaffari                      BubbleContinuityTypes[phys->bubble_continuity_type],
30277841947SLeila Ghaffari                      WindTypes[phys->wind_type]); CHKERRQ(ierr);
30377841947SLeila Ghaffari 
30477841947SLeila Ghaffari   if (phys->wind_type == WIND_TRANSLATION) {
30577841947SLeila Ghaffari     ierr = PetscPrintf(comm,
30677841947SLeila Ghaffari                        "    Background Wind                    : %f,%f,%f\n",
30777841947SLeila Ghaffari                        setup_ctx->wind[0], setup_ctx->wind[1], setup_ctx->wind[2]); CHKERRQ(ierr);
30877841947SLeila Ghaffari   }
30977841947SLeila Ghaffari   PetscFunctionReturn(0);
31077841947SLeila Ghaffari }
311