VertexCFD  0.0-dev
VertexCFD_Closure_IncompressibleTauSUPG.hpp
1 #ifndef VERTEXCFD_CLOSURE_INCOMPRESSIBLETAUSUPG_HPP
2 #define VERTEXCFD_CLOSURE_INCOMPRESSIBLETAUSUPG_HPP
3 
4 #include <Panzer_Dimension.hpp>
5 #include <Panzer_Evaluator_WithBaseImpl.hpp>
6 
7 #include <Phalanx_Evaluator_Derived.hpp>
8 #include <Phalanx_Evaluator_WithBaseImpl.hpp>
9 #include <Phalanx_FieldManager.hpp>
10 #include <Phalanx_config.hpp>
11 
12 #include <Kokkos_Core.hpp>
13 
14 #include <string>
15 
16 namespace VertexCFD
17 {
18 namespace ClosureModel
19 {
20 //---------------------------------------------------------------------------//
21 // Multi-dimension tau coefficient evaluation for SUPG.
22 //---------------------------------------------------------------------------//
23 template<class EvalType, class Traits, int NumSpaceDim>
24 class IncompressibleTauSUPG : public panzer::EvaluatorWithBaseImpl<Traits>,
25  public PHX::EvaluatorDerived<EvalType, Traits>
26 {
27  public:
28  using scalar_type = typename EvalType::ScalarT;
29  static constexpr int num_space_dim = NumSpaceDim;
30 
31  IncompressibleTauSUPG(const panzer::IntegrationRule& ir,
32  const Teuchos::ParameterList& fluid_params,
33  const Teuchos::ParameterList& closure_params);
34 
35  void postRegistrationSetup(typename Traits::SetupData sd,
36  PHX::FieldManager<Traits>& fm) override;
37 
38  void evaluateFields(typename Traits::EvalData workset) override;
39 
40  KOKKOS_INLINE_FUNCTION
41  void operator()(
42  const Kokkos::TeamPolicy<PHX::exec_space>::member_type& team) const;
43 
44  PHX::MDField<scalar_type, panzer::Cell, panzer::Point> _tau_supg_cont;
45  PHX::MDField<scalar_type, panzer::Cell, panzer::Point> _tau_supg_mom;
46  PHX::MDField<scalar_type, panzer::Cell, panzer::Point> _tau_supg_energy;
47 
48  private:
49  PHX::MDField<const double, panzer::Cell, panzer::Point, panzer::Dim>
50  _element_length;
51  PHX::MDField<const scalar_type, panzer::Cell, panzer::Point> _rho;
52  PHX::MDField<const scalar_type, panzer::Cell, panzer::Point> _nu;
53  PHX::MDField<const scalar_type, panzer::Cell, panzer::Point> _k;
54  PHX::MDField<const scalar_type, panzer::Cell, panzer::Point> _cp;
55  Kokkos::Array<PHX::MDField<const scalar_type, panzer::Cell, panzer::Point>,
56  num_space_dim>
57  _velocity;
58 
59  double _alpha_cont;
60  double _alpha_mom;
61  double _alpha_ene;
62  bool _solve_temp;
63  int _ir_degree;
64  int _ir_index;
65  int _basis_order;
66  double _time_constant;
67 
68  enum TauModel
69  {
70  Steady,
71  Transient,
72  NoSUPG
73  };
74  TauModel _tau_model;
75 
76  enum TauModelTemp
77  {
78  TempMultiDSUPGSteady,
79  TempMultiDSUPGTransient,
80  TempNoSUPG,
81  TempOneDXNodal,
82  TempOneDXUpwind
83  };
84  TauModelTemp _tau_model_temp;
85 
86  enum TmpVars
87  {
88  U2_OVER_H2,
89  PE,
90  D,
91  NUM_TMPS
92  };
93 
95  using scratch_view
96  = Kokkos::View<scalar_type**,
97  typename PHX::DevLayout<scalar_type>::type,
98  typename PHX::exec_space::scratch_memory_space,
99  Kokkos::MemoryUnmanaged>;
100 };
101 
102 //---------------------------------------------------------------------------//
103 
104 } // end namespace ClosureModel
105 } // end namespace VertexCFD
106 
107 #endif // end VERTEXCFD_CLOSURE_INCOMPRESSIBLETAUSUPG_HPP
VertexCFD
Definition: tstMethodManufacturedSolutionBC.cpp:23
VertexCFD::ClosureModel::IncompressibleTauSUPG
Definition: VertexCFD_Closure_IncompressibleTauSUPG.hpp:26