clean up whitespaces [ci skip]

This commit is contained in:
danielque
2021-12-06 13:13:12 +01:00
parent 497ddb3120
commit 2b5fba4ece
3 changed files with 31 additions and 31 deletions

View File

@ -1,6 +1,6 @@
/*---------------------------------------------------------------------------*\
CFDEMcoupling academic - Open Source CFD-DEM coupling
Contributing authors:
Thomas Lichtenegger, Gerhard Holzinger, Sanaz Abbasi
Copyright (C) 2015- Johannes Kepler University, Linz
@ -29,11 +29,11 @@ Description
for a solver based on recurrence statistics
Rules
Solution data to compute the recurrence statistics from, needs to
reside in $CASE_ROOT/dataBase(0...N)
Solution data to compute the recurrence statistics from, needs to
reside in $CASE_ROOT/dataBase(0...N)
Time step data in the first dataBase needs to be evenly spaced in time
A list of indices for the corresponding incoherent fields to coherent ones
should be provided.
should be provided.
\*---------------------------------------------------------------------------*/
@ -84,15 +84,15 @@ int main(int argc, char *argv[])
runTime++;
myClock().start(11,"Total");
Info<< "Time = " << runTime.timeName() << nl << endl;
myClock().start(2,"fieldUpdate");
if ( runTime.timeOutputValue() - (recTimeIndex+1)*recTimeStep_ + 1.0e-5 > 0.0 )
{
Info << "Updating fields at run time " << runTime.timeOutputValue()
<< " corresponding to recurrence time " << (recTimeIndex+1)*recTimeStep_ << ".\n" << endl;
Info<< "Updating fields at run time " << runTime.timeOutputValue()
<< " corresponding to recurrence time " << (recTimeIndex+1)*recTimeStep_ << ".\n" << endl;
recBases[0].updateRecFields();
#include "readFields.H"
@ -110,16 +110,16 @@ int main(int argc, char *argv[])
myClock().stop("Total");
runTime.write();
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< nl << endl;
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< nl << endl;
myClock().stop("Global");
}
myClock().evalPar();
myClock().normHist();

View File

@ -1,6 +1,6 @@
/*---------------------------------------------------------------------------*\
CFDEMcoupling academic - Open Source CFD-DEM coupling
Contributing authors:
Thomas Lichtenegger, Gerhard Holzinger
Copyright (C) 2015- Johannes Kepler University, Linz
@ -29,9 +29,9 @@ Description
for a solver based on recurrence statistics
Rules
Solution data to compute the recurrence statistics from, needs to
reside in $CASE_ROOT/dataBase
Time step data in dataBase needs to be evenly spaced in time
Solution data to compute the recurrence statistics from, needs to
reside in $CASE_ROOT/dataBase
Time step data in dataBase needs to be evenly spaced in time
\*---------------------------------------------------------------------------*/
@ -82,8 +82,8 @@ int main(int argc, char *argv[])
if (stepCounter == recTimeStep2CFDTimeStep)
{
Info << "Updating fields at run time " << runTime.timeOutputValue()
<< " with recTimeIndex " << recTimeIndex << ".\n" << endl;
Info<< "Updating fields at run time " << runTime.timeOutputValue()
<< " with recTimeIndex " << recTimeIndex << ".\n" << endl;
recurrenceBase.updateRecFields();
#include "readFields.H"
recTimeIndex++;
@ -98,15 +98,15 @@ int main(int argc, char *argv[])
myClock().stop("speciesEqn");
runTime.write();
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< nl << endl;
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< nl << endl;
myClock().stop("Global");
}
myClock().evalPar();
myClock().normHist();

View File

@ -65,7 +65,7 @@ int main(int argc, char *argv[])
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
Info << "\nCalculating particle trajectories based on recurrence statistics\n" << endl;
Info<< "\nCalculating particle trajectories based on recurrence statistics\n" << endl;
label recTimeIndex(0);
label stepCounter = 0;
@ -78,7 +78,7 @@ int main(int argc, char *argv[])
// do stuff (every lagrangian time step)
particleCloud.clockM().start(1,"Global");
Info << "Time = " << runTime.timeName() << nl << endl;
Info<< "Time = " << runTime.timeName() << nl << endl;
particleCloud.clockM().start(2,"Flow");
#include "TEq.H"
@ -88,8 +88,8 @@ int main(int argc, char *argv[])
if (stepCounter == recTimeStep2CFDTimeStep)
{
Info << "Updating fields at run time " << runTime.timeOutputValue()
<< " corresponding to recTimeIndex " << recTimeIndex << ".\n" << endl;
Info<< "Updating fields at run time " << runTime.timeOutputValue()
<< " corresponding to recTimeIndex " << recTimeIndex << ".\n" << endl;
recurrenceBase.updateRecFields();
#include "readFields.H"
recTimeIndex++;
@ -103,12 +103,12 @@ int main(int argc, char *argv[])
particleCloud.clockM().stop("Global");
Info << "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< nl << endl;
Info<< "ExecutionTime = " << runTime.elapsedCpuTime() << " s"
<< " ClockTime = " << runTime.elapsedClockTime() << " s"
<< nl << endl;
}
Info << "End\n" << endl;
Info<< "End\n" << endl;
return 0;
}