Skip to content
Snippets Groups Projects
Commit 6c097fc2 authored by Henry's avatar Henry
Browse files

twoPhaseEulerFoam/interfacialModels/turbulentDispersionModels/noTurbulentDispe...

twoPhaseEulerFoam/interfacialModels/turbulentDispersionModels/noTurbulentDispersion: Corrected dimension of D
parent 4c443233
Branches
Tags
No related merge requests found
......@@ -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)
)
);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment