mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
dimensionedScalar cbrt: changed word "1/3" to "1|3"
This commit is contained in:
@ -155,7 +155,7 @@ dimensionedScalar cbrt(const dimensionedScalar& ds)
|
|||||||
return dimensionedScalar
|
return dimensionedScalar
|
||||||
(
|
(
|
||||||
"cbrt(" + ds.name() + ')',
|
"cbrt(" + ds.name() + ')',
|
||||||
pow(ds.dimensions(), dimensionedScalar("(1/3)", dimless, 1.0/3.0)),
|
pow(ds.dimensions(), dimensionedScalar("(1|3)", dimless, 1.0/3.0)),
|
||||||
::cbrt(ds.value())
|
::cbrt(ds.value())
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user