timeVaryingMappedFixedValue: Reinstated support for AverageField

This commit is contained in:
Henry Weller
2016-07-01 10:26:20 +01:00
parent e78e346781
commit adc816a85d
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
(