ENH: Refactored TimeFunction1 - now possible using Function1 directly

This commit is contained in:
Andrew Heather
2021-10-13 21:30:46 +01:00
committed by Mark Olesen
parent b9b011f5ea
commit f29eb55cee
9 changed files with 27 additions and 6 deletions

View File

@ -42,7 +42,8 @@ Foam::TimeFunction1<Type>::TimeFunction1
name_(entryName),
entry_(Function1<Type>::New(entryName, dict, &runTime))
{
entry_->convertTimeBase(runTime);
// Time conversion now handled by Function1 directly
// entry_->convertTimeBase(runTime);
}