ENH: Improves output messages for sprayCloud operation

This commit is contained in:
andy
2011-12-13 15:30:17 +00:00
parent 43a6d313c4
commit 188ad97333

View File

@ -362,10 +362,13 @@ void Foam::SprayCloud<CloudType>::info() const
{
CloudType::info();
scalar d32 = 1.0e+6*this->Dij(3, 2);
scalar d10 = 1.0e+6*this->Dij(1, 0);
scalar dMax = 1.0e+6*this->Dmax();
scalar pen = this->penetration(0.95);
Info << " D32 (mu) = " << d32 << endl;
Info << " Liquid penetration 95% mass (m) = " << pen << endl;
Info << " D10, D32, Dmax (mu) = " << d10 << ", " << d32
<< ", " << dMax << nl
<< " Liquid penetration 95% mass (m) = " << pen << endl;
}