db7fac3f24
git-svn-id: https://openfoam-extend.svn.sourceforge.net/svnroot/openfoam-extend/trunk/Core/OpenFOAM-1.5-dev@1731 e4e07f05-0c2f-0410-a05a-b8ba57e0c909
74 lines
1.3 KiB
C
74 lines
1.3 KiB
C
Info<< "Reading combustion properties\n" << endl;
|
|
|
|
IOdictionary engineGeometry
|
|
(
|
|
IOobject
|
|
(
|
|
"engineGeometry",
|
|
runTime.constant(),
|
|
mesh,
|
|
IOobject::MUST_READ,
|
|
IOobject::NO_WRITE
|
|
)
|
|
);
|
|
|
|
vector swirlAxis
|
|
(
|
|
engineGeometry.lookup("swirlAxis")
|
|
);
|
|
|
|
vector swirlCenter
|
|
(
|
|
engineGeometry.lookup("swirlCenter")
|
|
);
|
|
|
|
dimensionedScalar swirlRPMRatio
|
|
(
|
|
engineGeometry.lookup("swirlRPMRatio")
|
|
);
|
|
|
|
dimensionedScalar swirlProfile
|
|
(
|
|
engineGeometry.lookup("swirlProfile")
|
|
);
|
|
|
|
dimensionedScalar bore
|
|
(
|
|
engineGeometry.lookup("bore")
|
|
);
|
|
|
|
dimensionedScalar rpm
|
|
(
|
|
engineGeometry.lookup("rpm")
|
|
);
|
|
|
|
|
|
Info<< "Reading field U\n" << endl;
|
|
volVectorField U
|
|
(
|
|
IOobject
|
|
(
|
|
"U",
|
|
runTime.timeName(),
|
|
mesh,
|
|
IOobject::MUST_READ,
|
|
IOobject::AUTO_WRITE
|
|
),
|
|
mesh
|
|
);
|
|
|
|
vector zT = swirlAxis;
|
|
vector yT = vector(0, zT.z(), -zT.y());
|
|
vector xT = vector(zT.y()*zT.y() + zT.z()*zT.z(), -zT.x()*zT.y(), -zT.x()*zT.z());
|
|
|
|
// if swirl is around (1, 0, 0) we have to find another transformation
|
|
if (mag(yT) < SMALL)
|
|
{
|
|
yT = vector(zT.y(), -zT.x(), 0);
|
|
xT = vector(-zT.x()*zT.z(), -zT.y()*zT.z(), zT.x()*zT.x() + zT.y()*zT.y());
|
|
}
|
|
|
|
//swirlAxis doesn't have to be of unit length.
|
|
xT /= mag(xT);
|
|
yT /= mag(yT);
|
|
zT /= mag(zT);
|