binaryNode< CompType, ThermoType > Class Template Reference

Node of the binary tree. More...

Collaboration diagram for binaryNode< CompType, ThermoType >:
[legend]

Public Member Functions

void calcV (chemPointISAT< CompType, ThermoType > *&elementLeft, chemPointISAT< CompType, ThermoType > *&elementRight, scalarField &v)
 Compute vector v: More...
 
scalar calcA (chemPointISAT< CompType, ThermoType > *elementLeft, chemPointISAT< CompType, ThermoType > *elementRight)
 Compute a the product v^T.phih, with phih = (phi0 + phiq)/2. More...
 
 binaryNode ()
 Construct null. More...
 
 binaryNode (chemPointISAT< CompType, ThermoType > *elementLeft, chemPointISAT< CompType, ThermoType > *elementRight, binaryNode< CompType, ThermoType > *parent)
 Construct from components. More...
 
chemPointISAT< CompType, ThermoType > *& leafLeft ()
 Access. More...
 
chemPointISAT< CompType, ThermoType > *& leafRight ()
 
binaryNode< CompType, ThermoType > *& nodeLeft ()
 
binaryNode< CompType, ThermoType > *& nodeRight ()
 
binaryNode< CompType, ThermoType > *& parent ()
 
const scalarFieldv () const
 Topology. More...
 
scalarFieldv ()
 
const scalar & a () const
 
scalar & a ()
 

Public Attributes

chemPointISAT< CompType, ThermoType > * leafLeft_
 Element on the left. More...
 
chemPointISAT< CompType, ThermoType > * leafRight_
 Element on the right. More...
 
binaryNode< CompType, ThermoType > * nodeLeft_
 Node which follows on the left. More...
 
binaryNode< CompType, ThermoType > * nodeRight_
 Node which follows on the right. More...
 
binaryNode< CompType, ThermoType > * parent_
 Parent node. More...
 
label nAdditionalEqns_
 Number of equations in addition to the species eqs. More...
 
scalarField v_
 
scalar a_
 

Detailed Description

template<class CompType, class ThermoType>
class Foam::binaryNode< CompType, ThermoType >

Node of the binary tree.

SourceFile binaryNode.C

Definition at line 51 of file binaryNode.H.

Constructor & Destructor Documentation

◆ binaryNode() [1/2]

Construct null.

Definition at line 33 of file binaryNode.C.

◆ binaryNode() [2/2]

binaryNode ( chemPointISAT< CompType, ThermoType > *  elementLeft,
chemPointISAT< CompType, ThermoType > *  elementRight,
binaryNode< CompType, ThermoType > *  parent 
)

Construct from components.

Definition at line 45 of file binaryNode.C.

References binaryNode< CompType, ThermoType >::a_, binaryNode< CompType, ThermoType >::calcA(), binaryNode< CompType, ThermoType >::calcV(), binaryNode< CompType, ThermoType >::nAdditionalEqns_, binaryNode< CompType, ThermoType >::v_, and chemPointISAT< CompType, ThermoType >::variableTimeStep().

Here is the call graph for this function:

Member Function Documentation

◆ calcV()

void calcV ( chemPointISAT< CompType, ThermoType > *&  elementLeft,
chemPointISAT< CompType, ThermoType > *&  elementRight,
scalarField v 
)

Compute vector v:

Let E be the ellipsoid which covers the region of accuracy of the left leaf (previously defined). E is described by E={phi| ||L^T.(phi-phi0)|| <= 1}, (see chemPoint for more details). let E' be the transformation of E in a space where E' is a hypersphere centered at the origin, in this space y=L^T.(phi-phi0) and then E'={y| ||y||<=1} let u be the unit vector joining the center of E' and the newly added composition point in the transformed space (y2=L^T.(phiq-phi0)),u = y2/||y2| Then the hyperplane separating the two points is defined as the perpendicular bisector of the segment linking 0 to y2 H' = {y| u^T.(y-yh) = 0}, where yh = y2/2. In the original composition space, the hyperplane H is defined by H = {y| v^T(phi-phih) = 0}, where phih = phi0 + L^-T.yh = (phi0 + phiq) / 2 and v is L.L^T (phiq-phi0) v = ——————– . ||L.L^T (phiq-phi0)||

Note : v is not normalised in this implementation since it is used on both side of an equality to know if one should go on the left or the right in the binary tree Parameter: elementLeft : chemPoint of the left element elementRight: chemPoint of the right element v : empty scalar field to store v Return: void (v is stored in the empty scalarField)

Definition at line 76 of file binaryNode.C.

References chemPointISAT< CompType, ThermoType >::chemistry(), chemPointISAT< CompType, ThermoType >::completeSpaceSize(), chemPointISAT< CompType, ThermoType >::completeToSimplifiedIndex(), k, chemPointISAT< CompType, ThermoType >::LT(), TDACChemistryModel< ReactionThermo, ThermoType >::mechRed(), Foam::min(), chemPointISAT< CompType, ThermoType >::nActiveSpecies(), chemPointISAT< CompType, ThermoType >::phi(), chemPointISAT< CompType, ThermoType >::scaleFactor(), Foam::sqr(), and chemPointISAT< CompType, ThermoType >::tolerance().

Referenced by binaryNode< CompType, ThermoType >::binaryNode().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ calcA()

Foam::scalar calcA ( chemPointISAT< CompType, ThermoType > *  elementLeft,
chemPointISAT< CompType, ThermoType > *  elementRight 
)

Compute a the product v^T.phih, with phih = (phi0 + phiq)/2.

When travelling in the binary tree, to know in which part of the composition space the query point 'phi' belongs to, v^T.phi is performed. If the result is "> a" then it belongs to the right part (where phiq is), otherwise it belongs to the left part (where phi0 is).

Definition at line 163 of file binaryNode.C.

References forAll, and chemPointISAT< CompType, ThermoType >::phi().

Referenced by binaryNode< CompType, ThermoType >::binaryNode().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ leafLeft()

chemPointISAT< CompType, ThermoType > *& leafLeft ( )
inline

Access.

Definition at line 144 of file binaryNode.H.

References binaryNode< CompType, ThermoType >::leafLeft_.

Referenced by binaryTree< CompType, ThermoType >::binaryTreeSearch(), and binaryTree< CompType, ThermoType >::treeMin().

Here is the caller graph for this function:

◆ leafRight()

chemPointISAT< CompType, ThermoType > *& leafRight ( )
inline

Definition at line 149 of file binaryNode.H.

References binaryNode< CompType, ThermoType >::leafRight_.

Referenced by binaryTree< CompType, ThermoType >::binaryTreeSearch().

Here is the caller graph for this function:

◆ nodeLeft()

binaryNode< CompType, ThermoType > *& nodeLeft ( )
inline

Definition at line 154 of file binaryNode.H.

References binaryNode< CompType, ThermoType >::nodeLeft_.

Referenced by binaryTree< CompType, ThermoType >::binaryTreeSearch(), binaryTree< CompType, ThermoType >::depth(), and binaryTree< CompType, ThermoType >::treeMin().

Here is the caller graph for this function:

◆ nodeRight()

binaryNode< CompType, ThermoType > *& nodeRight ( )
inline

Definition at line 159 of file binaryNode.H.

References binaryNode< CompType, ThermoType >::nodeRight_.

Referenced by binaryTree< CompType, ThermoType >::binaryTreeSearch(), and binaryTree< CompType, ThermoType >::depth().

Here is the caller graph for this function:

◆ parent()

binaryNode< CompType, ThermoType > *& parent ( )
inline

Definition at line 164 of file binaryNode.H.

References binaryNode< CompType, ThermoType >::parent_.

Referenced by binaryTree< CompType, ThermoType >::deleteLeaf().

Here is the caller graph for this function:

◆ v() [1/2]

const scalarField & v ( ) const
inline

Topology.

Definition at line 171 of file binaryNode.H.

References binaryNode< CompType, ThermoType >::v_.

Referenced by binaryTree< CompType, ThermoType >::binaryTreeSearch().

Here is the caller graph for this function:

◆ v() [2/2]

scalarField & v ( )
inline

Definition at line 176 of file binaryNode.H.

References binaryNode< CompType, ThermoType >::v_.

◆ a() [1/2]

const scalar & a ( ) const
inline

Definition at line 181 of file binaryNode.H.

References binaryNode< CompType, ThermoType >::a_.

Referenced by binaryTree< CompType, ThermoType >::binaryTreeSearch().

Here is the caller graph for this function:

◆ a() [2/2]

scalar & a ( )
inline

Definition at line 186 of file binaryNode.H.

References binaryNode< CompType, ThermoType >::a_.

Member Data Documentation

◆ leafLeft_

chemPointISAT<CompType, ThermoType>* leafLeft_

Element on the left.

Definition at line 57 of file binaryNode.H.

Referenced by binaryNode< CompType, ThermoType >::leafLeft().

◆ leafRight_

chemPointISAT<CompType, ThermoType>* leafRight_

Element on the right.

Definition at line 60 of file binaryNode.H.

Referenced by binaryNode< CompType, ThermoType >::leafRight().

◆ nodeLeft_

binaryNode<CompType, ThermoType>* nodeLeft_

Node which follows on the left.

Definition at line 63 of file binaryNode.H.

Referenced by binaryNode< CompType, ThermoType >::nodeLeft().

◆ nodeRight_

binaryNode<CompType, ThermoType>* nodeRight_

Node which follows on the right.

Definition at line 66 of file binaryNode.H.

Referenced by binaryNode< CompType, ThermoType >::nodeRight().

◆ parent_

binaryNode<CompType, ThermoType>* parent_

Parent node.

Definition at line 69 of file binaryNode.H.

Referenced by binaryNode< CompType, ThermoType >::parent().

◆ nAdditionalEqns_

label nAdditionalEqns_

Number of equations in addition to the species eqs.

Definition at line 72 of file binaryNode.H.

Referenced by binaryNode< CompType, ThermoType >::binaryNode().

◆ v_

◆ a_


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