twoPhaseEulerFoam/interfacialModels/turbulentDispersionModels/noTurbulentDispersion: Corrected dimension of D
This commit is contained in:
parent
2150f659f4
commit
a515222a98
1 changed files with 2 additions and 12 deletions
|
|
@ -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)
|
||||
)
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue