/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
11namespace amr_wind::pde {
12
33{
34 using MLDiffOp = amrex::MLABecLaplacian;
36
37 static std::string pde_name() { return "TKE"; }
38 static std::string var_name() { return "tke"; }
39
40 static constexpr amrex::Real default_bc_value = 0.0;
41
42 static constexpr int ndim = 1;
43 static constexpr bool multiply_rho = true;
44 static constexpr bool has_diffusion = true;
45 static constexpr bool need_nph_state = true;
46};
47
48} // namespace amr_wind::pde
49
50#endif /* TKE_H */
Definition TKESource.H:20
Definition AdvOp_Godunov.H:16
Definition PDETraits.H:35
Definition TKE.H:33
static std::string pde_name()
Definition TKE.H:37
static constexpr amrex::Real default_bc_value
Definition TKE.H:40
static constexpr bool need_nph_state
Definition TKE.H:45
static std::string var_name()
Definition TKE.H:38
static constexpr int ndim
Definition TKE.H:42
static constexpr bool multiply_rho
Definition TKE.H:43
static constexpr bool has_diffusion
Definition TKE.H:44
amrex::MLABecLaplacian MLDiffOp
Definition TKE.H:34