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

AMR-Wind API: /home/runner/work/amr-wind/amr-wind/amr-wind/equation_systems/density/density.H Source File
AMR-Wind API v0.1.0
CFD solver for wind plant simulations
Loading...
Searching...
No Matches
density.H
Go to the documentation of this file.
1#ifndef DENSITY_H
2#define DENSITY_H
3
9
10namespace amr_wind::pde {
11
13{
14 using MLDiffOp = amrex::MLABecLaplacian;
16
17 static std::string pde_name() { return "Density"; }
18 static std::string var_name() { return "density"; }
19
20 static constexpr int ndim = 1;
21
22 static constexpr bool multiply_rho = false;
23 static constexpr bool has_diffusion = false;
24 static constexpr bool need_nph_state = true;
25
26 static constexpr amrex::Real default_bc_value = 1.0;
27};
28
29} // namespace amr_wind::pde
30
31#endif /* DENSITY_H */
Definition DensitySource.H:17
Definition AdvOp_Godunov.H:16
Definition density.H:13
amrex::MLABecLaplacian MLDiffOp
Definition density.H:14
static std::string var_name()
Definition density.H:18
static constexpr bool need_nph_state
Definition density.H:24
static constexpr int ndim
Definition density.H:20
static constexpr bool multiply_rho
Definition density.H:22
static constexpr bool has_diffusion
Definition density.H:23
static constexpr amrex::Real default_bc_value
Definition density.H:26
static std::string pde_name()
Definition density.H:17
Definition PDETraits.H:35