Skip to content
Snippets Groups Projects
Commit 9446fecf authored by henry's avatar henry
Browse files

Corrected dimension handling in pow functions.

parent 35eac2b9
No related branches found
No related tags found
No related merge requests found
...@@ -154,7 +154,7 @@ tmp<GeometricField<scalar, PatchField, GeoMesh> > pow ...@@ -154,7 +154,7 @@ tmp<GeometricField<scalar, PatchField, GeoMesh> > pow
pow pow
( (
gsf1.dimensions(), gsf1.dimensions(),
dimensionedScalar("1", 1.0, gsf2.dimensions()) dimensionedScalar("1", gsf2.dimensions(), 1.0)
) )
) )
); );
...@@ -183,7 +183,7 @@ tmp<GeometricField<scalar, PatchField, GeoMesh> > pow ...@@ -183,7 +183,7 @@ tmp<GeometricField<scalar, PatchField, GeoMesh> > pow
pow pow
( (
gsf1.dimensions(), gsf1.dimensions(),
dimensionedScalar("1", 1.0, gsf2.dimensions()) dimensionedScalar("1", gsf2.dimensions(), 1.0)
) )
) )
); );
...@@ -214,7 +214,7 @@ tmp<GeometricField<scalar, PatchField, GeoMesh> > pow ...@@ -214,7 +214,7 @@ tmp<GeometricField<scalar, PatchField, GeoMesh> > pow
pow pow
( (
gsf1.dimensions(), gsf1.dimensions(),
dimensionedScalar("1", 1.0, gsf2.dimensions()) dimensionedScalar("1", gsf2.dimensions(), 1.0)
) )
) )
); );
...@@ -247,7 +247,7 @@ tmp<GeometricField<scalar, PatchField, GeoMesh> > pow ...@@ -247,7 +247,7 @@ tmp<GeometricField<scalar, PatchField, GeoMesh> > pow
pow pow
( (
gsf1.dimensions(), gsf1.dimensions(),
dimensionedScalar("1", 1.0, gsf2.dimensions()) dimensionedScalar("1", gsf2.dimensions(), 1.0)
) )
) )
); );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment