Skip to content
Snippets Groups Projects
Commit 39c23154 authored by Kilian Weishaupt's avatar Kilian Weishaupt Committed by Timo Koch
Browse files

[staggeredGrid][localJacobian] Remove superfluous output

*Remove output of matrix
parent 92d7f5a1
No related branches found
No related tags found
2 merge requests!617[WIP] Next,!390Feature/staggered components
......@@ -295,7 +295,6 @@ private:
// update the global jacobian matrix with the current partial derivatives
this->updateGlobalJacobian_(matrix[cellCenterIdx][cellCenterIdx], ccGlobalI_, globalJ, pvIdx, partialDeriv);
// printmatrix(std::cout,matrix[cellCenterIdx][cellCenterIdx], "part", "");
// restore the original volVars
curVolVars = origVolVars;
}
......@@ -328,6 +327,7 @@ private:
for(auto pvIdx : PriVarIndices(faceIdx))
{
PrimaryVariables priVars(CellCenterPrimaryVariables(0.0), FacePrimaryVariables(this->model_().curSol()[faceIdx][globalJ]));
const Scalar eps = numericEpsilon(priVars[pvIdx], cellCenterIdx, faceIdx);
priVars[pvIdx] += eps;
curFaceVars.update(priVars[faceIdx]);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment