Skip to content
Snippets Groups Projects
Commit 0ab048e0 authored by mattijs's avatar mattijs
Browse files

COMP: autoHexMesh: fix pow(int, int) ambiguity

parent e2cefb1a
No related branches found
No related tags found
No related merge requests found
......@@ -546,7 +546,7 @@ Foam::label Foam::meshRefinement::markSurfaceGapRefinement
//
// if (cLevel >= minLevel && cLevel < maxLevel)
// {
// scalar cellSize = edge0Len/pow(2, cLevel);
// scalar cellSize = edge0Len/pow(2.0, cLevel);
//
// // Update gap size
// nearGap[i] = nGapCells*cellSize;
......@@ -687,7 +687,7 @@ Foam::label Foam::meshRefinement::generateRays
if (cLevel >= gapInfo[1] && cLevel < gapInfo[2])
{
scalar cellSize = meshCutter_.level0EdgeLength()/pow(2, cLevel);
scalar cellSize = meshCutter_.level0EdgeLength()/pow(2.0, cLevel);
// Calculate gap size
scalar nearGap = gapInfo[0]*cellSize;
......@@ -803,7 +803,7 @@ Foam::label Foam::meshRefinement::generateRays
if (cLevel >= gapInfo[1] && cLevel < gapInfo[2])
{
scalar cellSize = meshCutter_.level0EdgeLength()/pow(2, cLevel);
scalar cellSize = meshCutter_.level0EdgeLength()/pow(2.0, cLevel);
// Calculate gap size
scalar nearGap = gapInfo[0]*cellSize;
......@@ -1133,7 +1133,7 @@ Foam::label Foam::meshRefinement::markInternalGapRefinement
forAll(cellMap, i)
{
label cellI = cellMap[i];
scalar cellSize = edge0Len/pow(2, cellLevel[cellI]);
scalar cellSize = edge0Len/pow(2.0, cellLevel[cellI]);
gapSize[i] = shellGapInfo[i][0]*cellSize;
}
......@@ -1410,7 +1410,8 @@ Foam::label Foam::meshRefinement::markInternalGapRefinement
{
// Needed gap size
label cLevel = cellLevel[cellI];
scalar cellSize = meshCutter_.level0EdgeLength()/pow(2, cLevel);
scalar cellSize =
meshCutter_.level0EdgeLength()/pow(2.0, cLevel);
scalar neededGapSize = numGapCells[cellI]*cellSize;
if (neededGapSize > detectedGapSize[cellI])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment