STYLE: correct line widths

This commit is contained in:
laurence
2013-08-15 15:01:36 +01:00
parent d3f3af7bfd
commit 9883825eed
2 changed files with 14 additions and 6 deletions

View File

@ -552,9 +552,12 @@ bool Foam::autoDensity::fillBox
min
+ vector
(
delta.x()*(i + 0.5 + 0.1*(rndGen().scalar01() - 0.5)),
delta.y()*(j + 0.5 + 0.1*(rndGen().scalar01() - 0.5)),
delta.z()*(k + 0.5 + 0.1*(rndGen().scalar01() - 0.5))
delta.x()
*(i + 0.5 + 0.1*(rndGen().scalar01() - 0.5)),
delta.y()
*(j + 0.5 + 0.1*(rndGen().scalar01() - 0.5)),
delta.z()
*(k + 0.5 + 0.1*(rndGen().scalar01() - 0.5))
);
}
}

View File

@ -807,10 +807,15 @@ int main(int argc, char *argv[])
// polyTopoChange meshMod(meshPtr(), true);
//
// // Play refinement commands into mesh changer.
// meshCutter.setRefinement(identity(meshPtr().nCells()), meshMod);
// meshCutter.setRefinement
// (
// identity(meshPtr().nCells()),
// meshMod
// );
//
// // Create mesh (no inflation), return map from old to new mesh.
// autoPtr<mapPolyMesh> map = meshMod.changeMesh(meshPtr(), false);
// // Create mesh (no inflation), return map from old to new mesh
// autoPtr<mapPolyMesh> map =
// meshMod.changeMesh(meshPtr(), false);
//
// // Update fields
// meshPtr().updateMesh(map);