1493642f1SJames Wright // Copyright (c) 2017-2022, Lawrence Livermore National Security, LLC and other CEED contributors. 2493642f1SJames Wright // All Rights Reserved. See the top-level LICENSE and NOTICE files for details. 3493642f1SJames Wright // 4493642f1SJames Wright // SPDX-License-Identifier: BSD-2-Clause 5493642f1SJames Wright // 6493642f1SJames Wright // This file is part of CEED: http://github.com/ceed 7493642f1SJames Wright 8493642f1SJames Wright #include <ceed.h> 9493642f1SJames Wright #include <petsc.h> 10493642f1SJames Wright #include "../qfunctions/stg_shur14_type.h" 11493642f1SJames Wright #include "../navierstokes.h" 12493642f1SJames Wright 13493642f1SJames Wright extern PetscErrorCode SetupSTG(const MPI_Comm comm, const DM dm, 14493642f1SJames Wright ProblemData *problem, User user, 15493642f1SJames Wright const bool prescribe_T, const CeedScalar theta0, 16e6098bcdSJames Wright const CeedScalar P0, 17e6098bcdSJames Wright const CeedScalar ynodes[], const CeedInt nynodes); 18e6098bcdSJames Wright 198085925cSJames Wright extern PetscErrorCode SetupStrongSTG(DM dm, SimpleBC bc, ProblemData *problem); 206d0190e2SJames Wright 216d0190e2SJames Wright extern PetscErrorCode SetupStrongSTG_QF(Ceed ceed, ProblemData *problem, 22*9eeef72bSJames Wright CeedInt num_comp_x, CeedInt num_comp_q, CeedInt stg_data_size, 236d0190e2SJames Wright CeedInt q_data_size_sur, CeedQFunction *qf_strongbc); 24*9eeef72bSJames Wright 25*9eeef72bSJames Wright extern PetscErrorCode SetupStrongSTG_PreProcessing(Ceed ceed, 26*9eeef72bSJames Wright ProblemData *problem, CeedInt num_comp_x, CeedInt stg_data_size, 27*9eeef72bSJames Wright CeedInt q_data_size_sur, CeedQFunction *pqf_strongbc); 28