/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#include "AMReX_REAL.H"
10
11using namespace amrex::literals;
12
13namespace amr_wind::pde {
14
16{
17 using MLDiffOp = amrex::MLABecLaplacian;
19
20 static std::string pde_name() { return "Density"; }
21 static std::string var_name() { return "density"; }
22
23 static constexpr int ndim = 1;
24
25 static constexpr bool multiply_rho = false;
26 static constexpr bool has_diffusion = false;
27 static constexpr bool need_nph_state = true;
28
29 static constexpr amrex::Real default_bc_value = 1.0_rt;
30};
31
32} // namespace amr_wind::pde
33
34#endif /* DENSITY_H */
Definition DensitySource.H:17
Definition AdvOp_Godunov.H:21
Definition density.H:16
amrex::MLABecLaplacian MLDiffOp
Definition density.H:17
DensitySource SrcTerm
Definition density.H:18
static std::string var_name()
Definition density.H:21
static constexpr bool need_nph_state
Definition density.H:27
static constexpr int ndim
Definition density.H:23
static constexpr bool multiply_rho
Definition density.H:25
static constexpr bool has_diffusion
Definition density.H:26
static constexpr amrex::Real default_bc_value
Definition density.H:29
static std::string pde_name()
Definition density.H:20
Definition PDETraits.H:35