33template<
class Type,
class DType,
class LUType>
34Foam::PCICG<Type, DType, LUType>::PCICG
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__ wAPtr = wA.begin();
81 this->matrix_.Amul(wA,
psi);
85 Type* __restrict__ rAPtr = rA.begin();
88 Type normFactor = this->normFactor(
psi, wA, pA);
92 Info<<
" Normalisation factor = " << normFactor <<
endl;
96 solverPerf.initialResidual() = cmptDivide(gSumCmptMag(rA), normFactor);
97 solverPerf.finalResidual() = solverPerf.initialResidual();
103 || !solverPerf.checkConvergence
112 autoPtr<typename LduMatrix<Type, DType, LUType>::preconditioner>
113 preconPtr = LduMatrix<Type, DType, LUType>::preconditioner::New
126 preconPtr->precondition(wA, rA);
129 wArA = gSumCmptProd(wA, rA);
133 for (label cell=0; cell<nCells; cell++)
135 pAPtr[cell] = wAPtr[cell];
146 for (label cell=0; cell<nCells; cell++)
154 this->matrix_.Amul(wA, pA);
162 solverPerf.checkSingularity
180 for (label cell=0; cell<nCells; cell++)
186 solverPerf.finalResidual() =
192 nIter++ < this->maxIter_
193 && !solverPerf.checkConvergence
200 || nIter < this->minIter_
204 solverPerf.nIterations() =
205 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.
label minIter_
Minimum number of iterations in the solver.
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)
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)