timeVaryingMappedFixedValue: Reinstated support for AverageField

This commit is contained in:
Henry Weller
2016-07-01 10:26:20 +01:00
parent 08e941dccb
commit a623ab42a3
14 changed files with 302 additions and 372 deletions

View File

@ -27,6 +27,18 @@ License
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template<class Type>
Foam::Function1Types::Constant<Type>::Constant
(
const word& entryName,
const Type& val
)
:
Function1<Type>(entryName),
value_(val)
{}
template<class Type>
Foam::Function1Types::Constant<Type>::Constant
(

View File

@ -78,6 +78,9 @@ public:
// Constructors
//- Construct from entry name and value
Constant(const word& entryName, const Type& val);
//- Construct from entry name and dictionary
Constant(const word& entryName, const dictionary& dict);