10#include "cantera/oneD/refine.h"
33 return toArray()->info(keys, rows, width);
65 return fmt::format(
"component {}", n);
73 for (
size_t n = 0; n <
m_nv; n++) {
79 "Component '{}' not found", name);
84 for (
size_t n = 0; n <
m_nv; n++) {
90 "Component '{}' not found", name);
96 for (n = 0; n <
m_nv; n++) {
109 for (n = 0; n <
m_nv; n++) {
129 auto wrap_tols = [
this](
const vector<double>& tols) {
132 set<double> unique_tols(tols.begin(), tols.end());
133 if (unique_tols.size() == 1) {
137 for (
size_t i = 0; i < tols.size(); i++) {
145 state[
"points"] =
static_cast<long int>(
nPoints());
147 state[
"tolerances"][
"transient-abstol"] = wrap_tols(
m_atol_ts);
148 state[
"tolerances"][
"steady-abstol"] = wrap_tols(
m_atol_ss);
149 state[
"tolerances"][
"transient-reltol"] = wrap_tols(
m_rtol_ts);
150 state[
"tolerances"][
"steady-reltol"] = wrap_tols(
m_rtol_ss);
157 auto set_tols = [&](
const AnyValue& tols,
const string& which, vector<double>& out)
159 if (!tols.
hasKey(which)) {
162 const auto& tol = tols[which];
163 if (tol.isScalar()) {
168 if (tol.hasKey(name)) {
169 out[i] = tol[name].asDouble();
171 warn_user(
"Domain1D::setMeta",
"No {} found for component '{}'",
178 if (meta.
hasKey(
"tolerances")) {
179 const auto& tols = meta[
"tolerances"];
180 set_tols(tols,
"transient-abstol",
m_atol_ts);
181 set_tols(tols,
"transient-reltol",
m_rtol_ts);
182 set_tols(tols,
"steady-abstol",
m_atol_ss);
183 set_tols(tols,
"steady-reltol",
m_rtol_ss);
216 for (
size_t j = 0; j <
m_points; j++) {
224 vector<double>
grid(points);
225 double dz = length /
static_cast<double>(points - 1);
226 for (
size_t iz = 0; iz < points; iz++) {
227 grid[iz] = start + iz * dz;
235 for (
size_t i = 0; i < nn; i++) {
236 writeline(
'-', 79,
false,
true);
238 for (
size_t n = 0; n < 5; n++) {
241 writeline(
'-', 79,
false,
true);
242 for (
size_t j = 0; j <
m_points; j++) {
244 for (
size_t n = 0; n < 5; n++) {
250 size_t nrem =
m_nv - 5*nn;
251 writeline(
'-', 79,
false,
true);
253 for (
size_t n = 0; n < nrem; n++) {
256 writeline(
'-', 79,
false,
true);
257 for (
size_t j = 0; j <
m_points; j++) {
259 for (
size_t n = 0; n < nrem; n++) {
268 m_refiner->setCriteria(ratio, slope, curve, prune);
278 for (
size_t j = 0; j <
m_points; j++) {
279 for (
size_t n = 0; n <
m_nv; n++) {
Header file for class ThermoPhase, the base class for phases with thermodynamic properties,...
A map of string keys to values whose type can vary at runtime.
bool hasKey(const string &key) const
Returns true if the map contains an item named key.
A wrapper for a variable whose type is determined at runtime.
bool hasKey(const string &key) const
Returns true if this AnyValue is an AnyMap and that map contains a key with the given name.
Base class for exceptions thrown by Cantera classes.
void setTransientTolerances(double rtol, double atol, size_t n=npos)
Set tolerances for time-stepping mode.
size_t lastPoint() const
The index of the last (that is, right-most) grid point belonging to this domain.
size_t m_iloc
Starting location within the solution vector for unknowns that correspond to this domain.
shared_ptr< Solution > m_solution
Composite thermo/kinetics/transport handler.
Domain1D * m_left
Pointer to the domain to the left.
OneDim * m_container
Parent OneDim simulation containing this and adjacent domains.
size_t nComponents() const
Number of components at each grid point.
double rtol(size_t n)
Relative tolerance of the nth component.
vector< double > m_atol_ss
Absolute tolerances for steady mode.
void setupUniformGrid(size_t points, double length, double start=0.)
Set up uniform grid.
vector< double > m_rtol_ts
Relative tolerances for transient mode.
size_t size() const
Return the size of the solution vector (the product of m_nv and m_points).
vector< double > m_atol_ts
Absolute tolerances for transient mode.
virtual void setMeta(const AnyMap &meta)
Retrieve meta data.
void setupGrid(const vector< double > &grid)
Set up initial grid.
vector< double > & grid()
Access the array of grid coordinates [m].
size_t m_jstart
Index of the first point in this domain in the global point list.
size_t m_nv
Number of solution components.
size_t nPoints() const
Number of grid points in this domain.
vector< string > m_name
Names of solution components.
virtual string domainType() const
Domain type flag.
string info(const vector< string > &keys, int rows=10, int width=80)
Return a concise summary of a Domain.
virtual size_t componentIndex(const string &name, bool checkAlias=true) const
Index of component with name name.
virtual void resize(size_t nv, size_t np)
Resize the domain to have nv components and np grid points.
double z(size_t jlocal) const
Get the coordinate [m] of the point with local index jlocal
virtual void show(const double *x)
Print the solution.
vector< double > m_rtol_ss
Relative tolerances for steady mode.
vector< double > m_slast
Solution vector at the last time step.
Domain1D * m_right
Pointer to the domain to the right.
void setSteadyTolerances(double rtol, double atol, size_t n=npos)
Set tolerances for steady-state mode.
virtual string componentName(size_t n) const
Name of component n. May be overloaded.
double atol(size_t n)
Absolute tolerance of the nth component.
vector< double > m_z
1D spatial grid coordinates
size_t m_points
Number of grid points.
vector< double > m_max
Upper bounds on solution components.
unique_ptr< Refiner > m_refiner
Refiner object used for placing grid points.
vector< double > m_min
Lower bounds on solution components.
virtual double initialValue(size_t n, size_t j)
Initial value of solution component n at grid point j.
virtual shared_ptr< SolutionArray > toArray(bool normalize=false)
Save the state of this domain to a SolutionArray.
void needJacUpdate()
Set this if something has changed in the governing equations (for example, the value of a constant ha...
virtual void _getInitialSoln(double *x)
Writes some or all initial solution values into the global solution array, beginning at the location ...
Domain1D(size_t nv=1, size_t points=1, double time=0.0)
Constructor.
size_t index(size_t n, size_t j) const
Returns the index of the solution vector, which corresponds to component n at grid point j.
vector< double > getRefineCriteria()
Get the grid refinement criteria.
virtual size_t loc(size_t j=0) const
Location of the start of the local solution vector in the global solution vector.
void locate()
Find the index of the first grid point in this domain, and the start of its variables in the global s...
virtual AnyMap getMeta() const
Retrieve meta data.
virtual bool hasComponent(const string &name, bool checkAlias=true) const
Check whether the Domain contains a component.
void setRefineCriteria(double ratio=10.0, double slope=0.8, double curve=0.8, double prune=-0.1)
Set grid refinement criteria.
An array index is out of range.
An error indicating that an unimplemented function has been called.
void saveStats()
Save statistics on function and Jacobian evaluation, and reset the counters.
shared_ptr< SystemJacobian > linearSolver() const
Get the the linear solver being used to hold the Jacobian matrix and solve linear systems as part of ...
void writelog(const string &fmt, const Args &... args)
Write a formatted message to the screen.
void warn_user(const string &method, const string &msg, const Args &... args)
Print a user warning raised from method as CanteraWarning.
Namespace for the Cantera kernel.
const size_t npos
index returned by functions to indicate "no position"