Commented out dissipation term, used for agent simulation test

This commit is contained in:
graham
2008-07-24 12:10:11 +01:00
parent 10ee1ccb42
commit 615f13d7ce

View File

@ -32,13 +32,13 @@ void Foam::moleculeCloud::calculateExternalForce()
{
iterator mol(this->begin());
Info<< "Warning! Includes dissipation term!" << endl;
// Info<< "Warning! Includes dissipation term!" << endl;
for (mol = this->begin(); mol != this->end(); ++mol)
{
mol().A() += gravity_;
mol().A() += -1.0 * mol().U() /mol().mass();
// mol().A() += -1.0 * mol().U() /mol().mass();
}
}