Wrong dimensions. Fix by Niels Gjoel Jacobsen
This commit is contained in:
parent
95dc85944b
commit
9281c1b9ac
1 changed files with 18 additions and 18 deletions
|
@ -122,9 +122,9 @@ void faMesh::calcLe() const
|
||||||
IOobject
|
IOobject
|
||||||
(
|
(
|
||||||
"Le",
|
"Le",
|
||||||
mesh_.pointsInstance(),
|
mesh().pointsInstance(),
|
||||||
meshSubDir,
|
meshSubDir,
|
||||||
mesh_
|
mesh()
|
||||||
),
|
),
|
||||||
*this,
|
*this,
|
||||||
dimLength
|
dimLength
|
||||||
|
@ -226,9 +226,9 @@ void faMesh::calcMagLe() const
|
||||||
IOobject
|
IOobject
|
||||||
(
|
(
|
||||||
"magLe",
|
"magLe",
|
||||||
mesh_.pointsInstance(),
|
mesh().pointsInstance(),
|
||||||
meshSubDir,
|
meshSubDir,
|
||||||
mesh_
|
mesh()
|
||||||
),
|
),
|
||||||
*this,
|
*this,
|
||||||
dimLength
|
dimLength
|
||||||
|
@ -287,9 +287,9 @@ void faMesh::calcAreaCentres() const
|
||||||
IOobject
|
IOobject
|
||||||
(
|
(
|
||||||
"centres",
|
"centres",
|
||||||
mesh_.pointsInstance(),
|
mesh().pointsInstance(),
|
||||||
meshSubDir,
|
meshSubDir,
|
||||||
mesh_
|
mesh()
|
||||||
),
|
),
|
||||||
*this,
|
*this,
|
||||||
dimLength
|
dimLength
|
||||||
|
@ -357,9 +357,9 @@ void faMesh::calcEdgeCentres() const
|
||||||
IOobject
|
IOobject
|
||||||
(
|
(
|
||||||
"edgeCentres",
|
"edgeCentres",
|
||||||
mesh_.pointsInstance(),
|
mesh().pointsInstance(),
|
||||||
meshSubDir,
|
meshSubDir,
|
||||||
mesh_
|
mesh()
|
||||||
),
|
),
|
||||||
*this,
|
*this,
|
||||||
dimLength
|
dimLength
|
||||||
|
@ -417,12 +417,12 @@ void faMesh::calcS() const
|
||||||
(
|
(
|
||||||
"S",
|
"S",
|
||||||
time().timeName(),
|
time().timeName(),
|
||||||
mesh_,
|
mesh(),
|
||||||
IOobject::NO_READ,
|
IOobject::NO_READ,
|
||||||
IOobject::NO_WRITE
|
IOobject::NO_WRITE
|
||||||
),
|
),
|
||||||
*this,
|
*this,
|
||||||
dimVolume
|
dimArea
|
||||||
);
|
);
|
||||||
DimensionedField<scalar, areaMesh>& S = *SPtr_;
|
DimensionedField<scalar, areaMesh>& S = *SPtr_;
|
||||||
|
|
||||||
|
@ -459,9 +459,9 @@ void faMesh::calcFaceAreaNormals() const
|
||||||
IOobject
|
IOobject
|
||||||
(
|
(
|
||||||
"faceAreaNormals",
|
"faceAreaNormals",
|
||||||
mesh_.pointsInstance(),
|
mesh().pointsInstance(),
|
||||||
meshSubDir,
|
meshSubDir,
|
||||||
mesh_
|
mesh()
|
||||||
),
|
),
|
||||||
*this,
|
*this,
|
||||||
dimless
|
dimless
|
||||||
|
@ -526,9 +526,9 @@ void faMesh::calcEdgeAreaNormals() const
|
||||||
IOobject
|
IOobject
|
||||||
(
|
(
|
||||||
"edgeAreaNormals",
|
"edgeAreaNormals",
|
||||||
mesh_.pointsInstance(),
|
mesh().pointsInstance(),
|
||||||
meshSubDir,
|
meshSubDir,
|
||||||
mesh_
|
mesh()
|
||||||
),
|
),
|
||||||
*this,
|
*this,
|
||||||
dimless
|
dimless
|
||||||
|
@ -666,9 +666,9 @@ void faMesh::calcFaceCurvatures() const
|
||||||
IOobject
|
IOobject
|
||||||
(
|
(
|
||||||
"faceCurvatures",
|
"faceCurvatures",
|
||||||
mesh_.pointsInstance(),
|
mesh().pointsInstance(),
|
||||||
meshSubDir,
|
meshSubDir,
|
||||||
mesh_
|
mesh()
|
||||||
),
|
),
|
||||||
*this,
|
*this,
|
||||||
dimless/dimLength
|
dimless/dimLength
|
||||||
|
@ -1968,9 +1968,9 @@ tmp<edgeScalarField> faMesh::edgeLengthCorrection() const
|
||||||
IOobject
|
IOobject
|
||||||
(
|
(
|
||||||
"edgeLengthCorrection",
|
"edgeLengthCorrection",
|
||||||
mesh_.pointsInstance(),
|
mesh().pointsInstance(),
|
||||||
meshSubDir,
|
meshSubDir,
|
||||||
mesh_
|
mesh()
|
||||||
),
|
),
|
||||||
*this,
|
*this,
|
||||||
dimless
|
dimless
|
||||||
|
|
Reference in a new issue