timeStepFunctionObject.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2020-2021 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 #include "timeStepFunctionObject.H"
27 #include "Time.H"
29 
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 
32 namespace Foam
33 {
34 namespace functionObjects
35 {
36  defineTypeNameAndDebug(timeStep, 0);
37 
39  (
40  functionObject,
41  timeStep,
42  dictionary
43  );
44 }
45 }
46 
47 
48 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
49 
51 (
52  const word& name,
53  const Time& runTime,
54  const dictionary& dict
55 )
56 :
57  regionFunctionObject(name, runTime, dict),
58  logFiles(obr_, name)
59 {
60  read(dict);
61 }
62 
63 
64 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
65 
67 {}
68 
69 
70 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
71 
73 {
75 
76  resetName(typeName);
77 
78  return true;
79 }
80 
81 
83 {
84  if (Pstream::master())
85  {
86  writeHeader(file(), "Time step");
87  writeCommented(file(), "Time");
88 
89  file() << tab << "deltaT";
90 
91  file() << endl;
92  }
93 }
94 
95 
97 {
98  return true;
99 }
100 
101 
103 {
104  logFiles::write();
105 
106  if (Pstream::master())
107  {
108  writeTime(file());
109 
110  file() << tab << obr_.time().deltaTValue();
111 
112  file() << endl;
113  }
114 
115  return true;
116 }
117 
118 
119 // ************************************************************************* //
Specialisation of Foam::functionObject for a region and providing a reference to the region Foam::obj...
virtual bool write()
Write function.
Definition: logFiles.C:167
static const char tab
Definition: Ostream.H:259
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:156
addToRunTimeSelectionTable(functionObject, Qdot, dictionary)
virtual void writeFileHeader(const label i)
Output file header information.
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
static bool master(const label communicator=0)
Am I the master process.
Definition: UPstream.H:423
Class to control time during OpenFOAM simulations that is also the top-level objectRegistry.
Definition: Time.H:69
Macros for easy insertion into run-time selection tables.
virtual bool write()
Write the time step value.
bool read(const char *, int32_t &)
Definition: int32IO.C:85
timeStep(const word &name, const Time &runTime, const dictionary &dict)
Construct from Time and dictionary.
void writeHeader(std::ostream &, const bool isBinary, const std::string &title)
Write header.
A class for handling words, derived from string.
Definition: word.H:59
virtual bool read(const dictionary &)
Read and set the functionObject if its data have changed.
defineTypeNameAndDebug(Qdot, 0)
virtual bool execute()
Execute, currently does nothing.
virtual bool read(const dictionary &)
Read the controls.
Namespace for OpenFOAM.
functionObject base class for creating, maintaining and writing log files e.g. integrated of averaged...
Definition: logFiles.H:57