/home/runner/work/amr-wind/amr-wind/amr-wind/equation_systems/tke/TKE.H Source File

AMR-Wind API: /home/runner/work/amr-wind/amr-wind/amr-wind/equation_systems/tke/TKE.H Source File
AMR-Wind API v0.1.0
CFD solver for wind plant simulations
Loading...
Searching...
No Matches
TKE.H
Go to the documentation of this file.
1#ifndef TKE_H
2#define TKE_H
3
10#include "AMReX_REAL.H"
11
12using namespace amrex::literals;
13
14namespace amr_wind::pde {
15
22
30
36{
37 using MLDiffOp = amrex::MLABecLaplacian;
39
40 static std::string pde_name() { return "TKE"; }
41 static std::string var_name() { return "tke"; }
42
43 static constexpr amrex::Real default_bc_value = 0.0_rt;
44
45 static constexpr int ndim = 1;
46 static constexpr bool multiply_rho = true;
47 static constexpr bool has_diffusion = true;
48 static constexpr bool need_nph_state = true;
49};
50
51} // namespace amr_wind::pde
52
53#endif /* TKE_H */
Definition TKESource.H:20
Definition AdvOp_Godunov.H:21
Definition PDETraits.H:35
Definition TKE.H:36
static std::string pde_name()
Definition TKE.H:40
static constexpr amrex::Real default_bc_value
Definition TKE.H:43
static constexpr bool need_nph_state
Definition TKE.H:48
static std::string var_name()
Definition TKE.H:41
static constexpr int ndim
Definition TKE.H:45
TKESource SrcTerm
Definition TKE.H:38
static constexpr bool multiply_rho
Definition TKE.H:46
static constexpr bool has_diffusion
Definition TKE.H:47
amrex::MLABecLaplacian MLDiffOp
Definition TKE.H:37