mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Commented out dissipation term, used for agent simulation test
This commit is contained in:
@ -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();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user