From 2b5fba4ece82fdf7d02cc1b5b11db93648d12840 Mon Sep 17 00:00:00 2001 From: danielque Date: Mon, 6 Dec 2021 13:13:12 +0100 Subject: [PATCH] clean up whitespaces [ci skip] --- .../rctfSpeciesTransport.C | 24 +++++++++---------- .../recSolverTurbTransport.C | 22 ++++++++--------- .../rtfmSolverSpecies/rtfmSolverSpecies.C | 16 ++++++------- 3 files changed, 31 insertions(+), 31 deletions(-) diff --git a/applications/solvers/rctfSpeciesTransport/rctfSpeciesTransport.C b/applications/solvers/rctfSpeciesTransport/rctfSpeciesTransport.C index 3cd080ad..dea487c9 100755 --- a/applications/solvers/rctfSpeciesTransport/rctfSpeciesTransport.C +++ b/applications/solvers/rctfSpeciesTransport/rctfSpeciesTransport.C @@ -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(); diff --git a/applications/solvers/recSolverTurbTransport/recSolverTurbTransport.C b/applications/solvers/recSolverTurbTransport/recSolverTurbTransport.C index 92c2e9c6..81a4bed0 100755 --- a/applications/solvers/recSolverTurbTransport/recSolverTurbTransport.C +++ b/applications/solvers/recSolverTurbTransport/recSolverTurbTransport.C @@ -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(); diff --git a/applications/solvers/rtfmSolverSpecies/rtfmSolverSpecies.C b/applications/solvers/rtfmSolverSpecies/rtfmSolverSpecies.C index 12f11b00..0eab7ab6 100644 --- a/applications/solvers/rtfmSolverSpecies/rtfmSolverSpecies.C +++ b/applications/solvers/rtfmSolverSpecies/rtfmSolverSpecies.C @@ -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; }