class
CompFlowProblemGaussHumpCompFlow system of PDEs problem: GaussHump.
Contents
- Reference
Public static functions
-
static auto initialize(ncomp_
t ncomp, const std::vector<EOS>&, tk:: real x, tk:: real y, tk:: real, tk:: real t) -> tk::InitializeFn::result_type - Initialize numerical solution.
-
static auto analyticSolution(ncomp_
t ncomp, const std::vector<EOS>&, tk:: real x, tk:: real y, tk:: real, tk:: real t) -> tk::InitializeFn::result_type - Evaluate analytical solution at (x,y,z,t) for all components.
-
static auto src(ncomp_
t, const std::vector<EOS>&, tk:: real, tk:: real, tk:: real, tk:: real, std::vector<tk:: real>& sv) -> tk::SrcFn::result_type -
static auto prescribedVelocity(ncomp_
t ncomp, tk:: real, tk:: real, tk:: real) -> std::vector<std::array<tk:: real, 3>> - Assign prescribed velocity at a point.
-
static auto type() -> ctr::
ProblemType noexcept - Return problem type.
Public functions
-
auto analyticFieldNames(ncomp_
t) const -> std::vector<std::string> - Return analytic 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:: CompFlowProblemGaussHump:: initialize(ncomp_ t ncomp,
const std::vector<EOS>&,
tk:: real x,
tk:: real y,
tk:: real,
tk:: real t)
Initialize numerical solution.
Parameters | |
---|---|
ncomp in | Number of scalar components in this PDE system |
x in | X coordinate where to evaluate the solution |
y in | Y coordinate where to evaluate the solution |
t in | Time where to evaluate the solution |
Returns | Values of all components evaluated at (x) |
Evaluate analytical solution at (x,y,z,t) for all components
static tk::InitializeFn::result_type inciter:: CompFlowProblemGaussHump:: analyticSolution(ncomp_ t ncomp,
const std::vector<EOS>&,
tk:: real x,
tk:: real y,
tk:: real,
tk:: real t)
Evaluate analytical solution at (x,y,z,t) for all components.
Parameters | |
---|---|
ncomp in | Number of scalar components in this PDE system |
x in | X coordinate where to evaluate the solution |
y in | Y coordinate where to evaluate the solution |
t in | Time where to evaluate the solution |
Returns | Values of all components evaluated at (x) |
Evaluate analytical solution at (x,y,z,t) for all components
static std::vector<std::array<tk:: real, 3>> inciter:: CompFlowProblemGaussHump:: prescribedVelocity(ncomp_ t ncomp,
tk:: real,
tk:: real,
tk:: real)
Assign prescribed velocity at a point.
Parameters | |
---|---|
ncomp in | Number of components in this transport equation |
Returns | Velocity assigned to all vertices of a tetrehedron, size: ncomp * ndim = [ncomp][3] |
Assign prescribed velocity at a point
std::vector<std::string> inciter:: CompFlowProblemGaussHump:: analyticFieldNames(ncomp_ t) const
Return analytic field names to be output to file.
Returns | Vector of strings labelling fields output in file |
---|