@@ -78,7 +78,7 @@ class fieldsDataBase
7878 anyList allFields_;
7979
8080 // / Map to store the last capture time of each field
81- wordMap<timeValue > captureTime_;
81+ wordMap<TimeValueType > captureTime_;
8282
8383 // / Reference to the Time object
8484 Time& time_;
@@ -178,7 +178,7 @@ class fieldsDataBase
178178 systemControl& control,
179179 const dictionary& postDict,
180180 bool inSimulation,
181- timeValue startTime);
181+ TimeValueType startTime);
182182
183183 // / no copy constructor
184184 fieldsDataBase (const fieldsDataBase&) = delete ;
@@ -203,15 +203,15 @@ class fieldsDataBase
203203 systemControl& control,
204204 const dictionary& postDict,
205205 bool inSimulation,
206- timeValue startTime
206+ TimeValueType startTime
207207 ),
208208 (control, postDict, inSimulation, startTime)
209209 );
210210
211211
212212 // - Public Access Functions
213213 // / returns the current time
214- timeValue currentTime ()const ;
214+ TimeValueType currentTime ()const ;
215215
216216 // / const ref to object Time
217217 const Time& time ()const
@@ -282,7 +282,7 @@ class fieldsDataBase
282282 // / Get the next avaiable time folder after the current time folder
283283 // / This is only used for post-simulation processing
284284 virtual
285- timeValue getNextTimeFolder ()const
285+ TimeValueType getNextTimeFolder ()const
286286 {
287287 return -1.0 ;
288288 }
@@ -291,7 +291,7 @@ class fieldsDataBase
291291 // / This is used only for post-simulation processing
292292 // / @returns the time value of the next folder.
293293 virtual
294- timeValue setToNextTimeFolder ()
294+ TimeValueType setToNextTimeFolder ()
295295 {
296296 return -1.0 ;
297297 }
@@ -300,7 +300,7 @@ class fieldsDataBase
300300 // / This is used only for post-simulation processing
301301 // / @returns the time value of the skipped folder
302302 virtual
303- timeValue skipNextTimeFolder ()
303+ TimeValueType skipNextTimeFolder ()
304304 {
305305 return -1.0 ;
306306 }
@@ -316,7 +316,7 @@ class fieldsDataBase
316316 systemControl& control,
317317 const dictionary& postDict,
318318 bool inSimulation,
319- timeValue startTime);
319+ TimeValueType startTime);
320320};
321321
322322} // namespace pFlow::postprocessData
0 commit comments