xref: /libCEED/examples/fluids/problems/stg_shur14.h (revision 4e1392660fd02e74547113eb97925d90fbec8e1f)
1ba6664aeSJames Wright // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors.
2ba6664aeSJames Wright // All Rights Reserved. See the top-level LICENSE and NOTICE files for details.
3ba6664aeSJames Wright //
4ba6664aeSJames Wright // SPDX-License-Identifier: BSD-2-Clause
5ba6664aeSJames Wright //
6ba6664aeSJames Wright // This file is part of CEED:  http://github.com/ceed
7ba6664aeSJames Wright 
8ba6664aeSJames Wright #include <ceed.h>
9ba6664aeSJames Wright #include <petsc.h>
10ba6664aeSJames Wright #include "../qfunctions/stg_shur14_type.h"
11ba6664aeSJames Wright #include "../navierstokes.h"
12ba6664aeSJames Wright 
13ba6664aeSJames Wright extern PetscErrorCode SetupSTG(const MPI_Comm comm, const DM dm,
14ba6664aeSJames Wright                                ProblemData *problem, User user,
15ba6664aeSJames Wright                                const bool prescribe_T, const CeedScalar theta0,
16*4e139266SJames Wright                                const CeedScalar P0,
17*4e139266SJames Wright                                const CeedScalar ynodes[], const CeedInt nynodes);
18*4e139266SJames Wright 
19*4e139266SJames Wright extern PetscErrorCode SetupStrongSTG(DM dm, SimpleBC bc, ProblemData *problem,
20*4e139266SJames Wright                                      STGShur14Context stg_ctx);
21