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, 164e139266SJames Wright const CeedScalar P0, 174e139266SJames Wright const CeedScalar ynodes[], const CeedInt nynodes); 184e139266SJames Wright 1965dd5cafSJames Wright extern PetscErrorCode SetupStrongSTG(DM dm, SimpleBC bc, ProblemData *problem); 20dada6cc0SJames Wright 21dada6cc0SJames Wright extern PetscErrorCode SetupStrongSTG_QF(Ceed ceed, ProblemData *problem, 22*5dc40723SJames Wright CeedInt num_comp_x, CeedInt num_comp_q, CeedInt stg_data_size, 23dada6cc0SJames Wright CeedInt q_data_size_sur, CeedQFunction *qf_strongbc); 24*5dc40723SJames Wright 25*5dc40723SJames Wright extern PetscErrorCode SetupStrongSTG_PreProcessing(Ceed ceed, 26*5dc40723SJames Wright ProblemData *problem, CeedInt num_comp_x, CeedInt stg_data_size, 27*5dc40723SJames Wright CeedInt q_data_size_sur, CeedQFunction *pqf_strongbc); 28