mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: FaceCellWave::propagationTol_ was const
This commit is contained in:
@ -36,12 +36,10 @@ License
|
|||||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||||
|
|
||||||
template <class Type, class TrackingData>
|
template <class Type, class TrackingData>
|
||||||
const Foam::scalar
|
const Foam::scalar Foam::FaceCellWave<Type, TrackingData>::geomTol_ = 1e-6;
|
||||||
Foam::FaceCellWave<Type, TrackingData>::geomTol_ = 1e-6;
|
|
||||||
|
|
||||||
template <class Type, class TrackingData>
|
template <class Type, class TrackingData>
|
||||||
const Foam::scalar
|
Foam::scalar Foam::FaceCellWave<Type, TrackingData>::propagationTol_ = 0.01;
|
||||||
Foam::FaceCellWave<Type, TrackingData>::propagationTol_ = 0.01;
|
|
||||||
|
|
||||||
template <class Type, class TrackingData>
|
template <class Type, class TrackingData>
|
||||||
Foam::label Foam::FaceCellWave<Type, TrackingData>::dummyTrackData_ = 12345;
|
Foam::label Foam::FaceCellWave<Type, TrackingData>::dummyTrackData_ = 12345;
|
||||||
@ -969,4 +967,5 @@ Foam::label Foam::FaceCellWave<Type, TrackingData>::iterate(const label maxIter)
|
|||||||
return nUnvisitedCells_;
|
return nUnvisitedCells_;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -232,7 +232,7 @@ class FaceCellWave
|
|||||||
// Private static data
|
// Private static data
|
||||||
|
|
||||||
static const scalar geomTol_;
|
static const scalar geomTol_;
|
||||||
static const scalar propagationTol_;
|
static scalar propagationTol_;
|
||||||
|
|
||||||
//- Used as default trackdata value to satisfy default template
|
//- Used as default trackdata value to satisfy default template
|
||||||
// argument.
|
// argument.
|
||||||
|
|||||||
Reference in New Issue
Block a user