xref: /libCEED/examples/fluids/navierstokes.h (revision dc805cc4a09d29f27b3febd084feb659e74b9d08)
13d8e8822SJeremy L Thompson // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors.
23d8e8822SJeremy L Thompson // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
377841947SLeila Ghaffari //
43d8e8822SJeremy L Thompson // SPDX-License-Identifier: BSD-2-Clause
577841947SLeila Ghaffari //
63d8e8822SJeremy L Thompson // This file is part of CEED:  http://github.com/ceed
777841947SLeila Ghaffari 
8b7c563b6SJeremy L Thompson #ifndef libceed_fluids_examples_navier_stokes_h
9b7c563b6SJeremy L Thompson #define libceed_fluids_examples_navier_stokes_h
1077841947SLeila Ghaffari 
1177841947SLeila Ghaffari #include <ceed.h>
1277841947SLeila Ghaffari #include <petscdm.h>
1377841947SLeila Ghaffari #include <petscdmplex.h>
1477841947SLeila Ghaffari #include <petscsys.h>
1577841947SLeila Ghaffari #include <petscts.h>
1677841947SLeila Ghaffari #include <stdbool.h>
17841e4c73SJed Brown #include "qfunctions/stabilization_types.h"
1877841947SLeila Ghaffari 
1977841947SLeila Ghaffari // -----------------------------------------------------------------------------
20b8962995SJeremy L Thompson // PETSc Version
2177841947SLeila Ghaffari // -----------------------------------------------------------------------------
22b8962995SJeremy L Thompson #if PETSC_VERSION_LT(3,17,0)
23b8962995SJeremy L Thompson #error "PETSc v3.17 or later is required"
2477841947SLeila Ghaffari #endif
2577841947SLeila Ghaffari 
2677841947SLeila Ghaffari // -----------------------------------------------------------------------------
2777841947SLeila Ghaffari // Enums
2877841947SLeila Ghaffari // -----------------------------------------------------------------------------
2977841947SLeila Ghaffari // Translate PetscMemType to CeedMemType
3077841947SLeila Ghaffari static inline CeedMemType MemTypeP2C(PetscMemType mem_type) {
3177841947SLeila Ghaffari   return PetscMemTypeDevice(mem_type) ? CEED_MEM_DEVICE : CEED_MEM_HOST;
3277841947SLeila Ghaffari }
3377841947SLeila Ghaffari 
3477841947SLeila Ghaffari // Advection - Wind Options
3577841947SLeila Ghaffari typedef enum {
3677841947SLeila Ghaffari   WIND_ROTATION    = 0,
3777841947SLeila Ghaffari   WIND_TRANSLATION = 1,
3877841947SLeila Ghaffari } WindType;
3977841947SLeila Ghaffari static const char *const WindTypes[] = {
4077841947SLeila Ghaffari   "rotation",
4177841947SLeila Ghaffari   "translation",
4277841947SLeila Ghaffari   "WindType", "WIND_", NULL
4377841947SLeila Ghaffari };
4477841947SLeila Ghaffari 
4577841947SLeila Ghaffari // Advection - Bubble Types
4677841947SLeila Ghaffari typedef enum {
4777841947SLeila Ghaffari   BUBBLE_SPHERE   = 0, // dim=3
4877841947SLeila Ghaffari   BUBBLE_CYLINDER = 1, // dim=2
4977841947SLeila Ghaffari } BubbleType;
5077841947SLeila Ghaffari static const char *const BubbleTypes[] = {
5177841947SLeila Ghaffari   "sphere",
5277841947SLeila Ghaffari   "cylinder",
5377841947SLeila Ghaffari   "BubbleType", "BUBBLE_", NULL
5477841947SLeila Ghaffari };
5577841947SLeila Ghaffari 
5677841947SLeila Ghaffari // Advection - Bubble Continuity Types
5777841947SLeila Ghaffari typedef enum {
5877841947SLeila Ghaffari   BUBBLE_CONTINUITY_SMOOTH     = 0,  // Original continuous, smooth shape
5977841947SLeila Ghaffari   BUBBLE_CONTINUITY_BACK_SHARP = 1,  // Discontinuous, sharp back half shape
6077841947SLeila Ghaffari   BUBBLE_CONTINUITY_THICK      = 2,  // Define a finite thickness
6177841947SLeila Ghaffari } BubbleContinuityType;
6277841947SLeila Ghaffari static const char *const BubbleContinuityTypes[] = {
6377841947SLeila Ghaffari   "smooth",
6477841947SLeila Ghaffari   "back_sharp",
6577841947SLeila Ghaffari   "thick",
6677841947SLeila Ghaffari   "BubbleContinuityType", "BUBBLE_CONTINUITY_", NULL
6777841947SLeila Ghaffari };
6877841947SLeila Ghaffari 
6977841947SLeila Ghaffari // Euler - test cases
7077841947SLeila Ghaffari typedef enum {
71bc7bbd5dSLeila Ghaffari   EULER_TEST_ISENTROPIC_VORTEX = 0,
7277841947SLeila Ghaffari   EULER_TEST_1 = 1,
7377841947SLeila Ghaffari   EULER_TEST_2 = 2,
7477841947SLeila Ghaffari   EULER_TEST_3 = 3,
7577841947SLeila Ghaffari   EULER_TEST_4 = 4,
7632f166c6SLeila Ghaffari   EULER_TEST_5 = 5,
7777841947SLeila Ghaffari } EulerTestType;
7877841947SLeila Ghaffari static const char *const EulerTestTypes[] = {
79bc7bbd5dSLeila Ghaffari   "isentropic_vortex",
80bc7bbd5dSLeila Ghaffari   "test_1",
81bc7bbd5dSLeila Ghaffari   "test_2",
82bc7bbd5dSLeila Ghaffari   "test_3",
83bc7bbd5dSLeila Ghaffari   "test_4",
8432f166c6SLeila Ghaffari   "test_5",
8577841947SLeila Ghaffari   "EulerTestType", "EULER_TEST_", NULL
8677841947SLeila Ghaffari };
8777841947SLeila Ghaffari 
8877841947SLeila Ghaffari // Stabilization methods
8977841947SLeila Ghaffari static const char *const StabilizationTypes[] = {
9077841947SLeila Ghaffari   "none",
9177841947SLeila Ghaffari   "SU",
9277841947SLeila Ghaffari   "SUPG",
9377841947SLeila Ghaffari   "StabilizationType", "STAB_", NULL
9477841947SLeila Ghaffari };
9577841947SLeila Ghaffari 
9677841947SLeila Ghaffari // -----------------------------------------------------------------------------
9777841947SLeila Ghaffari // Structs
9877841947SLeila Ghaffari // -----------------------------------------------------------------------------
9977841947SLeila Ghaffari // Structs declarations
10077841947SLeila Ghaffari typedef struct AppCtx_private    *AppCtx;
10177841947SLeila Ghaffari typedef struct CeedData_private  *CeedData;
10277841947SLeila Ghaffari typedef struct User_private      *User;
10377841947SLeila Ghaffari typedef struct Units_private     *Units;
10477841947SLeila Ghaffari typedef struct SimpleBC_private  *SimpleBC;
10577841947SLeila Ghaffari typedef struct Physics_private   *Physics;
10677841947SLeila Ghaffari 
10777841947SLeila Ghaffari // Application context from user command line options
10877841947SLeila Ghaffari struct AppCtx_private {
10977841947SLeila Ghaffari   // libCEED arguments
11077841947SLeila Ghaffari   char              ceed_resource[PETSC_MAX_PATH_LEN]; // libCEED backend
11177841947SLeila Ghaffari   PetscInt          degree;
11277841947SLeila Ghaffari   PetscInt          q_extra;
113544be873SJed Brown   // Solver arguments
114544be873SJed Brown   MatType           amat_type;
115544be873SJed Brown   PetscBool         pmat_pbdiagonal;
11677841947SLeila Ghaffari   // Post-processing arguments
11777841947SLeila Ghaffari   PetscInt          output_freq;
11877841947SLeila Ghaffari   PetscInt          viz_refine;
11977841947SLeila Ghaffari   PetscInt          cont_steps;
12077841947SLeila Ghaffari   char              output_dir[PETSC_MAX_PATH_LEN];
12177841947SLeila Ghaffari   // Problem type arguments
12277841947SLeila Ghaffari   PetscFunctionList problems;
12377841947SLeila Ghaffari   char              problem_name[PETSC_MAX_PATH_LEN];
12477841947SLeila Ghaffari   // Test mode arguments
12577841947SLeila Ghaffari   PetscBool         test_mode;
12677841947SLeila Ghaffari   PetscScalar       test_tol;
12777841947SLeila Ghaffari   char              file_path[PETSC_MAX_PATH_LEN];
12877841947SLeila Ghaffari };
12977841947SLeila Ghaffari 
13077841947SLeila Ghaffari // libCEED data struct
13177841947SLeila Ghaffari struct CeedData_private {
13277841947SLeila Ghaffari   CeedVector           x_coord, q_data;
13377841947SLeila Ghaffari   CeedQFunction        qf_setup_vol, qf_ics, qf_rhs_vol, qf_ifunction_vol,
134e334ad8fSJed Brown                        qf_setup_sur,
135e334ad8fSJed Brown                        qf_apply_inflow, qf_apply_inflow_jacobian,
136e334ad8fSJed Brown                        qf_apply_outflow, qf_apply_outflow_jacobian;
137959b8288SJames Wright   CeedBasis            basis_x, basis_xc, basis_q, basis_x_sur, basis_q_sur,
138959b8288SJames Wright                        basis_xc_sur;
13977841947SLeila Ghaffari   CeedElemRestriction  elem_restr_x, elem_restr_q, elem_restr_qd_i;
14077841947SLeila Ghaffari   CeedOperator         op_setup_vol, op_ics;
14177841947SLeila Ghaffari };
14277841947SLeila Ghaffari 
14377841947SLeila Ghaffari // PETSc user data
14477841947SLeila Ghaffari struct User_private {
14577841947SLeila Ghaffari   MPI_Comm     comm;
14677841947SLeila Ghaffari   DM           dm;
14777841947SLeila Ghaffari   DM           dm_viz;
14877841947SLeila Ghaffari   Mat          interp_viz;
14977841947SLeila Ghaffari   Ceed         ceed;
15077841947SLeila Ghaffari   Units        units;
1515e82a6e1SJeremy L Thompson   Vec          M, Q_loc, Q_dot_loc;
15277841947SLeila Ghaffari   Physics      phys;
15377841947SLeila Ghaffari   AppCtx       app_ctx;
154544be873SJed Brown   CeedVector   q_ceed, q_dot_ceed, g_ceed, coo_values_amat, coo_values_pmat,
155544be873SJed Brown                x_ceed;
156dada6cc0SJames Wright   CeedOperator op_rhs_vol, op_rhs, op_ifunction_vol, op_ifunction, op_ijacobian,
157dada6cc0SJames Wright                op_dirichlet;
158e334ad8fSJed Brown   bool matrices_set_up;
1595e82a6e1SJeremy L Thompson   CeedScalar time, dt;
16077841947SLeila Ghaffari };
16177841947SLeila Ghaffari 
16277841947SLeila Ghaffari // Units
16377841947SLeila Ghaffari struct Units_private {
16477841947SLeila Ghaffari   // fundamental units
16577841947SLeila Ghaffari   PetscScalar meter;
16677841947SLeila Ghaffari   PetscScalar kilogram;
16777841947SLeila Ghaffari   PetscScalar second;
16877841947SLeila Ghaffari   PetscScalar Kelvin;
16977841947SLeila Ghaffari   // derived units
17077841947SLeila Ghaffari   PetscScalar Pascal;
17177841947SLeila Ghaffari   PetscScalar J_per_kg_K;
17277841947SLeila Ghaffari   PetscScalar m_per_squared_s;
17377841947SLeila Ghaffari   PetscScalar W_per_m_K;
17477841947SLeila Ghaffari   PetscScalar Joule;
17577841947SLeila Ghaffari };
17677841947SLeila Ghaffari 
17777841947SLeila Ghaffari // Boundary conditions
17877841947SLeila Ghaffari struct SimpleBC_private {
1792fe7aee7SLeila Ghaffari   PetscInt  num_wall,    // Number of faces with wall BCs
1802fe7aee7SLeila Ghaffari             wall_comps[5], // An array of constrained component numbers
1812fe7aee7SLeila Ghaffari             num_comps,
1822fe7aee7SLeila Ghaffari             num_slip[3], // Number of faces with slip BCs
1832fe7aee7SLeila Ghaffari             num_inflow,
1842fe7aee7SLeila Ghaffari             num_outflow;
1852fe7aee7SLeila Ghaffari   PetscInt  walls[16], slips[3][16], inflows[16], outflows[16];
18677841947SLeila Ghaffari   PetscBool user_bc;
18777841947SLeila Ghaffari };
18877841947SLeila Ghaffari 
18977841947SLeila Ghaffari // Struct that contains all enums and structs used for the physics of all problems
19077841947SLeila Ghaffari struct Physics_private {
19177841947SLeila Ghaffari   WindType                 wind_type;
19277841947SLeila Ghaffari   BubbleType               bubble_type;
19377841947SLeila Ghaffari   BubbleContinuityType     bubble_continuity_type;
19477841947SLeila Ghaffari   EulerTestType            euler_test;
19577841947SLeila Ghaffari   StabilizationType        stab;
19677841947SLeila Ghaffari   PetscBool                implicit;
197*dc805cc4SLeila Ghaffari   PetscBool                primitive;
19877841947SLeila Ghaffari   PetscBool                has_curr_time;
19977841947SLeila Ghaffari   PetscBool                has_neumann;
20011436a05SJames Wright   CeedContextFieldLabel    solution_time_label;
20188626eedSJames Wright   CeedContextFieldLabel    timestep_size_label;
202841e4c73SJed Brown   CeedContextFieldLabel    ics_time_label;
203e334ad8fSJed Brown   CeedContextFieldLabel    ijacobian_time_shift_label;
20477841947SLeila Ghaffari };
20577841947SLeila Ghaffari 
20691e5af17SJed Brown typedef struct {
20791e5af17SJed Brown   CeedQFunctionUser    qfunction;
20891e5af17SJed Brown   const char           *qfunction_loc;
209841e4c73SJed Brown   CeedQFunctionContext qfunction_context;
21091e5af17SJed Brown } ProblemQFunctionSpec;
21191e5af17SJed Brown 
21277841947SLeila Ghaffari // Problem specific data
21377841947SLeila Ghaffari // *INDENT-OFF*
214841e4c73SJed Brown typedef struct ProblemData_private ProblemData;
215841e4c73SJed Brown struct ProblemData_private {
216e334ad8fSJed Brown   CeedInt           dim, q_data_size_vol, q_data_size_sur, jac_data_size_sur;
2171864f1c2SLeila Ghaffari   CeedScalar        dm_scale;
21891e5af17SJed Brown   ProblemQFunctionSpec setup_vol, setup_sur, ics, apply_vol_rhs, apply_vol_ifunction,
219e334ad8fSJed Brown     apply_vol_ijacobian, apply_inflow, apply_outflow,
220e334ad8fSJed Brown     apply_inflow_jacobian, apply_outflow_jacobian;
22177841947SLeila Ghaffari   bool              non_zero_time;
22277841947SLeila Ghaffari   PetscErrorCode    (*bc)(PetscInt, PetscReal, const PetscReal[], PetscInt,
22377841947SLeila Ghaffari                           PetscScalar[], void *);
224c95f9967SJed Brown   void *bc_ctx;
225dada6cc0SJames Wright   PetscBool bc_from_ics, use_dirichlet_ceed;
226b1289648SJed Brown   PetscErrorCode    (*print_info)(ProblemData*, AppCtx);
227841e4c73SJed Brown };
22877841947SLeila Ghaffari // *INDENT-ON*
22977841947SLeila Ghaffari 
230841e4c73SJed Brown extern int FreeContextPetsc(void *);
231841e4c73SJed Brown 
23277841947SLeila Ghaffari // -----------------------------------------------------------------------------
23377841947SLeila Ghaffari // Set up problems
23477841947SLeila Ghaffari // -----------------------------------------------------------------------------
23577841947SLeila Ghaffari // Set up function for each problem
23688626eedSJames Wright extern PetscErrorCode NS_CHANNEL(ProblemData *problem, DM dm,
237a0add3c9SJed Brown                                  void *ctx);
23888626eedSJames Wright extern PetscErrorCode NS_BLASIUS(ProblemData *problem, DM dm,
239a0add3c9SJed Brown                                  void *ctx);
24088b783a1SJames Wright extern PetscErrorCode NS_NEWTONIAN_IG(ProblemData *problem, DM dm,
241a0add3c9SJed Brown                                       void *ctx);
2421864f1c2SLeila Ghaffari extern PetscErrorCode NS_DENSITY_CURRENT(ProblemData *problem, DM dm,
243019b7682STimothy Aiken     void *ctx);
244019b7682STimothy Aiken 
2451864f1c2SLeila Ghaffari extern PetscErrorCode NS_EULER_VORTEX(ProblemData *problem, DM dm,
246019b7682STimothy Aiken                                       void *ctx);
247a0add3c9SJed Brown extern PetscErrorCode NS_SHOCKTUBE(ProblemData *problem, DM dm,
248a0add3c9SJed Brown                                    void *ctx);
249a0add3c9SJed Brown extern PetscErrorCode NS_ADVECTION(ProblemData *problem, DM dm,
25077841947SLeila Ghaffari                                    void *ctx);
2511864f1c2SLeila Ghaffari extern PetscErrorCode NS_ADVECTION2D(ProblemData *problem, DM dm,
252a0add3c9SJed Brown                                      void *ctx);
25377841947SLeila Ghaffari 
25477841947SLeila Ghaffari // Print function for each problem
255*dc805cc4SLeila Ghaffari extern PetscErrorCode PRINT_NEWTONIAN(ProblemData *problem, AppCtx app_ctx);
25677841947SLeila Ghaffari 
257*dc805cc4SLeila Ghaffari extern PetscErrorCode PRINT_EULER_VORTEX(ProblemData *problem, AppCtx app_ctx);
25877841947SLeila Ghaffari 
259*dc805cc4SLeila Ghaffari extern PetscErrorCode PRINT_SHOCKTUBE(ProblemData *problem, AppCtx app_ctx);
260019b7682STimothy Aiken 
261*dc805cc4SLeila Ghaffari extern PetscErrorCode PRINT_ADVECTION(ProblemData *problem, AppCtx app_ctx);
26277841947SLeila Ghaffari 
263*dc805cc4SLeila Ghaffari extern PetscErrorCode PRINT_ADVECTION2D(ProblemData *problem, AppCtx app_ctx);
26477841947SLeila Ghaffari 
26577841947SLeila Ghaffari // -----------------------------------------------------------------------------
26677841947SLeila Ghaffari // libCEED functions
26777841947SLeila Ghaffari // -----------------------------------------------------------------------------
26877841947SLeila Ghaffari // Utility function - essential BC dofs are encoded in closure indices as -(i+1).
26977841947SLeila Ghaffari PetscInt Involute(PetscInt i);
27077841947SLeila Ghaffari 
27177841947SLeila Ghaffari // Utility function to create local CEED restriction
2727ed3e4cdSJeremy L Thompson PetscErrorCode CreateRestrictionFromPlex(Ceed ceed, DM dm, CeedInt height,
2737ed3e4cdSJeremy L Thompson     DMLabel domain_label, CeedInt value, CeedElemRestriction *elem_restr);
27477841947SLeila Ghaffari 
27577841947SLeila Ghaffari // Utility function to get Ceed Restriction for each domain
27677841947SLeila Ghaffari PetscErrorCode GetRestrictionForDomain(Ceed ceed, DM dm, CeedInt height,
27777841947SLeila Ghaffari                                        DMLabel domain_label, PetscInt value,
2787ed3e4cdSJeremy L Thompson                                        CeedInt Q, CeedInt q_data_size,
27977841947SLeila Ghaffari                                        CeedElemRestriction *elem_restr_q,
28077841947SLeila Ghaffari                                        CeedElemRestriction *elem_restr_x,
28177841947SLeila Ghaffari                                        CeedElemRestriction *elem_restr_qd_i);
28277841947SLeila Ghaffari 
28377841947SLeila Ghaffari // Utility function to create CEED Composite Operator for the entire domain
28477841947SLeila Ghaffari PetscErrorCode CreateOperatorForDomain(Ceed ceed, DM dm, SimpleBC bc,
28577841947SLeila Ghaffari                                        CeedData ceed_data, Physics phys,
286e334ad8fSJed Brown                                        CeedOperator op_apply_vol,
287e334ad8fSJed Brown                                        CeedOperator op_apply_ijacobian_vol,
288e334ad8fSJed Brown                                        CeedInt height,
289e334ad8fSJed Brown                                        CeedInt P_sur, CeedInt Q_sur,
290e334ad8fSJed Brown                                        CeedInt q_data_size_sur, CeedInt jac_data_size_sur,
291e334ad8fSJed Brown                                        CeedOperator *op_apply, CeedOperator *op_apply_ijacobian);
29277841947SLeila Ghaffari 
29377841947SLeila Ghaffari PetscErrorCode SetupLibceed(Ceed ceed, CeedData ceed_data, DM dm, User user,
294c95f9967SJed Brown                             AppCtx app_ctx, ProblemData *problem, SimpleBC bc);
29577841947SLeila Ghaffari 
29677841947SLeila Ghaffari // -----------------------------------------------------------------------------
29777841947SLeila Ghaffari // Time-stepping functions
29877841947SLeila Ghaffari // -----------------------------------------------------------------------------
29977841947SLeila Ghaffari // Compute mass matrix for explicit scheme
30077841947SLeila Ghaffari PetscErrorCode ComputeLumpedMassMatrix(Ceed ceed, DM dm, CeedData ceed_data,
30177841947SLeila Ghaffari                                        Vec M);
30277841947SLeila Ghaffari 
30377841947SLeila Ghaffari // RHS (Explicit time-stepper) function setup
30477841947SLeila Ghaffari PetscErrorCode RHS_NS(TS ts, PetscReal t, Vec Q, Vec G, void *user_data);
30577841947SLeila Ghaffari 
30677841947SLeila Ghaffari // Implicit time-stepper function setup
30777841947SLeila Ghaffari PetscErrorCode IFunction_NS(TS ts, PetscReal t, Vec Q, Vec Q_dot, Vec G,
30877841947SLeila Ghaffari                             void *user_data);
30977841947SLeila Ghaffari 
31077841947SLeila Ghaffari // User provided TS Monitor
31177841947SLeila Ghaffari PetscErrorCode TSMonitor_NS(TS ts, PetscInt step_no, PetscReal time, Vec Q,
31277841947SLeila Ghaffari                             void *ctx);
31377841947SLeila Ghaffari 
31477841947SLeila Ghaffari // TS: Create, setup, and solve
31577841947SLeila Ghaffari PetscErrorCode TSSolve_NS(DM dm, User user, AppCtx app_ctx, Physics phys,
31677841947SLeila Ghaffari                           Vec *Q, PetscScalar *f_time, TS *ts);
31777841947SLeila Ghaffari 
31877841947SLeila Ghaffari // -----------------------------------------------------------------------------
31977841947SLeila Ghaffari // Setup DM
32077841947SLeila Ghaffari // -----------------------------------------------------------------------------
3211864f1c2SLeila Ghaffari // Create mesh
3224ea65e7bSJed Brown PetscErrorCode CreateDM(MPI_Comm comm, ProblemData *problem,
3234ea65e7bSJed Brown                         MatType, VecType, DM *dm);
32477841947SLeila Ghaffari 
32577841947SLeila Ghaffari // Set up DM
32677841947SLeila Ghaffari PetscErrorCode SetUpDM(DM dm, ProblemData *problem, PetscInt degree,
327c95f9967SJed Brown                        SimpleBC bc, Physics phys);
32877841947SLeila Ghaffari 
32977841947SLeila Ghaffari // Refine DM for high-order viz
33077841947SLeila Ghaffari PetscErrorCode VizRefineDM(DM dm, User user, ProblemData *problem,
331c95f9967SJed Brown                            SimpleBC bc, Physics phys);
33277841947SLeila Ghaffari 
33377841947SLeila Ghaffari // -----------------------------------------------------------------------------
33477841947SLeila Ghaffari // Process command line options
33577841947SLeila Ghaffari // -----------------------------------------------------------------------------
33677841947SLeila Ghaffari // Register problems to be available on the command line
33777841947SLeila Ghaffari PetscErrorCode RegisterProblems_NS(AppCtx app_ctx);
33877841947SLeila Ghaffari 
33977841947SLeila Ghaffari // Process general command line options
3402fe7aee7SLeila Ghaffari PetscErrorCode ProcessCommandLineOptions(MPI_Comm comm, AppCtx app_ctx,
3412fe7aee7SLeila Ghaffari     SimpleBC bc);
34277841947SLeila Ghaffari 
34377841947SLeila Ghaffari // -----------------------------------------------------------------------------
34477841947SLeila Ghaffari // Miscellaneous utility functions
34577841947SLeila Ghaffari // -----------------------------------------------------------------------------
346841e4c73SJed Brown PetscErrorCode ICs_FixMultiplicity(DM dm, CeedData ceed_data, User user,
347841e4c73SJed Brown                                    Vec Q_loc, Vec Q,
34877841947SLeila Ghaffari                                    CeedScalar time);
34977841947SLeila Ghaffari 
35077841947SLeila Ghaffari PetscErrorCode DMPlexInsertBoundaryValues_NS(DM dm,
35177841947SLeila Ghaffari     PetscBool insert_essential, Vec Q_loc, PetscReal time, Vec face_geom_FVM,
35277841947SLeila Ghaffari     Vec cell_geom_FVM, Vec grad_FVM);
35377841947SLeila Ghaffari 
35477841947SLeila Ghaffari // Compare reference solution values with current test run for CI
35577841947SLeila Ghaffari PetscErrorCode RegressionTests_NS(AppCtx app_ctx, Vec Q);
35677841947SLeila Ghaffari 
35777841947SLeila Ghaffari // Get error for problems with exact solutions
358841e4c73SJed Brown PetscErrorCode GetError_NS(CeedData ceed_data, DM dm, User user, Vec Q,
35977841947SLeila Ghaffari                            PetscScalar final_time);
36077841947SLeila Ghaffari 
36177841947SLeila Ghaffari // Post-processing
36277841947SLeila Ghaffari PetscErrorCode PostProcess_NS(TS ts, CeedData ceed_data, DM dm,
363841e4c73SJed Brown                               ProblemData *problem, User user,
36477841947SLeila Ghaffari                               Vec Q, PetscScalar final_time);
36577841947SLeila Ghaffari 
36677841947SLeila Ghaffari // -- Gather initial Q values in case of continuation of simulation
36777841947SLeila Ghaffari PetscErrorCode SetupICsFromBinary(MPI_Comm comm, AppCtx app_ctx, Vec Q);
36877841947SLeila Ghaffari 
36977841947SLeila Ghaffari // Record boundary values from initial condition
37077841947SLeila Ghaffari PetscErrorCode SetBCsFromICs_NS(DM dm, Vec Q, Vec Q_loc);
37177841947SLeila Ghaffari 
37277841947SLeila Ghaffari // -----------------------------------------------------------------------------
373dada6cc0SJames Wright // Boundary Condition Related Functions
374dada6cc0SJames Wright // -----------------------------------------------------------------------------
375dada6cc0SJames Wright 
376dada6cc0SJames Wright // Setup StrongBCs that use QFunctions
377dada6cc0SJames Wright PetscErrorCode SetupStrongBC_Ceed(Ceed ceed, CeedData ceed_data, DM dm,
378dada6cc0SJames Wright                                   User user, AppCtx app_ctx, ProblemData *problem,
379dada6cc0SJames Wright                                   SimpleBC bc, CeedInt Q_sur, CeedInt q_data_size_sur);
380b7c563b6SJeremy L Thompson 
381b7c563b6SJeremy L Thompson #endif // libceed_fluids_examples_navier_stokes_h
382