35 lduMatrix::smoother::addsymMatrixConstructorToTable<FDICSmoother>
44 const word& fieldName,
60 rDuUpper_(matrix_.upper().size()),
61 rDlUpper_(matrix_.upper().size())
63 scalar* __restrict__ rDPtr = rD_.begin();
64 scalar* __restrict__ rDuUpperPtr = rDuUpper_.begin();
65 scalar* __restrict__ rDlUpperPtr = rDlUpper_.begin();
67 const label*
const __restrict__ uPtr =
68 matrix_.lduAddr().upperAddr().begin();
69 const label*
const __restrict__ lPtr =
70 matrix_.lduAddr().lowerAddr().begin();
71 const scalar*
const __restrict__ upperPtr =
72 matrix_.upper().begin();
74 label nCells = rD_.size();
75 label nFaces = matrix_.upper().size();
79 rDPtr[uPtr[
face]] -=
sqr(upperPtr[
face])/rDPtr[lPtr[face]];
106 const scalar*
const __restrict__ rDuUpperPtr = rDuUpper_.begin();
107 const scalar*
const __restrict__ rDlUpperPtr = rDlUpper_.begin();
109 const label*
const __restrict__ uPtr =
110 matrix_.lduAddr().upperAddr().begin();
111 const label*
const __restrict__ lPtr =
112 matrix_.lduAddr().lowerAddr().begin();
116 scalar* __restrict__ rAPtr = rA.
begin();
132 label nFaces = matrix_.upper().size();
135 rAPtr[uPtr[
face]] -= rDuUpperPtr[
face]*rAPtr[lPtr[
face]];
138 label nFacesM1 = nFaces - 1;
141 rAPtr[lPtr[
face]] -= rDlUpperPtr[
face]*rAPtr[uPtr[
face]];
lduMatrix::smoother::addsymMatrixConstructorToTable< FDICSmoother > addFDICSmootherSymMatrixConstructorToTable_
A face is a list of labels corresponding to mesh vertices.
dimensionedSymmTensor sqr(const dimensionedVector &dv)
FDICSmoother(const word &fieldName, const lduMatrix &matrix, const FieldField< Field, scalar > &interfaceBouCoeffs, const FieldField< Field, scalar > &interfaceIntCoeffs, const lduInterfaceFieldPtrsList &interfaces)
Construct from matrix components.
void sweep(volScalarField &field, const volScalarField &alpha, const label nLayers, const scalar alphaDiff=0.2)
Abstract base-class for lduMatrix smoothers.
A class for handling words, derived from string.
iterator begin()
Return an iterator to begin traversing the UList.
defineTypeNameAndDebug(combustionModel, 0)
lduMatrix is a general matrix class in which the coefficients are stored as three arrays...
A cell is defined as a list of faces with extra functionality.
void smooth(scalarField &psi, const scalarField &source, const direction cmpt, const label nSweeps) const
Smooth the solution for a given number of sweeps.