mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
twoPhaseEulerFoam/interfacialModels/turbulentDispersionModels/noTurbulentDispersion: Corrected dimension of D
This commit is contained in:
@ -84,12 +84,7 @@ Foam::turbulentDispersionModels::noTurbulentDispersion::D() const
|
||||
false
|
||||
),
|
||||
mesh,
|
||||
dimensionedScalar
|
||||
(
|
||||
"zero",
|
||||
dimensionSet(1, -2, 1, 0, 0),
|
||||
0
|
||||
)
|
||||
dimensionedScalar("zero", dimD, 0)
|
||||
)
|
||||
);
|
||||
}
|
||||
@ -112,12 +107,7 @@ Foam::turbulentDispersionModels::noTurbulentDispersion::F() const
|
||||
mesh
|
||||
),
|
||||
mesh,
|
||||
dimensionedVector
|
||||
(
|
||||
"zero",
|
||||
dimensionSet(1, -2, -2, 0, 0),
|
||||
vector::zero
|
||||
)
|
||||
dimensionedVector("zero", dimF, vector::zero)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user