class
CompFlowProblemRayleighTaylorContents
- Reference
CompFlow system of PDEs problem: Rayleigh-Taylor
Public static functions
-
static auto initialize(ncomp_
t system, ncomp_ t, tk:: real x, tk:: real y, tk:: real z, tk:: real t) -> tk::InitializeFn::result_type - Initialize numerical solution.
-
static auto analyticSolution(ncomp_
t system, ncomp_ t, tk:: real x, tk:: real y, tk:: real z, tk:: real t) -> tk::InitializeFn::result_type - Evaluate analytical solution at (x,y,z,t) for all components.
-
static auto src(ncomp_
t system, tk:: real x, tk:: real y, tk:: real z, tk:: real t, tk:: real& r, tk:: real& ru, tk:: real& rv, tk:: real& rw, tk:: real& re) -> tk::CompFlowSrcFn::result_type -
static auto type() -> ctr::
ProblemType noexcept - Return problem type.
Public functions
-
auto analyticFieldNames(ncomp_
t) const -> std::vector<std::string> - Return field names to be output to file.
-
auto names(ncomp_
t) const -> std::vector<std::string> - Return names of integral variables to be output to diagnostics file.
Function documentation
static tk::InitializeFn::result_type inciter:: CompFlowProblemRayleighTaylor:: initialize(ncomp_ t system,
ncomp_ t,
tk:: real x,
tk:: real y,
tk:: real z,
tk:: real t)
Initialize numerical solution.
Parameters | |
---|---|
system in | Equation system index, i.e., which compressible flow equation system we operate on among the systems of PDEs |
x in | X coordinate where to evaluate the solution |
y in | Y coordinate where to evaluate the solution |
z in | Z coordinate where to evaluate the solution |
t in | Time where to evaluate the solution |
Returns | Values of all components evaluated at (x,y,z,t) |
Evaluate analytical solution at (x,y,z,t) for all components
static tk::InitializeFn::result_type inciter:: CompFlowProblemRayleighTaylor:: analyticSolution(ncomp_ t system,
ncomp_ t,
tk:: real x,
tk:: real y,
tk:: real z,
tk:: real t)
Evaluate analytical solution at (x,y,z,t) for all components.
Parameters | |
---|---|
system in | Equation system index, i.e., which compressible flow equation system we operate on among the systems of PDEs |
x in | X coordinate where to evaluate the solution |
y in | Y coordinate where to evaluate the solution |
z in | Z coordinate where to evaluate the solution |
t in | Time where to evaluate the solution |
Returns | Values of all components evaluated at (x,y,z,t) |
Evaluate analytical solution at (x,y,z,t) for all components
static tk::CompFlowSrcFn::result_type inciter:: CompFlowProblemRayleighTaylor:: src(ncomp_ t system,
tk:: real x,
tk:: real y,
tk:: real z,
tk:: real t,
tk:: real& r,
tk:: real& ru,
tk:: real& rv,
tk:: real& rw,
tk:: real& re)
Parameters | |
---|---|
system in | Equation system index, i.e., which compressible flow equation system we operate on among the systems of PDEs |
x in | X coordinate where to evaluate the solution |
y in | Y coordinate where to evaluate the solution |
z in | Z coordinate where to evaluate the solution |
t in | Physical time at which to evaluate the source |
r in/out | Density source |
ru in/out | X momentum source |
rv in/out | Y momentum source |
rw in/out | Z momentum source |
re in/out | Specific total energy source |
Compute and return source term for Rayleigh-Taylor manufactured solution
std::vector<std::string> inciter:: CompFlowProblemRayleighTaylor:: analyticFieldNames(ncomp_ t) const
Return field names to be output to file.
Returns | Vector of strings labelling fields output in file |
---|