mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG. FaceCellWave. If propagationTol is a *const* scalar then
setPropagationTol cannot be called.
This commit is contained in:
@ -40,7 +40,7 @@ template <class Type>
|
|||||||
const Foam::scalar Foam::FaceCellWave<Type>::geomTol_ = 1e-6;
|
const Foam::scalar Foam::FaceCellWave<Type>::geomTol_ = 1e-6;
|
||||||
|
|
||||||
template <class Type>
|
template <class Type>
|
||||||
const Foam::scalar Foam::FaceCellWave<Type>::propagationTol_ = 0.01;
|
Foam::scalar Foam::FaceCellWave<Type>::propagationTol_ = 0.01;
|
||||||
|
|
||||||
// Write to ostream
|
// Write to ostream
|
||||||
template <class Type>
|
template <class Type>
|
||||||
|
|||||||
@ -252,7 +252,7 @@ class FaceCellWave
|
|||||||
// Private static data
|
// Private static data
|
||||||
|
|
||||||
static const scalar geomTol_;
|
static const scalar geomTol_;
|
||||||
static const scalar propagationTol_;
|
static scalar propagationTol_;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user