Merge branch 'master' of github.com:OpenFOAM/OpenFOAM-2.3.x

This commit is contained in:
william 2014-09-12 16:29:11 +01:00
commit 36ea25dd19
2 changed files with 7 additions and 8 deletions

View file

@ -65,10 +65,7 @@ void Foam::fieldCoordinateSystemTransform::transformField
dimensionedTensor R("R", field.dimensions(), coordSys_.R().R());
forAll(field, i)
{
Foam::transform(transField, R, transField);
}
Foam::transform(transField, R, transField);
Info<< " writing field " << transField.name() << nl << endl;

View file

@ -331,10 +331,12 @@ void Foam::sixDoFRigidBodyMotion::updateAcceleration
void Foam::sixDoFRigidBodyMotion::status() const
{
Info<< "Centre of rotation: " << centreOfRotation() << nl
<< "Centre of mass: " << centreOfMass() << nl
<< "Linear velocity: " << v() << nl
<< "Angular velocity: " << omega()
Info<< "6-DoF rigid body motion" << nl
<< " Centre of rotation: " << centreOfRotation() << nl
<< " Centre of mass: " << centreOfMass() << nl
<< " Orientation: " << orientation() << nl
<< " Linear velocity: " << v() << nl
<< " Angular velocity: " << omega()
<< endl;
}