/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#include "AMReX_REAL.H"
10
11using namespace amrex::literals;
12
13namespace amr_wind::pde {
14
19
26
31{
32 using MLDiffOp = amrex::MLABecLaplacian;
34
35 static std::string pde_name() { return "Levelset"; }
36 static std::string var_name() { return "levelset"; }
37
38 static constexpr int ndim = 1;
39
40 static constexpr bool multiply_rho = false;
41 static constexpr bool has_diffusion = false;
42 static constexpr bool need_nph_state = true;
43
44 static constexpr amrex::Real default_bc_value = 0.0_rt;
45};
46
47} // namespace amr_wind::pde
48
49#endif /* LEVELSET_H */
Definition SourceTerm.H:19
Definition AdvOp_Godunov.H:21
Definition levelset.H:31
amrex::MLABecLaplacian MLDiffOp
Definition levelset.H:32
static constexpr bool multiply_rho
Definition levelset.H:40
static constexpr amrex::Real default_bc_value
Definition levelset.H:44
static std::string var_name()
Definition levelset.H:36
static constexpr bool has_diffusion
Definition levelset.H:41
SourceTerm SrcTerm
Definition levelset.H:33
static constexpr int ndim
Definition levelset.H:38
static std::string pde_name()
Definition levelset.H:35
static constexpr bool need_nph_state
Definition levelset.H:42
Definition PDETraits.H:35