BUG: regionFaModels: report min/max for all processors (fixes #2655)
This commit is contained in:
parent
0de1df7309
commit
952d42512d
@ -121,9 +121,7 @@ void KirchhoffShell::solveDisplacement()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Info<< "ws_vibrationShell: "
|
Info<< w_.name() << " min/max = " << gMinMax(w_) << endl;
|
||||||
<< "min = " << min(w_).value() << ", "
|
|
||||||
<< "max = " << max(w_).value() << endl;
|
|
||||||
|
|
||||||
// Restore old time in main time
|
// Restore old time in main time
|
||||||
w_.oldTime() = w0;
|
w_.oldTime() = w0;
|
||||||
|
@ -162,10 +162,8 @@ void kinematicThinFilm::evolveRegion()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Info<< "Film h min/max = " << min(h_).value() << ", "
|
Info<< "Film h min/max = " << gMinMax(h_) << nl
|
||||||
<< max(h_).value() << endl;
|
<< "Film mag(U) min/max = " << gMinMaxMag(Uf_) << endl;
|
||||||
|
|
||||||
Info<< "Film U min/max = " << max(mag(Uf_)).value() << endl;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -361,12 +361,11 @@ void liquidFilmModel::info()
|
|||||||
const DimensionedField<scalar, areaMesh>& sf = regionMesh().S();
|
const DimensionedField<scalar, areaMesh>& sf = regionMesh().S();
|
||||||
|
|
||||||
Info<< indent << "min/max(mag(Uf)) = "
|
Info<< indent << "min/max(mag(Uf)) = "
|
||||||
<< gMin(mag(Uf_.field())) << ", "
|
<< gMinMaxMag(Uf_.field()) << nl
|
||||||
<< gMax(mag(Uf_.field())) << nl
|
|
||||||
<< indent << "min/max(delta) = "
|
<< indent << "min/max(delta) = "
|
||||||
<< gMin(h_.field()) << ", " << gMax(h_.field()) << nl
|
<< gMinMax(h_.field()) << nl
|
||||||
<< indent << "coverage = "
|
<< indent << "coverage = "
|
||||||
<< gSum(alpha()().field()*mag(sf.field()))/gSum(mag(sf.field())) << nl
|
<< gSum(alpha()().field()*mag(sf.field()))/gSumMag(sf.field()) << nl
|
||||||
<< indent << "total mass = "
|
<< indent << "total mass = "
|
||||||
<< gSum(availableMass_) << nl;
|
<< gSum(availableMass_) << nl;
|
||||||
|
|
||||||
|
@ -178,7 +178,7 @@ void thermalShell::evolveRegion()
|
|||||||
solveEnergy();
|
solveEnergy();
|
||||||
}
|
}
|
||||||
|
|
||||||
Info<< "T min/max = " << min(T_) << ", " << max(T_) << endl;
|
Info<< T_.name() << " min/max = " << gMinMax(T_) << endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user