ENH: moved info() for clouds to evolve() call
- Removes need for additional call to info in the main solver code
This commit is contained in:
parent
9171b6970f
commit
a57ff61211
@ -61,7 +61,6 @@ int main(int argc, char *argv[])
|
||||
|
||||
Info<< "Evolving " << kinematicCloud.name() << endl;
|
||||
kinematicCloud.evolve();
|
||||
kinematicCloud.info();
|
||||
|
||||
runTime.write();
|
||||
|
||||
|
@ -260,6 +260,9 @@ void Foam::KinematicCloud<ParcelType>::evolve()
|
||||
evolveCloud();
|
||||
|
||||
postEvolve();
|
||||
|
||||
info();
|
||||
Info<< endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -272,6 +272,9 @@ void Foam::ReactingCloud<ParcelType>::evolve()
|
||||
evolveCloud();
|
||||
|
||||
postEvolve();
|
||||
|
||||
info();
|
||||
Info<< endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -228,6 +228,9 @@ void Foam::ReactingMultiphaseCloud<ParcelType>::evolve()
|
||||
evolveCloud();
|
||||
|
||||
postEvolve();
|
||||
|
||||
info();
|
||||
Info<< endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -219,6 +219,9 @@ void Foam::ThermoCloud<ParcelType>::evolve()
|
||||
evolveCloud();
|
||||
|
||||
postEvolve();
|
||||
|
||||
info();
|
||||
Info<< endl;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user