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

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