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

AMR-Wind API: /home/runner/work/amr-wind/amr-wind/amr-wind/equation_systems/vof/vof.H Source File
AMR-Wind API v0.1.0
CFD solver for wind plant simulations
Loading...
Searching...
No Matches
vof.H
Go to the documentation of this file.
1#ifndef VOF_H
2#define VOF_H
3
9
10namespace amr_wind::pde {
11
17{
18 using MLDiffOp = amrex::MLABecLaplacian;
20
21 static std::string pde_name() { return "VOF"; }
22 static std::string var_name() { return "vof"; }
23
24 static constexpr int ndim = 1;
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 = 0.0;
30};
31
32} // namespace amr_wind::pde
33
34#endif /* VOF_H */
Definition SourceTerm.H:19
Definition AdvOp_Godunov.H:16
Definition PDETraits.H:35
Definition vof.H:17
static constexpr int ndim
Definition vof.H:24
static constexpr amrex::Real default_bc_value
Definition vof.H:29
static constexpr bool has_diffusion
Definition vof.H:26
static std::string pde_name()
Definition vof.H:21
amrex::MLABecLaplacian MLDiffOp
Definition vof.H:18
static std::string var_name()
Definition vof.H:22
static constexpr bool multiply_rho
Definition vof.H:25
static constexpr bool need_nph_state
Definition vof.H:27