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

AMR-Wind API: /home/runner/work/amr-wind/amr-wind/amr-wind/equation_systems/passive_scalar/passive_scalar.H Source File
AMR-Wind API v0.1.0
CFD solver for wind plant simulations
Loading...
Searching...
No Matches
passive_scalar.H
Go to the documentation of this file.
1#ifndef PASSIVESCALAR_H
2#define PASSIVESCALAR_H
3
9
10namespace amr_wind::pde {
11
31{
32 using MLDiffOp = amrex::MLABecLaplacian;
34
35 static std::string pde_name() { return "PassiveScalar"; }
36 static std::string var_name() { return "passive_scalar"; }
37
38 static constexpr amrex::Real default_bc_value = 0.0;
39
40 static constexpr int ndim = 1;
41 static constexpr bool multiply_rho = true;
42 static constexpr bool has_diffusion = true;
43 static constexpr bool need_nph_state = true;
44};
45
46} // namespace amr_wind::pde
47
48#endif
Definition SourceTerm.H:19
Definition AdvOp_Godunov.H:16
Definition passive_scalar.H:31
static constexpr bool multiply_rho
Definition passive_scalar.H:41
static constexpr bool has_diffusion
Definition passive_scalar.H:42
amrex::MLABecLaplacian MLDiffOp
Definition passive_scalar.H:32
static std::string pde_name()
Definition passive_scalar.H:35
static std::string var_name()
Definition passive_scalar.H:36
static constexpr bool need_nph_state
Definition passive_scalar.H:43
static constexpr amrex::Real default_bc_value
Definition passive_scalar.H:38
static constexpr int ndim
Definition passive_scalar.H:40
Definition PDETraits.H:35