Merge branch 'master' of github.com:OpenFOAM/OpenFOAM-2.3.x
This commit is contained in:
commit
36ea25dd19
2 changed files with 7 additions and 8 deletions
|
|
@ -65,10 +65,7 @@ void Foam::fieldCoordinateSystemTransform::transformField
|
||||||
|
|
||||||
dimensionedTensor R("R", field.dimensions(), coordSys_.R().R());
|
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;
|
Info<< " writing field " << transField.name() << nl << endl;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -331,10 +331,12 @@ void Foam::sixDoFRigidBodyMotion::updateAcceleration
|
||||||
|
|
||||||
void Foam::sixDoFRigidBodyMotion::status() const
|
void Foam::sixDoFRigidBodyMotion::status() const
|
||||||
{
|
{
|
||||||
Info<< "Centre of rotation: " << centreOfRotation() << nl
|
Info<< "6-DoF rigid body motion" << nl
|
||||||
<< "Centre of mass: " << centreOfMass() << nl
|
<< " Centre of rotation: " << centreOfRotation() << nl
|
||||||
<< "Linear velocity: " << v() << nl
|
<< " Centre of mass: " << centreOfMass() << nl
|
||||||
<< "Angular velocity: " << omega()
|
<< " Orientation: " << orientation() << nl
|
||||||
|
<< " Linear velocity: " << v() << nl
|
||||||
|
<< " Angular velocity: " << omega()
|
||||||
<< endl;
|
<< endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue