solvers::multiphaseEuler: Print the max and min T only for anisothermalPhases

This commit is contained in:
Henry Weller
2023-03-30 17:24:06 +01:00
parent 0641b16f1a
commit 5e8ead4f89

View File

@ -121,9 +121,10 @@ void Foam::solvers::multiphaseEuler::thermophysicalPredictor()
compositionPredictor();
energyPredictor();
forAll(phases, phasei)
forAll(fluid.anisothermalPhases(), anisothermalPhasei)
{
phaseModel& phase = phases[phasei];
phaseModel& phase =
fluid.anisothermalPhases()[anisothermalPhasei];
Info<< phase.name() << " min/max T "
<< min(phase.thermo().T()).value()