33template<
class Type,
class DType,
class LUType>
34Foam::PBiCICG<Type, DType, LUType>::PBiCICG
52template<
class Type,
class DType,
class LUType>
56 const word preconditionerName(this->controlDict_.getWord(
"preconditioner"));
67 label nCells =
psi.size();
69 Type* __restrict__ psiPtr =
psi.begin();
72 Type* __restrict__ pAPtr = pA.begin();
75 Type* __restrict__ pTPtr = pT.begin();
78 Type* __restrict__ wAPtr = wA.begin();
81 Type* __restrict__ wTPtr = wT.begin();
87 this->matrix_.Amul(wA,
psi);
88 this->matrix_.Tmul(wT,
psi);
93 Type* __restrict__ rAPtr = rA.begin();
94 Type* __restrict__ rTPtr = rT.begin();
97 Type normFactor = this->normFactor(
psi, wA, pA);
101 Info<<
" Normalisation factor = " << normFactor <<
endl;
105 solverPerf.initialResidual() = cmptDivide(gSumCmptMag(rA), normFactor);
106 solverPerf.finalResidual() = solverPerf.initialResidual();
111 !solverPerf.checkConvergence
120 autoPtr<typename LduMatrix<Type, DType, LUType>::preconditioner>
121 preconPtr = LduMatrix<Type, DType, LUType>::preconditioner::New
134 preconPtr->precondition(wA, rA);
135 preconPtr->preconditionT(wT, rT);
138 wArT = gSumCmptProd(wA, rT);
142 for (label cell=0; cell<nCells; cell++)
144 pAPtr[cell] = wAPtr[cell];
145 pTPtr[cell] = wTPtr[cell];
156 for (label cell=0; cell<nCells; cell++)
165 this->matrix_.Amul(wA, pA);
166 this->matrix_.Tmul(wT, pT);
173 solverPerf.checkSingularity
191 for (label cell=0; cell<nCells; cell++)
198 solverPerf.finalResidual() =
203 nIter++ < this->maxIter_
204 && !solverPerf.checkConvergence
213 solverPerf.nIterations() =
214 pTraits<typename pTraits<Type>::labelType>::one*nIter;
Generic templated field type that is much like a Foam::List except that it is expected to hold numeri...
static autoPtr< preconditioner > New(const solver &sol, const dictionary &preconditionerDict)
Return a new preconditioner.
label maxIter_
Maximum number of iterations in the solver.
solver(const word &fieldName, const LduMatrix< Type, DType, LUType > &matrix, const dictionary &solverDict)
Construct for given field name, matrix and controls.
const LduMatrix< Type, DType, LUType > & matrix() const noexcept
Type normFactor(const Field< Type > &psi, const Field< Type > &Apsi, Field< Type > &tmpField, const lduMatrix::normTypes normType) const
Return the matrix norm using the specified norm method.
int log_
Verbosity level for solver output statements.
const LduMatrix< Type, DType, LUType > & matrix_
dictionary controlDict_
Dictionary of solution controls.
const word & fieldName() const noexcept
LduMatrix is a general matrix class in which the coefficients are stored as three arrays,...
virtual SolverPerformance< Type > solve(Field< Type > &psi) const
Solve the matrix with this solver.
iterator begin() noexcept
Return an iterator to begin traversing the UList.
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 and vector-space.
A class for handling words, derived from Foam::string.
const volScalarField & psi
dimensioned< Type > cmptDivide(const dimensioned< Type > &, const dimensioned< Type > &)
messageStream Info
Information stream (stdout output on master, null elsewhere).
const word GlobalIOList< Tuple2< scalar, vector > >::typeName("scalarVectorTable")
Ostream & endl(Ostream &os)
Add newline and flush stream.
dimensionedScalar stabilise(const dimensionedScalar &x, const dimensionedScalar &y)
static constexpr const zero Zero
Global zero (0).
dimensioned< Type > cmptMultiply(const dimensioned< Type > &, const dimensioned< Type > &)
void cmptMag(FieldField< Field, Type > &cf, const FieldField< Field, Type > &f)
Type gSumCmptMag(const UList< Type > &f, const label comm)
Type gSumCmptProd(const UList< Type > &f1, const UList< Type > &f2, const label comm)
dimensionedScalar beta("beta", dimless/dimTemperature, laminarTransport)