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

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