ENH: Code updates in lieu of cloud updates

This commit is contained in:
andy
2010-10-25 17:52:35 +01:00
parent 8c3ecd9b2c
commit 1a61449dce
34 changed files with 99 additions and 86 deletions

View File

@ -233,10 +233,13 @@ void Foam::streamLine::track()
allVectors_
);
// Set very large dt. Note: cannot use GREAT since 1/GREAT is SMALL
// which is a trigger value for the tracking...
const scalar trackTime = Foam::sqrt(GREAT);
// Track
//Pout<< "Tracking particles." << endl;
particles.move(td);
//Pout<< "Finished tracking particles." << endl;
particles.move(td, trackTime);
}