33template<
class Type,
class DType,
class LUType>
36 const word& fieldName,
52template<
class Type,
class DType,
class LUType>
59 const word preconditionerName(this->controlDict_.getWord(
"preconditioner"));
64 preconditionerName + typeName,
72 Type* __restrict__ psiPtr =
psi.
begin();
75 Type* __restrict__ pAPtr = pA.
begin();
78 Type* __restrict__ pTPtr = pT.
begin();
81 Type* __restrict__ wAPtr = wA.
begin();
84 Type* __restrict__ wTPtr = wT.
begin();
87 scalar wArTold = wArT;
90 this->matrix_.Amul(wA,
psi);
91 this->matrix_.Tmul(wT,
psi);
96 Type* __restrict__ rAPtr = rA.
begin();
97 Type* __restrict__ rTPtr = rT.
begin();
100 Type normFactor = this->normFactor(
psi, wA, pA);
104 Info<<
" Normalisation factor = " << normFactor <<
endl;
138 preconPtr->precondition(wA, rA);
139 preconPtr->preconditionT(wT, rT);
154 scalar
beta = wArT/wArTold;
165 this->matrix_.Amul(wA, pA);
166 this->matrix_.Tmul(wT, pT);
185 scalar
alpha = wArT/wApT;
200 nIter++ < this->maxIter_
208 || nIter < this->minIter_
Generic templated field type.
LduMatrix is a general matrix class in which the coefficients are stored as three arrays,...
Preconditioned bi-conjugate gradient solver for asymmetric lduMatrices using a run-time selectable pr...
static autoPtr< Time > New()
Construct (dummy) Time - no functionObjects or libraries.
iterator begin() noexcept
Return an iterator to begin traversing the UList.
void size(const label n)
Older name for setAddressableSize.
Pointer management similar to std::unique_ptr, with some additional methods and type checking.
A cell is defined as a list of faces with extra functionality.
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
A class representing the concept of 1 (one) that can be used to avoid manipulating objects known to b...
A traits class, which is primarily used for primitives.
Base class for solution control classes.
A class for handling words, derived from Foam::string.
const volScalarField & psi
scalarProduct< Type, Type >::type gSumProd(const UList< Type > &f1, const UList< Type > &f2, const label comm)
dimensioned< Type > cmptDivide(const dimensioned< Type > &, const dimensioned< Type > &)
messageStream Info
Information stream (stdout output on master, null elsewhere)
Ostream & endl(Ostream &os)
Add newline and flush stream.
dimensioned< typename typeOfMag< Type >::type > mag(const dimensioned< Type > &dt)
static constexpr const zero Zero
Global zero (0)
Type gSumCmptMag(const UList< Type > &f, const label comm)
dimensionedScalar beta("beta", dimless/dimTemperature, laminarTransport)