You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* compute dispersion jacobian blocks(without parameters except element spacing, i.e. static entries) */
149
-
// we only need unique dispersion blocks, which are given by cells 1, 2, nCol for inexact integration DG and by cells 1, 2, 3, nCol-1, nCol for eaxct integration DG
149
+
// we only need unique dispersion blocks, which are given by cells 1, 2, nElem for inexact integration DG and by cells 1, 2, 3, nElem-1, nElem for eaxct integration DG
150
150
if (firstConfigCall)
151
151
_DGjacAxDispBlocks = new Eigen::MatrixXd[(_exactInt ? std::min(_nCells, 5u) : std::min(_nCells, 3u))];
152
152
_DGjacAxDispBlocks[0] = DGjacobianDispBlock(1);
@@ -725,7 +725,7 @@ int ConvectionDispersionOperatorDG<Operator>::requiredADdirs() const CADET_NOEXC
725
725
* @param [in] paramProvider Parameter provider for reading parameters
726
726
* @param [out] parameters Map in which local parameters are inserted
727
727
* @param [in] nComp Number of components
728
-
* @param [in] nCol Number of axial cells
728
+
* @param [in] nElem Number of axial cells
729
729
* @return @c true if configuration went fine, @c false otherwise
0 commit comments