mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: correct line widths
This commit is contained in:
@ -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))
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user