Corrected line length

This commit is contained in:
Henry
2011-08-24 17:19:17 +01:00
parent 852cdfb205
commit a7251c4d87
2 changed files with 4 additions and 2 deletions

View File

@ -72,7 +72,8 @@ Foam::tmp<Foam::volScalarField> Foam::heatTransferModels::RanzMarshall::K
) const
{
volScalarField Re = max(Ur*phase1_.d()/phase2_.nu(), scalar(1.0e-3));
dimensionedScalar Prb = phase2_.rho()*phase2_.nu()*phase2_.Cp()/phase2_.kappa();
dimensionedScalar Prb =
phase2_.rho()*phase2_.nu()*phase2_.Cp()/phase2_.kappa();
volScalarField Nu = scalar(2) + 0.6*sqrt(Re)*cbrt(Prb);
return 6.0*phase2_.kappa()*Nu/sqr(phase1_.d());

View File

@ -82,7 +82,8 @@ class kineticTheoryModel
autoPtr<kineticTheoryModels::radialModel> radialModel_;
autoPtr<kineticTheoryModels::granularPressureModel> granularPressureModel_;
autoPtr<kineticTheoryModels::granularPressureModel>
granularPressureModel_;
autoPtr<kineticTheoryModels::frictionalStressModel>
frictionalStressModel_;