BUG: mass multiples both terms in SRF.

This commit is contained in:
graham
2011-03-03 11:19:29 +00:00
parent b34106b6f4
commit 467eb90a71

View File

@ -97,7 +97,7 @@ Foam::forceSuSp Foam::SRFForce<CloudType>::calcNonCoupled
const vector r = p.position() - axis*(axis & p.position()); const vector r = p.position() - axis*(axis & p.position());
// Coriolis and centrifugal acceleration terms // Coriolis and centrifugal acceleration terms
value.Su() = mass*2.0*(p.U() ^ omega) + (omega ^ (r ^ omega)); value.Su() = mass*(2.0*(p.U() ^ omega) + (omega ^ (r ^ omega)));
return value; return value;
} }