Go to the documentation of this file.
35 lduMatrix::smoother::addsymMatrixConstructorToTable<DICSmoother>
44 const word& fieldName,
61 DICPreconditioner::calcReciprocalD(rD_, matrix_);
75 const scalar*
const __restrict__ rDPtr = rD_.begin();
76 const scalar*
const __restrict__ upperPtr = matrix_.upper().begin();
77 const label*
const __restrict__ uPtr =
78 matrix_.lduAddr().upperAddr().begin();
79 const label*
const __restrict__ lPtr =
80 matrix_.lduAddr().lowerAddr().begin();
84 scalar* __restrict__ rAPtr = rA.begin();
100 label nFaces = matrix_.upper().size();
101 for (
label facei=0; facei<nFaces; facei++)
103 label u = uPtr[facei];
104 rAPtr[u] -= rDPtr[u]*upperPtr[facei]*rAPtr[lPtr[facei]];
107 label nFacesM1 = nFaces - 1;
108 for (
label facei=nFacesM1; facei>=0; facei--)
110 label l = lPtr[facei];
111 rAPtr[l] -= rDPtr[l]*upperPtr[facei]*rAPtr[uPtr[facei]];
A class for handling words, derived from string.
lduMatrix is a general matrix class in which the coefficients are stored as three arrays,...
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Pre-declare SubField and related Field type.
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
lduMatrix::smoother::addsymMatrixConstructorToTable< DICSmoother > addDICSmootherSymMatrixConstructorToTable_
Abstract base-class for lduMatrix smoothers.
void smooth(scalarField &psi, const scalarField &source, const direction cmpt, const label nSweeps) const
Smooth the solution for a given number of sweeps.
const volScalarField & psi
DICSmoother(const word &fieldName, const lduMatrix &matrix, const FieldField< Field, scalar > &interfaceBouCoeffs, const FieldField< Field, scalar > &interfaceIntCoeffs, const lduInterfaceFieldPtrsList &interfaces)
Construct from matrix components.
defineTypeNameAndDebug(combustionModel, 0)
void sweep(volScalarField &field, const volScalarField &alpha, const label nLayers, const scalar alphaDiff=0.2)