38 lduMatrix::solver::addsymMatrixConstructorToTable<PCG>
47 const word& fieldName,
83 label nCells =
psi.size();
85 solveScalar* __restrict__ psiPtr =
psi.begin();
88 solveScalar* __restrict__ pAPtr = pA.begin();
91 solveScalar* __restrict__ wAPtr = wA.begin();
93 solveScalar wArA = solverPerf.great_;
94 solveScalar wArAold = wArA;
97 matrix_.Amul(wA,
psi, interfaceBouCoeffs_, interfaces_, cmpt);
101 solveScalar* __restrict__ rAPtr = rA.begin();
103 matrix().setResidualField
111 solveScalar normFactor = this->normFactor(
psi, source, wA, pA);
113 if ((log_ >= 2) || (lduMatrix::debug >= 2))
115 Info<<
" Normalisation factor = " << normFactor <<
endl;
119 solverPerf.initialResidual() =
122 solverPerf.finalResidual() = solverPerf.initialResidual();
128 || !solverPerf.checkConvergence(tolerance_, relTol_, log_)
148 preconPtr_->precondition(wA, rA, cmpt);
153 if (solverPerf.nIterations() == 0)
162 const solveScalar
beta = wArA/wArAold;
172 matrix_.Amul(wA, pA, interfaceBouCoeffs_, interfaces_, cmpt);
174 solveScalar wApA =
gSumProd(wA, pA, matrix().
mesh().comm());
177 if (solverPerf.checkSingularity(
mag(wApA)/normFactor))
break;
182 const solveScalar
alpha = wArA/wApA;
190 solverPerf.finalResidual() =
197 ++solverPerf.nIterations() < maxIter_
198 && !solverPerf.checkConvergence(tolerance_, relTol_, log_)
200 || solverPerf.nIterations() < minIter_
206 preconPtr_->setFinished(solverPerf);
209 matrix().setResidualField
A const Field/List wrapper with possible data conversion.
A field of fields is a PtrList of fields with reference counting.
Preconditioned conjugate gradient solver for symmetric lduMatrices using a run-time selectable precon...
virtual solverPerformance scalarSolve(solveScalarField &psi, const solveScalarField &source, const direction cmpt=0) const
Solve the matrix with this solver.
virtual solverPerformance solve(scalarField &psi, const scalarField &source, const direction cmpt=0) const
Solve the matrix with this solver.
A non-const Field/List wrapper with possible data conversion.
iterator begin() noexcept
Return an iterator to begin traversing the UList.
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,...
static autoPtr< preconditioner > New(const solver &sol, const dictionary &solverControls)
Return a new preconditioner.
static word getName(const dictionary &)
Find the preconditioner name (directly or from a sub-dictionary).
const FieldField< Field, scalar > & interfaceIntCoeffs() const noexcept
const lduMatrix & matrix_
label maxIter_
Maximum number of iterations in the solver.
solver(const word &fieldName, const lduMatrix &matrix, const FieldField< Field, scalar > &interfaceBouCoeffs, const FieldField< Field, scalar > &interfaceIntCoeffs, const lduInterfaceFieldPtrsList &interfaces, const dictionary &solverControls)
Construct solver for given field name, matrix etc.
scalar tolerance_
Final convergence tolerance.
const lduInterfaceFieldPtrsList & interfaces() const noexcept
lduInterfaceFieldPtrsList interfaces_
const FieldField< Field, scalar > & interfaceBouCoeffs_
label minIter_
Minimum number of iterations in the solver.
const lduMatrix & matrix() const noexcept
solveScalarField::cmptType normFactor(const solveScalarField &psi, const solveScalarField &source, const solveScalarField &Apsi, solveScalarField &tmpField, const lduMatrix::normTypes normType) const
Return the matrix norm using the specified norm method.
int log_
Verbosity level for solver output statements.
scalar relTol_
Convergence tolerance relative to the initial.
const FieldField< Field, scalar > & interfaceBouCoeffs() const noexcept
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,...
T & ref() const
Return non-const reference to the contents of a non-null managed pointer.
A class for handling words, derived from Foam::string.
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
const volScalarField & psi
scalarProduct< Type, Type >::type gSumProd(const UList< Type > &f1, const UList< Type > &f2, const label comm)
messageStream Info
Information stream (stdout output on master, null elsewhere).
Field< scalar > scalarField
Specialisation of Field<T> for scalar.
const word GlobalIOList< Tuple2< scalar, vector > >::typeName("scalarVectorTable")
Ostream & endl(Ostream &os)
Add newline and flush stream.
dimensioned< typename typeOfMag< Type >::type > mag(const dimensioned< Type > &dt)
Field< solveScalar > solveScalarField
typeOfMag< Type >::type gSumMag(const FieldField< Field, Type > &f)
UPtrList< const lduInterfaceField > lduInterfaceFieldPtrsList
List of coupled interface fields to be used in coupling.
SolverPerformance< scalar > solverPerformance
SolverPerformance instantiated for a scalar.
lduMatrix::solver::addsymMatrixConstructorToTable< PCG > addPCGSymMatrixConstructorToTable_
dimensionedScalar beta("beta", dimless/dimTemperature, laminarTransport)