ENH: upadtes to semi-implicit cloud source calcs

This commit is contained in:
andy
2011-03-02 15:41:24 +00:00
parent 73ef3c4dff
commit 432f72a88a
2 changed files with 2 additions and 2 deletions

View File

@ -202,7 +202,7 @@ const Foam::vector Foam::KinematicParcel<ParcelType>::calcVelocity
const vector abp = (Feff.Sp()*Uc_ + (Feff.Su() + Su))/mass;
const scalar bp = Feff.Sp()/mass;
Spu = Feff.Sp();
Spu = Feff.Sp()*dt/td.cloud().solution().deltaT();
IntegrationScheme<vector>::integrationResult Ures =
td.cloud().UIntegrator().integrate(U, dt, abp, bp);

View File

@ -339,7 +339,7 @@ Foam::scalar Foam::ThermoParcel<ParcelType>::calcHeatTransfer
dhsTrans += dt*htc*As*(0.5*(T + Tnew) - Tc_);
Cuh = bp;
Cuh = bp*dt/td.cloud().solution().deltaT();
return Tnew;
}