38 lduMatrix::preconditioner::
39 addsymMatrixConstructorToTable<FDICPreconditioner>
46 Foam::FDICPreconditioner::FDICPreconditioner
53 rD_(sol.matrix().
diag().size()),
54 rDuUpper_(sol.matrix().
upper().size()),
55 rDlUpper_(sol.matrix().
upper().size())
58 std::copy(
diag.begin(),
diag.end(), rD_.begin());
60 solveScalar* __restrict__ rDPtr = rD_.begin();
61 solveScalar* __restrict__ rDuUpperPtr = rDuUpper_.begin();
62 solveScalar* __restrict__ rDlUpperPtr = rDlUpper_.begin();
64 const label*
const __restrict__ uPtr =
66 const label*
const __restrict__ lPtr =
68 const scalar*
const __restrict__ upperPtr =
71 const label nCells = rD_.size();
80 for (label cell=0; cell<nCells; cell++)
82 rDPtr[cell] = 1.0/rDPtr[cell];
85 for (label face=0; face<nFaces; face++)
87 rDuUpperPtr[face] = rDPtr[uPtr[face]]*upperPtr[face];
88 rDlUpperPtr[face] = rDPtr[lPtr[face]]*upperPtr[face];
102 solveScalar* __restrict__ wAPtr = wA.begin();
103 const solveScalar* __restrict__ rAPtr = rA.begin();
104 const solveScalar* __restrict__ rDPtr = rD_.begin();
106 const label*
const __restrict__ uPtr =
107 solver_.matrix().lduAddr().upperAddr().begin();
108 const label*
const __restrict__ lPtr =
109 solver_.matrix().lduAddr().lowerAddr().begin();
111 const solveScalar*
const __restrict__ rDuUpperPtr = rDuUpper_.begin();
112 const solveScalar*
const __restrict__ rDlUpperPtr = rDlUpper_.begin();
114 const label nCells = wA.size();
115 const label nFaces = solver_.matrix().upper().size();
116 const label nFacesM1 = nFaces - 1;
118 for (label cell=0; cell<nCells; cell++)
120 wAPtr[cell] = rDPtr[cell]*rAPtr[cell];
123 for (label face=0; face<nFaces; face++)
125 wAPtr[uPtr[face]] -= rDuUpperPtr[face]*wAPtr[lPtr[face]];
128 for (label face=nFacesM1; face>=0; face--)
130 wAPtr[lPtr[face]] -= rDlUpperPtr[face]*wAPtr[uPtr[face]];