Cantera  3.1.0b1
Loading...
Searching...
No Matches
Domain1D Class Reference

Base class for one-dimensional domains. More...

#include <Domain1D.h>

Inheritance diagram for Domain1D:
[legend]

Detailed Description

Base class for one-dimensional domains.

Definition at line 28 of file Domain1D.h.

Public Member Functions

 Domain1D (size_t nv=1, size_t points=1, double time=0.0)
 Constructor.
 
 Domain1D (const Domain1D &)=delete
 
Domain1Doperator= (const Domain1D &)=delete
 
virtual string domainType () const
 Domain type flag.
 
string type () const
 String indicating the domain implemented.
 
size_t domainIndex ()
 The left-to-right location of this domain.
 
virtual bool isConnector ()
 True if the domain is a connector domain.
 
void setSolution (shared_ptr< Solution > sol)
 Set the solution manager.
 
virtual void setKinetics (shared_ptr< Kinetics > kin)
 Set the kinetics manager.
 
virtual void setTransport (shared_ptr< Transport > trans)
 Set transport model to existing instance.
 
const OneDimcontainer () const
 The container holding this domain.
 
void setContainer (OneDim *c, size_t index)
 Specify the container object for this domain, and the position of this domain in the list.
 
void setBandwidth (int bw=-1)
 Set the Jacobian bandwidth. See the discussion of method bandwidth().
 
size_t bandwidth ()
 Set the Jacobian bandwidth for this domain.
 
virtual void init ()
 Initialize.
 
virtual void setInitialState (double *xlocal=0)
 
virtual void setState (size_t point, const double *state, double *x)
 
virtual void resetBadValues (double *xg)
 When called, this function should reset "bad" values in the state vector such as negative species concentrations.
 
virtual void resize (size_t nv, size_t np)
 Resize the domain to have nv components and np grid points.
 
Refinerrefiner ()
 Return a reference to the grid refiner.
 
size_t nComponents () const
 Number of components at each grid point.
 
void checkComponentIndex (size_t n) const
 Check that the specified component index is in range.
 
void checkComponentArraySize (size_t nn) const
 Check that an array size is at least nComponents().
 
size_t nPoints () const
 Number of grid points in this domain.
 
void checkPointIndex (size_t n) const
 Check that the specified point index is in range.
 
void checkPointArraySize (size_t nn) const
 Check that an array size is at least nPoints().
 
virtual string componentName (size_t n) const
 Name of component n. May be overloaded.
 
void setComponentName (size_t n, const string &name)
 Set the name of the component n to name.
 
virtual size_t componentIndex (const string &name) const
 index of component with name name.
 
void setBounds (size_t n, double lower, double upper)
 Set the upper and lower bounds for a solution component, n.
 
void setTransientTolerances (double rtol, double atol, size_t n=npos)
 Set tolerances for time-stepping mode.
 
void setSteadyTolerances (double rtol, double atol, size_t n=npos)
 Set tolerances for steady-state mode.
 
double rtol (size_t n)
 Relative tolerance of the nth component.
 
double atol (size_t n)
 Absolute tolerance of the nth component.
 
double steady_rtol (size_t n)
 Steady relative tolerance of the nth component.
 
double steady_atol (size_t n)
 Steady absolute tolerance of the nth component.
 
double transient_rtol (size_t n)
 Transient relative tolerance of the nth component.
 
double transient_atol (size_t n)
 Transient absolute tolerance of the nth component.
 
double upperBound (size_t n) const
 Upper bound on the nth component.
 
double lowerBound (size_t n) const
 Lower bound on the nth component.
 
void initTimeInteg (double dt, const double *x0)
 Performs the setup required before starting a time-stepping solution.
 
void setSteadyMode ()
 Set the internally-stored reciprocal of the time step to 0.0, which is used to indicate that the problem is in steady-state mode.
 
bool steady ()
 True if in steady-state mode.
 
bool transient ()
 True if not in steady-state mode.
 
void needJacUpdate ()
 Set this if something has changed in the governing equations (for example, the value of a constant has been changed, so that the last-computed Jacobian is no longer valid.
 
virtual void eval (size_t j, double *x, double *r, integer *mask, double rdt=0.0)
 Evaluate the residual function at point j.
 
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.
 
double value (const double *x, size_t n, size_t j) const
 Returns the value of solution component n at grid point j of the solution vector x.
 
virtual void setJac (MultiJac *jac)
 
virtual shared_ptr< SolutionArrayasArray (const double *soln) const
 Save the state of this domain as a SolutionArray.
 
shared_ptr< SolutionArraytoArray (bool normalize=false) const
 Save the state of this domain to a SolutionArray.
 
virtual void fromArray (SolutionArray &arr, double *soln)
 Restore the solution for this domain from a SolutionArray.
 
void fromArray (const shared_ptr< SolutionArray > &arr)
 Restore the solution for this domain from a SolutionArray.
 
shared_ptr< Solutionsolution () const
 Return thermo/kinetics/transport manager used in the domain.
 
size_t size () const
 Return the size of the solution vector (the product of m_nv and m_points).
 
void locate ()
 Find the index of the first grid point in this domain, and the start of its variables in the global solution vector.
 
virtual size_t loc (size_t j=0) const
 Location of the start of the local solution vector in the global solution vector.
 
size_t firstPoint () const
 The index of the first (that is, left-most) grid point belonging to this domain.
 
size_t lastPoint () const
 The index of the last (that is, right-most) grid point belonging to this domain.
 
void linkLeft (Domain1D *left)
 Set the left neighbor to domain 'left.
 
void linkRight (Domain1D *right)
 Set the right neighbor to domain 'right.'.
 
void append (Domain1D *right)
 Append domain 'right' to this one, and update all links.
 
Domain1Dleft () const
 Return a pointer to the left neighbor.
 
Domain1Dright () const
 Return a pointer to the right neighbor.
 
double prevSoln (size_t n, size_t j) const
 Value of component n at point j in the previous solution.
 
void setID (const string &s)
 Specify an identifying tag for this domain.
 
string id () const
 Returns the identifying tag for this domain.
 
virtual void show (std::ostream &s, const double *x)
 Print the solution.
 
virtual void show (const double *x)
 Print the solution.
 
double z (size_t jlocal) const
 Get the coordinate [m] of the point with local index jlocal
 
double zmin () const
 Get the coordinate [m] of the first (leftmost) grid point in this domain.
 
double zmax () const
 Get the coordinate [m] of the last (rightmost) grid point in this domain.
 
void setProfile (const string &name, double *values, double *soln)
 Set initial values for a component at each grid point.
 
vector< double > & grid ()
 Access the array of grid coordinates [m].
 
const vector< double > & grid () const
 Access the array of grid coordinates [m].
 
double grid (size_t point) const
 
virtual void setupGrid (size_t n, const double *z)
 called to set up initial grid, and after grid refinement
 
virtual void _getInitialSoln (double *x)
 Writes some or all initial solution values into the global solution array, beginning at the location pointed to by x.
 
virtual double initialValue (size_t n, size_t j)
 Initial value of solution component n at grid point j.
 
virtual void _finalize (const double *x)
 In some cases, a domain may need to set parameters that depend on the initial solution estimate.
 
void forceFullUpdate (bool update)
 In some cases, for computational efficiency some properties (such as transport coefficients) may not be updated during Jacobian evaluations.
 
void setData (shared_ptr< vector< double > > &data)
 Set shared data pointer.
 

Protected Member Functions

virtual AnyMap getMeta () const
 Retrieve meta data.
 
virtual void setMeta (const AnyMap &meta)
 Retrieve meta data.
 

Protected Attributes

shared_ptr< vector< double > > m_state
 data pointer shared from OneDim
 
double m_rdt = 0.0
 Reciprocal of the time step.
 
size_t m_nv = 0
 Number of solution components.
 
size_t m_points
 Number of grid points.
 
vector< double > m_slast
 Solution vector at the last time step.
 
vector< double > m_max
 Upper bounds on solution components.
 
vector< double > m_min
 Lower bounds on solution components.
 
vector< double > m_rtol_ss
 Relative tolerances for steady mode.
 
vector< double > m_rtol_ts
 Relative tolerances for transient mode.
 
vector< double > m_atol_ss
 Absolute tolerances for steady mode.
 
vector< double > m_atol_ts
 Absolute tolerances for transient mode.
 
vector< double > m_z
 1D spatial grid coordinates
 
OneDimm_container = nullptr
 Parent OneDim simulation containing this and adjacent domains.
 
size_t m_index
 Left-to-right location of this domain.
 
size_t m_iloc = 0
 Starting location within the solution vector for unknowns that correspond to this domain.
 
size_t m_jstart = 0
 Index of the first point in this domain in the global point list.
 
Domain1Dm_left = nullptr
 Pointer to the domain to the left.
 
Domain1Dm_right = nullptr
 Pointer to the domain to the right.
 
string m_id
 Identity tag for the domain.
 
unique_ptr< Refinerm_refiner
 Refiner object used for placing grid points.
 
vector< string > m_name
 Names of solution components.
 
int m_bw = -1
 See bandwidth()
 
bool m_force_full_update = false
 see forceFullUpdate()
 
shared_ptr< Solutionm_solution
 Composite thermo/kinetics/transport handler.
 

Constructor & Destructor Documentation

◆ Domain1D()

Domain1D ( size_t  nv = 1,
size_t  points = 1,
double  time = 0.0 
)

Constructor.

Parameters
nvNumber of variables at each grid point.
pointsNumber of grid points.
time(unused)

Definition at line 19 of file Domain1D.cpp.

◆ ~Domain1D()

~Domain1D ( )
virtual

Definition at line 24 of file Domain1D.cpp.

Member Function Documentation

◆ domainType()

virtual string domainType ( ) const
inlinevirtual

Domain type flag.

Since
Starting in Cantera 3.1, the return type is a string.

Reimplemented in Boundary1D, Inlet1D, Empty1D, Symm1D, Outlet1D, OutletRes1D, Surf1D, ReactingSurf1D, Flow1D, and IonFlow.

Definition at line 45 of file Domain1D.h.

◆ type()

string type ( ) const
inline

String indicating the domain implemented.

Since
New in Cantera 3.0.
Deprecated:
Transitional method. Use domainType() instead.

Definition at line 50 of file Domain1D.h.

◆ domainIndex()

size_t domainIndex ( )
inline

The left-to-right location of this domain.

Definition at line 53 of file Domain1D.h.

◆ isConnector()

virtual bool isConnector ( )
inlinevirtual

True if the domain is a connector domain.

Reimplemented in Boundary1D.

Definition at line 58 of file Domain1D.h.

◆ setSolution()

void setSolution ( shared_ptr< Solution sol)

Set the solution manager.

Since
New in Cantera 3.0.

Definition at line 31 of file Domain1D.cpp.

◆ setKinetics()

virtual void setKinetics ( shared_ptr< Kinetics kin)
inlinevirtual

Set the kinetics manager.

Since
New in Cantera 3.0.

Reimplemented in ReactingSurf1D, and Flow1D.

Definition at line 68 of file Domain1D.h.

◆ setTransport()

virtual void setTransport ( shared_ptr< Transport trans)
inlinevirtual

Set transport model to existing instance.

Since
New in Cantera 3.0.

Reimplemented in Flow1D.

Definition at line 74 of file Domain1D.h.

◆ container()

const OneDim & container ( ) const
inline

The container holding this domain.

Definition at line 79 of file Domain1D.h.

◆ setContainer()

void setContainer ( OneDim c,
size_t  index 
)
inline

Specify the container object for this domain, and the position of this domain in the list.

Definition at line 85 of file Domain1D.h.

◆ setBandwidth()

void setBandwidth ( int  bw = -1)
inline

Set the Jacobian bandwidth. See the discussion of method bandwidth().

Definition at line 91 of file Domain1D.h.

◆ bandwidth()

size_t bandwidth ( )
inline

Set the Jacobian bandwidth for this domain.

When class OneDim computes the bandwidth of the overall multi-domain problem (in OneDim::resize()), it calls this method for the bandwidth of each domain. If setBandwidth has not been called, then a negative bandwidth is returned, in which case OneDim assumes that this domain is dense – that is, at each point, all components depend on the value of all other components at that point. In this case, the bandwidth is bw = 2*nComponents() - 1. However, if this domain contains some components that are uncoupled from other components at the same point, then this default bandwidth may greatly overestimate the true bandwidth, with a substantial penalty in performance. For such domains, use method setBandwidth to specify the bandwidth before passing this domain to the Sim1D or OneDim constructor.

Definition at line 110 of file Domain1D.h.

◆ init()

virtual void init ( )
inlinevirtual

Initialize.

This method is called by OneDim::init() for each domain once at the beginning of a simulation. Base class method does nothing, but may be overloaded.

Reimplemented in Boundary1D, Inlet1D, Empty1D, Symm1D, Outlet1D, OutletRes1D, Surf1D, and ReactingSurf1D.

Definition at line 119 of file Domain1D.h.

◆ setInitialState()

virtual void setInitialState ( double *  xlocal = 0)
inlinevirtual
Deprecated:
Unused. To be removed after Cantera 3.1.

Definition at line 122 of file Domain1D.h.

◆ setState()

virtual void setState ( size_t  point,
const double *  state,
double *  x 
)
inlinevirtual
Deprecated:
Unused. To be removed after Cantera 3.1.

Definition at line 127 of file Domain1D.h.

◆ resetBadValues()

virtual void resetBadValues ( double *  xg)
inlinevirtual

When called, this function should reset "bad" values in the state vector such as negative species concentrations.

This function may be called after a failed solution attempt.

Reimplemented in ReactingSurf1D, and Flow1D.

Definition at line 136 of file Domain1D.h.

◆ resize()

void resize ( size_t  nv,
size_t  np 
)
virtual

Resize the domain to have nv components and np grid points.

This method is virtual so that subclasses can perform other actions required to resize the domain.

Reimplemented in Flow1D, and IonFlow.

Definition at line 44 of file Domain1D.cpp.

◆ refiner()

Refiner & refiner ( )
inline

Return a reference to the grid refiner.

Definition at line 146 of file Domain1D.h.

◆ nComponents()

size_t nComponents ( ) const
inline

Number of components at each grid point.

Definition at line 151 of file Domain1D.h.

◆ checkComponentIndex()

void checkComponentIndex ( size_t  n) const
inline

Check that the specified component index is in range.

Throws an exception if n is greater than nComponents()-1

Definition at line 157 of file Domain1D.h.

◆ checkComponentArraySize()

void checkComponentArraySize ( size_t  nn) const
inline

Check that an array size is at least nComponents().

Throws an exception if nn is less than nComponents(). Used before calls which take an array pointer.

Definition at line 166 of file Domain1D.h.

◆ nPoints()

size_t nPoints ( ) const
inline

Number of grid points in this domain.

Definition at line 173 of file Domain1D.h.

◆ checkPointIndex()

void checkPointIndex ( size_t  n) const
inline

Check that the specified point index is in range.

Throws an exception if n is greater than nPoints()-1

Definition at line 179 of file Domain1D.h.

◆ checkPointArraySize()

void checkPointArraySize ( size_t  nn) const
inline

Check that an array size is at least nPoints().

Throws an exception if nn is less than nPoints(). Used before calls which take an array pointer.

Definition at line 188 of file Domain1D.h.

◆ componentName()

string componentName ( size_t  n) const
virtual

Name of component n. May be overloaded.

Reimplemented in ReactingSurf1D, and Flow1D.

Definition at line 67 of file Domain1D.cpp.

◆ setComponentName()

void setComponentName ( size_t  n,
const string &  name 
)
inline

Set the name of the component n to name.

Definition at line 198 of file Domain1D.h.

◆ componentIndex()

size_t componentIndex ( const string &  name) const
virtual

index of component with name name.

Reimplemented in Flow1D.

Definition at line 76 of file Domain1D.cpp.

◆ setBounds()

void setBounds ( size_t  n,
double  lower,
double  upper 
)
inline

Set the upper and lower bounds for a solution component, n.

Parameters
nsolution component index
lowerlower bound on component n
upperupper bound on component n

Definition at line 212 of file Domain1D.h.

◆ setTransientTolerances()

void setTransientTolerances ( double  rtol,
double  atol,
size_t  n = npos 
)

Set tolerances for time-stepping mode.

Parameters
rtolRelative tolerance
atolAbsolute tolerance
ncomponent index these tolerances apply to. If set to -1 (the default), these tolerances will be applied to all solution components.

Definition at line 87 of file Domain1D.cpp.

◆ setSteadyTolerances()

void setSteadyTolerances ( double  rtol,
double  atol,
size_t  n = npos 
)

Set tolerances for steady-state mode.

Parameters
rtolRelative tolerance
atolAbsolute tolerance
ncomponent index these tolerances apply to. If set to -1 (the default), these tolerances will be applied to all solution components.

Definition at line 100 of file Domain1D.cpp.

◆ rtol()

double rtol ( size_t  n)
inline

Relative tolerance of the nth component.

Definition at line 238 of file Domain1D.h.

◆ atol()

double atol ( size_t  n)
inline

Absolute tolerance of the nth component.

Definition at line 243 of file Domain1D.h.

◆ steady_rtol()

double steady_rtol ( size_t  n)
inline

Steady relative tolerance of the nth component.

Definition at line 248 of file Domain1D.h.

◆ steady_atol()

double steady_atol ( size_t  n)
inline

Steady absolute tolerance of the nth component.

Definition at line 253 of file Domain1D.h.

◆ transient_rtol()

double transient_rtol ( size_t  n)
inline

Transient relative tolerance of the nth component.

Definition at line 258 of file Domain1D.h.

◆ transient_atol()

double transient_atol ( size_t  n)
inline

Transient absolute tolerance of the nth component.

Definition at line 263 of file Domain1D.h.

◆ upperBound()

double upperBound ( size_t  n) const
inline

Upper bound on the nth component.

Definition at line 268 of file Domain1D.h.

◆ lowerBound()

double lowerBound ( size_t  n) const
inline

Lower bound on the nth component.

Definition at line 273 of file Domain1D.h.

◆ initTimeInteg()

void initTimeInteg ( double  dt,
const double *  x0 
)
inline

Performs the setup required before starting a time-stepping solution.

Stores the solution provided in x0 to the internal storage, and sets the reciprocal of the time step to 1/dt.

Parameters
[in]dtTime step
[in]x0Array to store the solution at the last time step

Definition at line 285 of file Domain1D.h.

◆ setSteadyMode()

void setSteadyMode ( )
inline

Set the internally-stored reciprocal of the time step to 0.0, which is used to indicate that the problem is in steady-state mode.

Definition at line 294 of file Domain1D.h.

◆ steady()

bool steady ( )
inline

True if in steady-state mode.

Definition at line 299 of file Domain1D.h.

◆ transient()

bool transient ( )
inline

True if not in steady-state mode.

Definition at line 304 of file Domain1D.h.

◆ needJacUpdate()

void needJacUpdate ( )

Set this if something has changed in the governing equations (for example, the value of a constant has been changed, so that the last-computed Jacobian is no longer valid.

Definition at line 113 of file Domain1D.cpp.

◆ eval()

virtual void eval ( size_t  j,
double *  x,
double *  r,
integer *  mask,
double  rdt = 0.0 
)
inlinevirtual

Evaluate the residual function at point j.

If j == npos, evaluate the residual function at all points.

This function must be implemented in classes derived from Domain1D.

Parameters
[in]jGrid point at which to update the residual
[in]xState vector
[out]rresidual vector
[out]maskBoolean mask indicating whether each solution component has a time derivative (1) or not (0).
[in]rdtReciprocal of the timestep (rdt=0 implies steady-state.)

Reimplemented in StFlow, Inlet1D, Empty1D, Symm1D, Outlet1D, OutletRes1D, Surf1D, ReactingSurf1D, and Flow1D.

Definition at line 327 of file Domain1D.h.

◆ index()

size_t index ( size_t  n,
size_t  j 
) const
inline

Returns the index of the solution vector, which corresponds to component n at grid point j.

Parameters
ncomponent index
jgrid point index

Definition at line 338 of file Domain1D.h.

◆ value()

double value ( const double *  x,
size_t  n,
size_t  j 
) const
inline

Returns the value of solution component n at grid point j of the solution vector x.

Parameters
xsolution vector
ncomponent index
jgrid point index

Definition at line 350 of file Domain1D.h.

◆ setJac()

virtual void setJac ( MultiJac jac)
inlinevirtual
Deprecated:
To be removed after Cantera 3.1.

Definition at line 355 of file Domain1D.h.

◆ asArray()

virtual shared_ptr< SolutionArray > asArray ( const double *  soln) const
inlinevirtual

Save the state of this domain as a SolutionArray.

Parameters
solnlocal solution vector for this domain
Todo:
Despite the method's name, data are copied; the intent is to access data directly in future revisions, where a non-const version will be implemented.
Since
New in Cantera 3.0.

Reimplemented in Inlet1D, Empty1D, Symm1D, Outlet1D, OutletRes1D, Surf1D, ReactingSurf1D, and Flow1D.

Definition at line 367 of file Domain1D.h.

◆ toArray()

shared_ptr< SolutionArray > toArray ( bool  normalize = false) const

Save the state of this domain to a SolutionArray.

This method serves as an external interface for high-level API's; it does not provide direct access to memory.

Parameters
normalizeIf true, normalize concentrations (default=false)
Since
New in Cantera 3.0.

Definition at line 149 of file Domain1D.cpp.

◆ fromArray() [1/2]

virtual void fromArray ( SolutionArray arr,
double *  soln 
)
inlinevirtual

Restore the solution for this domain from a SolutionArray.

Parameters
[in]arrSolutionArray defining the state of this domain
[out]solnValue of the solution vector, local to this domain
Since
New in Cantera 3.0.

Reimplemented in Boundary1D, Inlet1D, OutletRes1D, Surf1D, ReactingSurf1D, and Flow1D.

Definition at line 388 of file Domain1D.h.

◆ fromArray() [2/2]

void fromArray ( const shared_ptr< SolutionArray > &  arr)

Restore the solution for this domain from a SolutionArray.

This method serves as an external interface for high-level API's.

Parameters
arrSolutionArray defining the state of this domain
Since
New in Cantera 3.0.

Definition at line 161 of file Domain1D.cpp.

◆ solution()

shared_ptr< Solution > solution ( ) const
inline

Return thermo/kinetics/transport manager used in the domain.

Since
New in Cantera 3.0.

Definition at line 402 of file Domain1D.h.

◆ size()

size_t size ( ) const
inline

Return the size of the solution vector (the product of m_nv and m_points).

Definition at line 407 of file Domain1D.h.

◆ locate()

void locate ( )

Find the index of the first grid point in this domain, and the start of its variables in the global solution vector.

Definition at line 205 of file Domain1D.cpp.

◆ loc()

virtual size_t loc ( size_t  j = 0) const
inlinevirtual

Location of the start of the local solution vector in the global solution vector.

Definition at line 418 of file Domain1D.h.

◆ firstPoint()

size_t firstPoint ( ) const
inline

The index of the first (that is, left-most) grid point belonging to this domain.

Definition at line 423 of file Domain1D.h.

◆ lastPoint()

size_t lastPoint ( ) const
inline

The index of the last (that is, right-most) grid point belonging to this domain.

Definition at line 428 of file Domain1D.h.

◆ linkLeft()

void linkLeft ( Domain1D left)
inline

Set the left neighbor to domain 'left.

' Method 'locate' is called to update the global positions of this domain and all those to its right.

Definition at line 436 of file Domain1D.h.

◆ linkRight()

void linkRight ( Domain1D right)
inline

Set the right neighbor to domain 'right.'.

Definition at line 445 of file Domain1D.h.

◆ append()

void append ( Domain1D right)
inline

Append domain 'right' to this one, and update all links.

Definition at line 453 of file Domain1D.h.

◆ left()

Domain1D * left ( ) const
inline

Return a pointer to the left neighbor.

Definition at line 459 of file Domain1D.h.

◆ right()

Domain1D * right ( ) const
inline

Return a pointer to the right neighbor.

Definition at line 464 of file Domain1D.h.

◆ prevSoln()

double prevSoln ( size_t  n,
size_t  j 
) const
inline

Value of component n at point j in the previous solution.

Definition at line 469 of file Domain1D.h.

◆ setID()

void setID ( const string &  s)
inline

Specify an identifying tag for this domain.

Definition at line 474 of file Domain1D.h.

◆ id()

string id ( ) const
inline

Returns the identifying tag for this domain.

Definition at line 479 of file Domain1D.h.

◆ show() [1/2]

virtual void show ( std::ostream &  s,
const double *  x 
)
inlinevirtual

Print the solution.

Deprecated:
Not implemented. To be removed after Cantera 3.1.

Reimplemented in Surf1D.

Definition at line 489 of file Domain1D.h.

◆ show() [2/2]

void show ( const double *  x)
virtual

Print the solution.

Parameters
xPointer to the local portion of the system state vector

Reimplemented in Inlet1D, Empty1D, OutletRes1D, Surf1D, ReactingSurf1D, and Flow1D.

Definition at line 235 of file Domain1D.cpp.

◆ z()

double z ( size_t  jlocal) const
inline

Get the coordinate [m] of the point with local index jlocal

Definition at line 499 of file Domain1D.h.

◆ zmin()

double zmin ( ) const
inline

Get the coordinate [m] of the first (leftmost) grid point in this domain.

Definition at line 504 of file Domain1D.h.

◆ zmax()

double zmax ( ) const
inline

Get the coordinate [m] of the last (rightmost) grid point in this domain.

Definition at line 509 of file Domain1D.h.

◆ setProfile()

void setProfile ( const string &  name,
double *  values,
double *  soln 
)

Set initial values for a component at each grid point.

Parameters
nameName of the component
valuesArray of length nPoints() containing the initial values
solnPointer to the local portion of the system state vector

Definition at line 271 of file Domain1D.cpp.

◆ grid() [1/3]

vector< double > & grid ( )
inline

Access the array of grid coordinates [m].

Definition at line 520 of file Domain1D.h.

◆ grid() [2/3]

const vector< double > & grid ( ) const
inline

Access the array of grid coordinates [m].

Definition at line 525 of file Domain1D.h.

◆ grid() [3/3]

double grid ( size_t  point) const
inline
Deprecated:
To be removed after Cantera 3.1. Use z() instead.

Definition at line 530 of file Domain1D.h.

◆ setupGrid()

void setupGrid ( size_t  n,
const double *  z 
)
virtual

called to set up initial grid, and after grid refinement

Reimplemented in Boundary1D, and Flow1D.

Definition at line 225 of file Domain1D.cpp.

◆ _getInitialSoln()

void _getInitialSoln ( double *  x)
virtual

Writes some or all initial solution values into the global solution array, beginning at the location pointed to by x.

This method is called by the Sim1D constructor, and allows default values or ones that have been set locally prior to installing this domain into the container to be written to the global solution vector.

Reimplemented in ReactingSurf1D, and Flow1D.

Definition at line 284 of file Domain1D.cpp.

◆ initialValue()

double initialValue ( size_t  n,
size_t  j 
)
virtual

Initial value of solution component n at grid point j.

Definition at line 293 of file Domain1D.cpp.

◆ _finalize()

virtual void _finalize ( const double *  x)
inlinevirtual

In some cases, a domain may need to set parameters that depend on the initial solution estimate.

In such cases, the parameters may be set in method _finalize. This method is called just before the Newton solver is called, and the x array is guaranteed to be the local solution vector for this domain that will be used as the initial guess. If no such parameters need to be set, then method _finalize does not need to be overloaded.

Reimplemented in ReactingSurf1D, Flow1D, and IonFlow.

Definition at line 559 of file Domain1D.h.

◆ forceFullUpdate()

void forceFullUpdate ( bool  update)
inline

In some cases, for computational efficiency some properties (such as transport coefficients) may not be updated during Jacobian evaluations.

Set this to true to force these properties to be updated even while calculating Jacobian elements.

Definition at line 567 of file Domain1D.h.

◆ setData()

void setData ( shared_ptr< vector< double > > &  data)
inline

Set shared data pointer.

Definition at line 572 of file Domain1D.h.

◆ getMeta()

AnyMap getMeta ( ) const
protectedvirtual

Retrieve meta data.

Reimplemented in Flow1D.

Definition at line 121 of file Domain1D.cpp.

◆ setMeta()

void setMeta ( const AnyMap meta)
protectedvirtual

Retrieve meta data.

Reimplemented in Flow1D.

Definition at line 173 of file Domain1D.cpp.

Member Data Documentation

◆ m_state

shared_ptr<vector<double> > m_state
protected

data pointer shared from OneDim

Definition at line 583 of file Domain1D.h.

◆ m_rdt

double m_rdt = 0.0
protected

Reciprocal of the time step.

Definition at line 585 of file Domain1D.h.

◆ m_nv

size_t m_nv = 0
protected

Number of solution components.

Definition at line 586 of file Domain1D.h.

◆ m_points

size_t m_points
protected

Number of grid points.

Definition at line 587 of file Domain1D.h.

◆ m_slast

vector<double> m_slast
protected

Solution vector at the last time step.

Definition at line 588 of file Domain1D.h.

◆ m_max

vector<double> m_max
protected

Upper bounds on solution components.

Definition at line 589 of file Domain1D.h.

◆ m_min

vector<double> m_min
protected

Lower bounds on solution components.

Definition at line 590 of file Domain1D.h.

◆ m_rtol_ss

vector<double> m_rtol_ss
protected

Relative tolerances for steady mode.

Definition at line 591 of file Domain1D.h.

◆ m_rtol_ts

vector<double> m_rtol_ts
protected

Relative tolerances for transient mode.

Definition at line 592 of file Domain1D.h.

◆ m_atol_ss

vector<double> m_atol_ss
protected

Absolute tolerances for steady mode.

Definition at line 593 of file Domain1D.h.

◆ m_atol_ts

vector<double> m_atol_ts
protected

Absolute tolerances for transient mode.

Definition at line 594 of file Domain1D.h.

◆ m_z

vector<double> m_z
protected

1D spatial grid coordinates

Definition at line 595 of file Domain1D.h.

◆ m_container

OneDim* m_container = nullptr
protected

Parent OneDim simulation containing this and adjacent domains.

Definition at line 598 of file Domain1D.h.

◆ m_index

size_t m_index
protected

Left-to-right location of this domain.

Definition at line 600 of file Domain1D.h.

◆ m_iloc

size_t m_iloc = 0
protected

Starting location within the solution vector for unknowns that correspond to this domain.

Remember there may be multiple domains associated with this problem

Definition at line 607 of file Domain1D.h.

◆ m_jstart

size_t m_jstart = 0
protected

Index of the first point in this domain in the global point list.

See also
firstPoint(), lastPoint()

Definition at line 611 of file Domain1D.h.

◆ m_left

Domain1D* m_left = nullptr
protected

Pointer to the domain to the left.

Definition at line 613 of file Domain1D.h.

◆ m_right

Domain1D* m_right = nullptr
protected

Pointer to the domain to the right.

Definition at line 614 of file Domain1D.h.

◆ m_id

string m_id
protected

Identity tag for the domain.

Definition at line 617 of file Domain1D.h.

◆ m_refiner

unique_ptr<Refiner> m_refiner
protected

Refiner object used for placing grid points.

Definition at line 618 of file Domain1D.h.

◆ m_name

vector<string> m_name
protected

Names of solution components.

Definition at line 619 of file Domain1D.h.

◆ m_bw

int m_bw = -1
protected

See bandwidth()

Definition at line 620 of file Domain1D.h.

◆ m_force_full_update

bool m_force_full_update = false
protected

see forceFullUpdate()

Definition at line 621 of file Domain1D.h.

◆ m_solution

shared_ptr<Solution> m_solution
protected

Composite thermo/kinetics/transport handler.

Definition at line 624 of file Domain1D.h.


The documentation for this class was generated from the following files: