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

alphaEqnsSubCycle: Corrected dimensions of rhoPhiSum

parent 4f2b3e4c
Branches
Tags
No related merge requests found
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
mesh mesh
), ),
mesh, mesh,
dimensionedScalar("0", dimDensity, 0) dimensionedScalar("0", rhoPhi.dimensions(), 0)
); );
for for
......
...@@ -12,7 +12,7 @@ if (nAlphaSubCycles > 1) ...@@ -12,7 +12,7 @@ if (nAlphaSubCycles > 1)
mesh mesh
), ),
mesh, mesh,
dimensionedScalar("0", dimDensity, 0) dimensionedScalar("0", rhoPhi.dimensions(), 0)
); );
for for
......
...@@ -12,7 +12,7 @@ if (nAlphaSubCycles > 1) ...@@ -12,7 +12,7 @@ if (nAlphaSubCycles > 1)
mesh mesh
), ),
mesh, mesh,
dimensionedScalar("0", dimDensity, 0) dimensionedScalar("0", rhoPhi.dimensions(), 0)
); );
for for
......
...@@ -12,7 +12,7 @@ if (nAlphaSubCycles > 1) ...@@ -12,7 +12,7 @@ if (nAlphaSubCycles > 1)
mesh mesh
), ),
mesh, mesh,
dimensionedScalar("0", dimDensity, 0) dimensionedScalar("0", rhoPhi.dimensions(), 0)
); );
for for
......
...@@ -322,7 +322,7 @@ void Foam::multiphaseMixture::solve() ...@@ -322,7 +322,7 @@ void Foam::multiphaseMixture::solve()
mesh_ mesh_
), ),
mesh_, mesh_,
dimensionedScalar("0", dimDensity, 0) dimensionedScalar("0", rhoPhi_.dimensions(), 0)
); );
dimensionedScalar totalDeltaT = runTime.deltaT(); dimensionedScalar totalDeltaT = runTime.deltaT();
......
...@@ -12,7 +12,7 @@ if (nAlphaSubCycles > 1) ...@@ -12,7 +12,7 @@ if (nAlphaSubCycles > 1)
mesh mesh
), ),
mesh, mesh,
dimensionedScalar("0", dimDensity, 0) dimensionedScalar("0", rhoPhi.dimensions(), 0)
); );
for for
......
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