Merge remote-tracking branch 'origin/feature/overlapGgi' into nextRelease
Conflicts: src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/LimitedScheme/NVDTVD.H src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/LimitedScheme/NVDVTVDV.H src/finiteVolume/interpolation/surfaceInterpolation/limitedSchemes/vanAlbada/vanAlbada.H
This commit is contained in:
commit
090c07f3a7
4 changed files with 9 additions and 6 deletions
8
.gitignore
vendored
8
.gitignore
vendored
|
@ -149,4 +149,12 @@ src/lduSolvers/amg/amgPolicy/samgPolicy.H
|
|||
src/lduSolvers/amg/amgPolicy/aamgPolicy.C
|
||||
src/lduSolvers/amg/amgPolicy/aamgPolicy.H
|
||||
|
||||
# The following files are blacklisted because of a DMCA complaint by ANSYS.
|
||||
src/lduSolvers/tools/PriorityArray.C
|
||||
src/lduSolvers/tools/PriorityArray.H
|
||||
src/lduSolvers/amg/amgPolicy/samgPolicy.C
|
||||
src/lduSolvers/amg/amgPolicy/samgPolicy.H
|
||||
src/lduSolvers/amg/amgPolicy/aamgPolicy.C
|
||||
src/lduSolvers/amg/amgPolicy/aamgPolicy.H
|
||||
|
||||
# end-of-file
|
||||
|
|
|
@ -119,8 +119,6 @@ public:
|
|||
// New formulation. Oliver Borm and Aleks Jemcov
|
||||
// HJ, 13/Jan/2011
|
||||
return max(2*(gradcf/gradf) - 1, 0);
|
||||
|
||||
// return 2*(gradcf/gradf) - 1;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -120,8 +120,6 @@ public:
|
|||
// New formulation. Oliver Borm and Aleks Jemcov
|
||||
// HJ, 13/Jan/2011
|
||||
return max(2*(gradcf/gradf) - 1, 0);
|
||||
|
||||
// return 2*(gradcf/gradf) - 1;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -80,9 +80,8 @@ public:
|
|||
|
||||
// New formulation. Oliver Borm and Aleks Jemcov
|
||||
// HJ, 13/Jan/2011
|
||||
return (r + 1)/(r + 1/stabilise(r, VSMALL));
|
||||
return max((r + 1)/(r + 1/stabilise(r, SMALL)), 0);
|
||||
|
||||
// return r*(r + 1)/(sqr(r) + 1);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Reference in a new issue