VertexCFD  0.0-dev
VertexCFD_TurbulenceClosureModelFactory.hpp
1 #ifndef VERTEXCFD_TURBULENCECLOSUREMODELFACTORY_HPP
2 #define VERTEXCFD_TURBULENCECLOSUREMODELFACTORY_HPP
3 
4 #include <Panzer_GlobalData.hpp>
5 #include <Panzer_Traits.hpp>
6 
7 #include <Phalanx_Evaluator.hpp>
8 
9 #include <Teuchos_ParameterList.hpp>
10 #include <Teuchos_RCP.hpp>
11 
12 namespace VertexCFD
13 {
14 namespace ClosureModel
15 {
16 //---------------------------------------------------------------------------//
17 template<class EvalType, int NumSpaceDim>
19 {
20  public:
21  static constexpr int num_space_dim = NumSpaceDim;
22 
23  void buildClosureModel(
24  const Teuchos::RCP<panzer::IntegrationRule>& ir,
25  const Teuchos::RCP<panzer::GlobalData>& global_data,
26  const Teuchos::ParameterList& user_params,
27  const std::string& turbulence_model_name,
28  Teuchos::RCP<std::vector<Teuchos::RCP<PHX::Evaluator<panzer::Traits>>>>
29  evaluators);
30 };
31 
32 //---------------------------------------------------------------------------//
33 
34 } // end namespace ClosureModel
35 } // end namespace VertexCFD
36 
37 #endif // end VERTEXCFD_TURBULENCECLOSUREMODELFACTORY_HPP
VertexCFD
Definition: tstMethodManufacturedSolutionBC.cpp:23
VertexCFD::ClosureModel::TurbulenceFactory
Definition: VertexCFD_TurbulenceClosureModelFactory.hpp:19