diff --git a/etc/templates/axisymmetricJet/system/blockMeshDict b/etc/templates/axisymmetricJet/system/blockMeshDict index 1fcb03846ac67937da9c6784ba609a8063d5b5c0..3bbfc45ed679db41c72f5bc32e7b194527118582 100644 --- a/etc/templates/axisymmetricJet/system/blockMeshDict +++ b/etc/templates/axisymmetricJet/system/blockMeshDict @@ -24,7 +24,7 @@ backgroundMesh rBcells 50; } -convertToMeters 1; +scale 1; vertices ( diff --git a/etc/templates/closedVolume/system/blockMeshDict b/etc/templates/closedVolume/system/blockMeshDict index 273d50fad2367de42c8eeef10117501a4d748079..db3fd8ee720d601ca5a143bc357c234033b1698e 100644 --- a/etc/templates/closedVolume/system/blockMeshDict +++ b/etc/templates/closedVolume/system/blockMeshDict @@ -27,7 +27,7 @@ backgroundMesh zCells 20; } -convertToMeters 1; +scale 1; vertices ( diff --git a/etc/templates/closedVolumeRotating/system/blockMeshDict b/etc/templates/closedVolumeRotating/system/blockMeshDict index b7f0c57061c8e696616f012acc6f047b7889fe7b..71e33484d38e6ec5a512d281e013fdcab962cd30 100644 --- a/etc/templates/closedVolumeRotating/system/blockMeshDict +++ b/etc/templates/closedVolumeRotating/system/blockMeshDict @@ -58,7 +58,7 @@ geometry } } -convertToMeters 1; +scale 1; vertices ( diff --git a/etc/templates/closedVolumeRotating/system/blockMeshDict-box b/etc/templates/closedVolumeRotating/system/blockMeshDict-box index 273d50fad2367de42c8eeef10117501a4d748079..db3fd8ee720d601ca5a143bc357c234033b1698e 100644 --- a/etc/templates/closedVolumeRotating/system/blockMeshDict-box +++ b/etc/templates/closedVolumeRotating/system/blockMeshDict-box @@ -27,7 +27,7 @@ backgroundMesh zCells 20; } -convertToMeters 1; +scale 1; vertices ( diff --git a/etc/templates/compressibleInflowOutflow/system/blockMeshDict b/etc/templates/compressibleInflowOutflow/system/blockMeshDict index a761d4fecbf635b99c4b2b96adf95ea9564b54a8..a362f0657cf7afd7bce061c517475b62bc38b81f 100644 --- a/etc/templates/compressibleInflowOutflow/system/blockMeshDict +++ b/etc/templates/compressibleInflowOutflow/system/blockMeshDict @@ -27,7 +27,7 @@ backgroundMesh zCells 20; } -convertToMeters 1; +scale 1; vertices ( diff --git a/etc/templates/inflowOutflow/system/blockMeshDict b/etc/templates/inflowOutflow/system/blockMeshDict index a761d4fecbf635b99c4b2b96adf95ea9564b54a8..a362f0657cf7afd7bce061c517475b62bc38b81f 100644 --- a/etc/templates/inflowOutflow/system/blockMeshDict +++ b/etc/templates/inflowOutflow/system/blockMeshDict @@ -27,7 +27,7 @@ backgroundMesh zCells 20; } -convertToMeters 1; +scale 1; vertices ( diff --git a/etc/templates/inflowOutflowRotating/system/blockMeshDict b/etc/templates/inflowOutflowRotating/system/blockMeshDict index 6de435522b15d1bf20596aec570c7794a55b1db3..155d6eb364eaf8bb883494599c236e1a83ee4e4c 100644 --- a/etc/templates/inflowOutflowRotating/system/blockMeshDict +++ b/etc/templates/inflowOutflowRotating/system/blockMeshDict @@ -58,7 +58,7 @@ geometry } } -convertToMeters 1; +scale 1; vertices ( diff --git a/etc/templates/inflowOutflowRotating/system/blockMeshDict-box b/etc/templates/inflowOutflowRotating/system/blockMeshDict-box index a761d4fecbf635b99c4b2b96adf95ea9564b54a8..a362f0657cf7afd7bce061c517475b62bc38b81f 100644 --- a/etc/templates/inflowOutflowRotating/system/blockMeshDict-box +++ b/etc/templates/inflowOutflowRotating/system/blockMeshDict-box @@ -27,7 +27,7 @@ backgroundMesh zCells 20; } -convertToMeters 1; +scale 1; vertices ( diff --git a/src/mesh/blockMesh/blockMesh/blockMesh.H b/src/mesh/blockMesh/blockMesh/blockMesh.H index 01f9bf6411b0bf7e1e9675d818d4ab3f1c4cb821..74471c8e90068217996d88238b593b9734d29da7 100644 --- a/src/mesh/blockMesh/blockMesh/blockMesh.H +++ b/src/mesh/blockMesh/blockMesh/blockMesh.H @@ -157,7 +157,7 @@ class blockMesh void createPatches() const; //- As copy (not implemented) - blockMesh(const blockMesh&); + blockMesh(const blockMesh&) = delete; public: diff --git a/src/mesh/blockMesh/blockMesh/blockMeshTopology.C b/src/mesh/blockMesh/blockMesh/blockMeshTopology.C index ff275c852e6b69c484306d64126ab320fdcf8718..f270e4a20594f7ceec6f6bbe913ba1832f5591a0 100644 --- a/src/mesh/blockMesh/blockMesh/blockMeshTopology.C +++ b/src/mesh/blockMesh/blockMesh/blockMeshTopology.C @@ -362,6 +362,12 @@ Foam::polyMesh* Foam::blockMesh::createTopology meshDescription.readIfPresent("scale", scaleFactor_); } + // Require (scale > 0), treat (scale <= 0) as scaling == 1 (no scaling). + if (scaleFactor_ <= 0) + { + scaleFactor_ = 1.0; + } + // Read the block edges if (meshDescription.found("edges")) { diff --git a/tutorials/DNS/dnsFoam/boxTurb16/system/blockMeshDict b/tutorials/DNS/dnsFoam/boxTurb16/system/blockMeshDict index 13fb2fb7286c86d03f5908d01feb2b8778efb396..0f4cb459b8e019c079cc0b11f23dc44fe0733531 100644 --- a/tutorials/DNS/dnsFoam/boxTurb16/system/blockMeshDict +++ b/tutorials/DNS/dnsFoam/boxTurb16/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/blockMeshDict b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/blockMeshDict index 40ae9f45e9eb7a40c39ef97db9c0342161aa84f2..796996860a37cde4550e4090b11065550ecb3a60 100644 --- a/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/blockMeshDict +++ b/tutorials/basic/overLaplacianDyMFoam/heatTransfer/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/basic/potentialFoam/cylinder/system/blockMeshDict b/tutorials/basic/potentialFoam/cylinder/system/blockMeshDict index c64d03f7786f8b12c9671fbc034dba21e5c09986..b8d2e44337fb657226f3ceef221924836110f319 100644 --- a/tutorials/basic/potentialFoam/cylinder/system/blockMeshDict +++ b/tutorials/basic/potentialFoam/cylinder/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices #codeStream { diff --git a/tutorials/basic/potentialFoam/pitzDaily/system/blockMeshDict b/tutorials/basic/potentialFoam/pitzDaily/system/blockMeshDict index d56a5091ae9d7007bfc68a10d69b1274096ade93..66b270d144197ccfbbfee5c1570e87e1a776837c 100644 --- a/tutorials/basic/potentialFoam/pitzDaily/system/blockMeshDict +++ b/tutorials/basic/potentialFoam/pitzDaily/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/basic/scalarTransportFoam/pitzDaily/system/blockMeshDict b/tutorials/basic/scalarTransportFoam/pitzDaily/system/blockMeshDict index d56a5091ae9d7007bfc68a10d69b1274096ade93..66b270d144197ccfbbfee5c1570e87e1a776837c 100644 --- a/tutorials/basic/scalarTransportFoam/pitzDaily/system/blockMeshDict +++ b/tutorials/basic/scalarTransportFoam/pitzDaily/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/blockMeshDict b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/blockMeshDict index 4f138a91411a86b1a51d8b94b6c6b5a5f2393eff..4c0c4c02b3dfc4ee167052c47a8f51b84e2b28b8 100644 --- a/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/blockMeshDict +++ b/tutorials/combustion/PDRFoam/flamePropagationWithObstacles/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1.0; +scale 1.0; vertices ( diff --git a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/blockMeshDict b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/blockMeshDict index 00a191e545782e3a096a2b93cda5003668e1403b..e7527c477d3baec46628a96016713b48cf8394f5 100644 --- a/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/blockMeshDict +++ b/tutorials/combustion/XiDyMFoam/oscillatingCylinder/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/blockMeshDict b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/blockMeshDict index 0d793511f270a0866ef4d00eabcd9a272a0bf3c3..976d0daf0cb0477553075aa274c9d7252c7310de 100644 --- a/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/blockMeshDict +++ b/tutorials/combustion/XiFoam/RAS/moriyoshiHomogeneous/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/combustion/fireFoam/LES/compartmentFire/system/blockMeshDict.m4 b/tutorials/combustion/fireFoam/LES/compartmentFire/system/blockMeshDict.m4 index 77daf3a70a5306175a8bafb5b2137a3bc59c1658..5ac0fa128b2a1c7a7cd9f2d4629ad03b3f7531b2 100644 --- a/tutorials/combustion/fireFoam/LES/compartmentFire/system/blockMeshDict.m4 +++ b/tutorials/combustion/fireFoam/LES/compartmentFire/system/blockMeshDict.m4 @@ -23,7 +23,7 @@ define(vlabel, [[// ]Vertex $1 = VCOUNT define($1, VCOUNT)define([VCOUNT], incr( define(pi, 3.14159265) define(angle, 45) -convertToMeters 1; +scale 1; /* User parameter for geometry */ define(L_square, 0.06) diff --git a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/blockMeshDict b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/blockMeshDict index f9b31c018456089859f4e5fcc78662a5f8c504a9..8307097c25fb3e2af2fd6f5d21f10ebed45e8815 100644 --- a/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/blockMeshDict +++ b/tutorials/combustion/fireFoam/LES/flameSpreadWaterSuppressionPanel/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/blockMeshDict b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/blockMeshDict index 3c5f8544aa5fba113d96254dc0446328defe34de..168c11c859455f5d4e3501a196bcf4e90baf2507 100644 --- a/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/blockMeshDict +++ b/tutorials/combustion/fireFoam/LES/oppositeBurningPanels/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/blockMeshDict b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/blockMeshDict index a98922be864ff3ac7929a9aef8db3a9b9d587792..642b2f8dc352b0368602e9efa979fc610a934418 100644 --- a/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/blockMeshDict +++ b/tutorials/combustion/fireFoam/LES/simplePMMApanel/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/blockMeshDict b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/blockMeshDict index cb3cfa521d5bc4057a2b641f8f2a1db6b32b6b3d..d4c5e2cccd651bff4ace2a7933cfaf292eb6fe40 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/blockMeshDict +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire2D/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/blockMeshDict b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/blockMeshDict index c0ef30e98b43a0cd07b771355485b122b58596b8..0d9654b28949fd4ccea9d7d844ef71ba332fdb28 100644 --- a/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/blockMeshDict +++ b/tutorials/combustion/fireFoam/LES/smallPoolFire3D/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/blockMeshDict b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/blockMeshDict index cfb49f89b100573c11f4929f4dd0df2ac0e5858a..0dce920e40ca7425943d49546a8272c0d78f7f89 100644 --- a/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/RAS/DLR_A_LTS/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; R1X 3.99619288633; R2X 4.49571699712; diff --git a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/blockMeshDict b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/blockMeshDict index 92054dd89339a1135a77fada1a6362a5ab46506c..d317daf07e74b8cf9f33570a36973f9591ede986 100644 --- a/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/RAS/SandiaD_LTS/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/blockMeshDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/blockMeshDict index f0f06a591bcdb4a0797ba7a4ed8ab06e189d8154..915d5eea8148c6d1ab4a2825e408bb44bee4d728 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/blockMeshDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/blockMeshDict index f0f06a591bcdb4a0797ba7a4ed8ab06e189d8154..915d5eea8148c6d1ab4a2825e408bb44bee4d728 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/blockMeshDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/blockMeshDict index f0f06a591bcdb4a0797ba7a4ed8ab06e189d8154..915d5eea8148c6d1ab4a2825e408bb44bee4d728 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2DLTS_GRI_TDAC/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/blockMeshDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/blockMeshDict index f0f06a591bcdb4a0797ba7a4ed8ab06e189d8154..915d5eea8148c6d1ab4a2825e408bb44bee4d728 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/blockMeshDict b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/blockMeshDict index f0f06a591bcdb4a0797ba7a4ed8ab06e189d8154..915d5eea8148c6d1ab4a2825e408bb44bee4d728 100644 --- a/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/blockMeshDict +++ b/tutorials/combustion/reactingFoam/laminar/counterFlowFlame2D_GRI_TDAC/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/compressible/rhoCentralDyMFoam/movingCone/system/blockMeshDict b/tutorials/compressible/rhoCentralDyMFoam/movingCone/system/blockMeshDict index 5152e8af6bfbaf631bf05189716556ced936f2fa..fe38daba6e79758969f0f70970a26724d1872692 100644 --- a/tutorials/compressible/rhoCentralDyMFoam/movingCone/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralDyMFoam/movingCone/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/blockMeshDict b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/blockMeshDict index 75d0ca9c52219161a20ef70a5c683f02698af753..13536af92287fb7e84640f83c628cff36cae1de4 100644 --- a/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralFoam/LadenburgJet60psi/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/blockMeshDict b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/blockMeshDict index a3da683455b590b1922c0304631615aa8074dea0..4eed4bb99dd4ea62f9da10d817878c406dce22b7 100644 --- a/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralFoam/biconic25-55Run35/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/compressible/rhoCentralFoam/forwardStep/system/blockMeshDict b/tutorials/compressible/rhoCentralFoam/forwardStep/system/blockMeshDict index 2b4319734d273737d33d71f04f2e7dca6c1f4172..efc627a8072382ec143cc8e6c9f27c2809e8e9db 100644 --- a/tutorials/compressible/rhoCentralFoam/forwardStep/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralFoam/forwardStep/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/compressible/rhoCentralFoam/obliqueShock/system/blockMeshDict b/tutorials/compressible/rhoCentralFoam/obliqueShock/system/blockMeshDict index 0556cb061a930434e1830412a3f0efcc89764c1e..e1c8a62ce9bc8698706021c39ee037f1a553e044 100644 --- a/tutorials/compressible/rhoCentralFoam/obliqueShock/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralFoam/obliqueShock/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/compressible/rhoCentralFoam/shockTube/system/blockMeshDict b/tutorials/compressible/rhoCentralFoam/shockTube/system/blockMeshDict index f606cb1655a259b4ebb9ef523c410b32a6b2fdd1..5a4749aab37656491a79d55bf4e900d4c935d22f 100644 --- a/tutorials/compressible/rhoCentralFoam/shockTube/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralFoam/shockTube/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/blockMeshDict b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/blockMeshDict index a82a8e3742f66aa420b9f7a9a42772bdd1ece520..2b2736ec3cb40a3e0762456e48f11903d25711b6 100644 --- a/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/blockMeshDict +++ b/tutorials/compressible/rhoCentralFoam/wedge15Ma5/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/blockMeshDict b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/blockMeshDict index 213fe055b14f0cf4037df2b6f1a58e5d6ec5872c..d6485a47679b925cdfa59fefeaeadef1d94d8e65 100644 --- a/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleAdiabaticFoam/rutlandVortex2D/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // D = 0.57 -convertToMeters 0.57; +scale 0.57; x0 -3.5; x1 1.8; diff --git a/tutorials/compressible/rhoPimpleDyMFoam/annularThermalMixer/system/blockMeshDict b/tutorials/compressible/rhoPimpleDyMFoam/annularThermalMixer/system/blockMeshDict index 959bb051905ea8a81ca1dc4fe9e1479bfb79a037..8400e089f9d8f50b09b7caa81e80bc99fadb8f95 100644 --- a/tutorials/compressible/rhoPimpleDyMFoam/annularThermalMixer/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleDyMFoam/annularThermalMixer/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/blockMeshDict index d56a5091ae9d7007bfc68a10d69b1274096ade93..66b270d144197ccfbbfee5c1570e87e1a776837c 100644 --- a/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/LES/pitzDaily/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/blockMeshDict index 60af047d0414ddbcd35b7dc40819d9a3192b6ff6..7c9012bc920021b45c7307c3bbf020e9acfa2885 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/TJunction/system/blockMeshDict @@ -30,7 +30,7 @@ FoamFile // +-+ // outlet2 -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/blockMeshDict.m4 b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/blockMeshDict.m4 index 378e93531400cb34280e87cd24fd3fee5feb3bfd..17988e2f4429aabb0948372f36888b6186be9a30 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/blockMeshDict.m4 +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuct/system/blockMeshDict.m4 @@ -59,7 +59,7 @@ define(xoutlet,calc(xporo + Cos*lenoutlet)) dnl> define(youtlet,calc(yporo + Sin*lenoutlet)) dnl> dnl> -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/blockMeshDict.m4 b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/blockMeshDict.m4 index c00bb933d47874af3198ccac4c7c97781a6cf6a8..fe2b1b84385eeb2a485a07aa56e561dacb8872d7 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/blockMeshDict.m4 +++ b/tutorials/compressible/rhoPimpleFoam/RAS/angledDuctLTS/system/blockMeshDict.m4 @@ -59,7 +59,7 @@ define(xoutlet,calc(xporo + Cos*lenoutlet)) dnl> define(youtlet,calc(yporo + Sin*lenoutlet)) dnl> dnl> -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/blockMeshDict index 5f58428dd6957756f1e7d66e8d9a31e95ad07e8c..6c09069cce78a74eb7a1f40bb1e2350e46a2d75d 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/cavity/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/blockMeshDict.m4 b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/blockMeshDict.m4 index 978c365452b845edab1fb846ab3b5acbff7a4937..367e7b66fd25491135bb4d5aa64abbb54d247aee 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/blockMeshDict.m4 +++ b/tutorials/compressible/rhoPimpleFoam/RAS/mixerVessel2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, ($1b $4b $3b $2b)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; // Hub radius define(r, 0.2) diff --git a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/blockMeshDict index adb98d2811fd4c484c96ea00cb54d256b3826c8f..4980330b276ee58150f1593f0ba9b6b23c383520 100644 --- a/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/RAS/squareBendLiq/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/blockMeshDict index 307264d51b965a5113474fd9f58ea033d1d73a5f..d01bd8d2a67e6e22275eb55faf304f3fbeb44af6 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/laminar/helmholtzResonance/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.0025; +scale 0.0025; vertices ( diff --git a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/blockMeshDict b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/blockMeshDict index 55efa8b2c4600904e08464283cd1d34338dfa99c..cddd6f08c0ad412db33870a3f0f787ac61159365 100644 --- a/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/blockMeshDict +++ b/tutorials/compressible/rhoPimpleFoam/laminar/sineWaveDamping/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/blockMeshDict.m4 b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/blockMeshDict.m4 index c00bb933d47874af3198ccac4c7c97781a6cf6a8..fe2b1b84385eeb2a485a07aa56e561dacb8872d7 100644 --- a/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/blockMeshDict.m4 +++ b/tutorials/compressible/rhoPorousSimpleFoam/angledDuct/common/blockMeshDict.m4 @@ -59,7 +59,7 @@ define(xoutlet,calc(xporo + Cos*lenoutlet)) dnl> define(youtlet,calc(yporo + Sin*lenoutlet)) dnl> dnl> -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/blockMeshDict.m4 b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/blockMeshDict.m4 index c00bb933d47874af3198ccac4c7c97781a6cf6a8..fe2b1b84385eeb2a485a07aa56e561dacb8872d7 100644 --- a/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/blockMeshDict.m4 +++ b/tutorials/compressible/rhoSimpleFoam/angledDuctExplicitFixedCoeff/system/blockMeshDict.m4 @@ -59,7 +59,7 @@ define(xoutlet,calc(xporo + Cos*lenoutlet)) dnl> define(youtlet,calc(yporo + Sin*lenoutlet)) dnl> dnl> -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/compressible/rhoSimpleFoam/squareBend/system/blockMeshDict b/tutorials/compressible/rhoSimpleFoam/squareBend/system/blockMeshDict index adb98d2811fd4c484c96ea00cb54d256b3826c8f..4980330b276ee58150f1593f0ba9b6b23c383520 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBend/system/blockMeshDict +++ b/tutorials/compressible/rhoSimpleFoam/squareBend/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/blockMeshDict b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/blockMeshDict index adb98d2811fd4c484c96ea00cb54d256b3826c8f..4980330b276ee58150f1593f0ba9b6b23c383520 100644 --- a/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/blockMeshDict +++ b/tutorials/compressible/rhoSimpleFoam/squareBendLiq/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/compressible/sonicDyMFoam/movingCone/system/blockMeshDict b/tutorials/compressible/sonicDyMFoam/movingCone/system/blockMeshDict index 5152e8af6bfbaf631bf05189716556ced936f2fa..fe38daba6e79758969f0f70970a26724d1872692 100644 --- a/tutorials/compressible/sonicDyMFoam/movingCone/system/blockMeshDict +++ b/tutorials/compressible/sonicDyMFoam/movingCone/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/compressible/sonicFoam/RAS/prism/system/blockMeshDict b/tutorials/compressible/sonicFoam/RAS/prism/system/blockMeshDict index 5a6793f5bf2956f6f4ecdc23a2d87c5e487b871e..e49cae32bcca3ae34004a0cdb594906662d4167d 100644 --- a/tutorials/compressible/sonicFoam/RAS/prism/system/blockMeshDict +++ b/tutorials/compressible/sonicFoam/RAS/prism/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.01; +scale 0.01; vertices ( diff --git a/tutorials/compressible/sonicFoam/laminar/forwardStep/system/blockMeshDict b/tutorials/compressible/sonicFoam/laminar/forwardStep/system/blockMeshDict index e16345acd198662ec0ed363939ab7e121104cece..2cba17b774924dd1c1f043ea09c0f76662199273 100644 --- a/tutorials/compressible/sonicFoam/laminar/forwardStep/system/blockMeshDict +++ b/tutorials/compressible/sonicFoam/laminar/forwardStep/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/compressible/sonicFoam/laminar/shockTube/system/blockMeshDict b/tutorials/compressible/sonicFoam/laminar/shockTube/system/blockMeshDict index c8dd603ebd55c765c2b7867d1b41cfa7e16a090a..4ae38c119a6b447813ecdc6a4093fede4877177b 100644 --- a/tutorials/compressible/sonicFoam/laminar/shockTube/system/blockMeshDict +++ b/tutorials/compressible/sonicFoam/laminar/shockTube/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/blockMeshDict b/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/blockMeshDict index 4c357b3d07da353a7e16352eea005e31031f4aa2..ad79f714502612db94683b690e1f5c57a40a4976 100644 --- a/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/blockMeshDict +++ b/tutorials/compressible/sonicLiquidFoam/decompressionTank/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/blockMeshDict b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/blockMeshDict index e5167bcf141c3304f893128f57ead8046babf99b..1150c8fbe6ed521c08869fb5cb3a33dbcc86d788 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/blockMeshDict +++ b/tutorials/discreteMethods/dsmcFoam/freeSpacePeriodic/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.01; +scale 0.01; vertices ( diff --git a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/blockMeshDict b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/blockMeshDict index 3f7dd9093ad9063cee937dd4eefeb01876b414de..b7b33c3fcdc6c095c552c586accb3a7c35eaf1f6 100644 --- a/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/blockMeshDict +++ b/tutorials/discreteMethods/dsmcFoam/freeSpaceStream/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.01; +scale 0.01; vertices ( diff --git a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/blockMeshDict b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/blockMeshDict index fb0e830e43ffee3ebf96b63786835b9fcff39633..324c57126f83322b1d14eabad823e65035abfafa 100644 --- a/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/blockMeshDict +++ b/tutorials/discreteMethods/dsmcFoam/supersonicCorner/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.01; +scale 0.01; vertices ( diff --git a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/blockMeshDict b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/blockMeshDict index f6b6e32c1879050ea1e1bbb26c173378463c665a..7570d2772f1f19fc717a0b12c7a980c5ea5fdcd5 100644 --- a/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/blockMeshDict +++ b/tutorials/discreteMethods/dsmcFoam/wedge15Ma5/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/blockMeshDict b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/blockMeshDict index fd5a034c99902b0b338984adf89d447312fb3697..ebac510393719641fa29710ef8b61ebce749975d 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/blockMeshDict +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeArgon/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 2.462491658e-9; +scale 2.462491658e-9; vertices ( diff --git a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/blockMeshDict b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/blockMeshDict index 2afa81ddd042ef14eebb1121a7021ba05ead3fe7..f2dcdece1f812fc850e7327a758ee7e946e72e9e 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/blockMeshDict +++ b/tutorials/discreteMethods/molecularDynamics/mdEquilibrationFoam/periodicCubeWater/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 2.10840e-9; +scale 2.10840e-9; vertices ( diff --git a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/blockMeshDict b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/blockMeshDict index ff30428ef68118d3940e258678357815c6a26245..29d923b2e53135fb509c197fef09351ac2cc0b2e 100644 --- a/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/blockMeshDict +++ b/tutorials/discreteMethods/molecularDynamics/mdFoam/nanoNozzle/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 3.2e-9; +scale 3.2e-9; vertices ( diff --git a/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/blockMeshDict b/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/blockMeshDict index 51474f9320d9a3e2ac0e9d4b2ba9c0813cd3eb28..e4f6c2965418565a0db80534ba6f3953002307d0 100644 --- a/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/blockMeshDict +++ b/tutorials/electromagnetics/electrostaticFoam/chargedWire/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/electromagnetics/mhdFoam/hartmann/system/blockMeshDict b/tutorials/electromagnetics/mhdFoam/hartmann/system/blockMeshDict index 66352a5e1c485e9d7b44f1a806015c09687a1fb0..7fae23a65342b6ba0fd44b609540f016cb95106a 100644 --- a/tutorials/electromagnetics/mhdFoam/hartmann/system/blockMeshDict +++ b/tutorials/electromagnetics/mhdFoam/hartmann/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/financial/financialFoam/europeanCall/system/blockMeshDict b/tutorials/financial/financialFoam/europeanCall/system/blockMeshDict index 51153e2c4cfb4e2e05adbc44a41c80b07729d5eb..8cd2be990e9b079389b7bc1c123d758c29cc8e04 100644 --- a/tutorials/financial/financialFoam/europeanCall/system/blockMeshDict +++ b/tutorials/financial/financialFoam/europeanCall/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 200; +scale 200; vertices ( diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BernardCells/system/blockMeshDict b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BernardCells/system/blockMeshDict index 7c0a440b5188ca09e140b4df6a1eb9f827fd2f6d..1f58ded07ef8ec4d82c3573efac69b840e3d2fe0 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BernardCells/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/BernardCells/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/blockMeshDict b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/blockMeshDict index 9bfe4d9421f292287c5a8711552a70835bff82f4..6fdfe76425ef6b9ac1873b5cd4ae95895f2bda80 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantBoussinesqPimpleFoam/hotRoom/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/blockMeshDict b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/blockMeshDict index 9bfe4d9421f292287c5a8711552a70835bff82f4..6fdfe76425ef6b9ac1873b5cd4ae95895f2bda80 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/hotRoom/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/blockMeshDict b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/blockMeshDict index 48842c478ffb8c4b953749e075463ab71a98f5a2..98f4f94479072474955d27bf6ad87b354a5a3de0 100644 --- a/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantBoussinesqSimpleFoam/iglooWithFridges/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/blockMeshDict b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/blockMeshDict index 9bfe4d9421f292287c5a8711552a70835bff82f4..6fdfe76425ef6b9ac1873b5cd4ae95895f2bda80 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantPimpleFoam/hotRoom/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/blockMeshDict b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/blockMeshDict index 721d41763b0e64bcf5635825909b426ae6e2a37c..f733e498157c9d3f2a9683659db25704e4bb9bac 100644 --- a/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantPimpleFoam/thermocoupleTestCase/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/blockMeshDict b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/blockMeshDict index 0f23434d102a8159baa6392c3c5bf65ac4eadc7d..ec9a48732b9e279aa05783c7f77aad175b4bb013 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/buoyantCavity/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/blockMeshDict b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/blockMeshDict index daf6afe0b25f4918d6c90233a4c17e739d7bcbeb..a0b1674a956c7c48b20d144a88286dc3000ffb09 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/circuitBoardCooling/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/blockMeshDict b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/blockMeshDict index 68747c9b2b9a254de894a59305f661345186a826..ae7f223b839221a487bd63b5ec910ee8d03f586f 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoom/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/blockMeshDict b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/blockMeshDict index 68747c9b2b9a254de894a59305f661345186a826..ae7f223b839221a487bd63b5ec910ee8d03f586f 100644 --- a/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/blockMeshDict +++ b/tutorials/heatTransfer/buoyantSimpleFoam/hotRadiationRoomFvDOM/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledMultiRegionHeater/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledMultiRegionHeater/system/blockMeshDict index a0349cb81d2eca0501774b84c259945ad233b6c6..2ba9dce030268362add167d187e275c6af67bdcb 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledMultiRegionHeater/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalCoupledMultiRegionHeater/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/blockMeshDict index 30d8e71a56901e82237c0349111bd8abd2a425fa..6e691ae405e1a5fafcc6dbd4bcfa11a2487632d1 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/externalSolarLoad/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/blockMeshDict index a0349cb81d2eca0501774b84c259945ad233b6c6..2ba9dce030268362add167d187e275c6af67bdcb 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/multiRegionHeater/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/blockMeshDict index a0349cb81d2eca0501774b84c259945ad233b6c6..2ba9dce030268362add167d187e275c6af67bdcb 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/snappyMultiRegionHeater/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/blockMeshDict index 9ce5aac52d0b5c4b0c6949dc0a1e78ba272e7bfa..635757f74e605df1b0453f864d5ca3315d3cf910 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldCondensation/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/blockMeshDict index 24b4060e2fac9ac8c5e64572729e119b63335305..55c2af8a2b2fa20ae87328dc725f252c8431c81b 100644 --- a/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionFoam/windshieldDefrost/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/blockMeshDict index 52ffe9012ad85dcff472381e41607020b5536282..12be2b50723c76b2aab80131d1802b2ec3b80687 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/air/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.05; +scale 0.05; vertices ( diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/blockMeshDict index 97861ae85bcc1e5bce35966371e1968797c69fea..7ff6efbd2bd41a5c215b84207a03a8290eb7e660 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger/system/porous/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.05; +scale 0.05; vertices ( diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/blockMeshDict index aad40c34c05f32dc3e2a59a878501abeadb2ef7c..531015dacfdd1e5bdb46c242f153679009061cbc 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/jouleHeatingSolid/system/solid/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/blockMeshDict b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/blockMeshDict index a0349cb81d2eca0501774b84c259945ad233b6c6..2ba9dce030268362add167d187e275c6af67bdcb 100644 --- a/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/blockMeshDict +++ b/tutorials/heatTransfer/chtMultiRegionSimpleFoam/multiRegionHeaterRadiation/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/blockMeshDict.m4 b/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/blockMeshDict.m4 index 3ad72932a46a6bd0f1e8d9316ffb909a35621381..7d49c594ab917e58c28836fda7351cf5bf302e9e 100644 --- a/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/blockMeshDict.m4 +++ b/tutorials/incompressible/SRFPimpleFoam/rotor2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, ($1b $4b $3b $2b)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; // Hub radius define(r, 0.05) diff --git a/tutorials/incompressible/SRFSimpleFoam/mixer/system/blockMeshDict b/tutorials/incompressible/SRFSimpleFoam/mixer/system/blockMeshDict index e639055dd64c9332b9108e93577df1c6a12a2afa..a79087ab1dfcad4d0686ab851647049169664fd8 100644 --- a/tutorials/incompressible/SRFSimpleFoam/mixer/system/blockMeshDict +++ b/tutorials/incompressible/SRFSimpleFoam/mixer/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/blockMeshDict b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/blockMeshDict index d56a5091ae9d7007bfc68a10d69b1274096ade93..66b270d144197ccfbbfee5c1570e87e1a776837c 100644 --- a/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/blockMeshDict +++ b/tutorials/incompressible/adjointShapeOptimizationFoam/pitzDaily/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/system/blockMeshDict b/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/system/blockMeshDict index 5680de324744a8c2f530938886bee11e55d4e0a0..4a193339cc21fd3f559f76bb2c27939bfe880df9 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/system/blockMeshDict +++ b/tutorials/incompressible/boundaryFoam/boundaryLaunderSharma/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.05; +scale 0.05; vertices ( diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/system/blockMeshDict b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/system/blockMeshDict index efdd0f17b49c8e13830c7b2e86ed8ee3f2abb3aa..22a4a5d74374a0b9ee48a692fca3e6ec0dc6bdf3 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/system/blockMeshDict +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctions/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.05; +scale 0.05; vertices ( diff --git a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/system/blockMeshDict b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/system/blockMeshDict index efdd0f17b49c8e13830c7b2e86ed8ee3f2abb3aa..22a4a5d74374a0b9ee48a692fca3e6ec0dc6bdf3 100644 --- a/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/system/blockMeshDict +++ b/tutorials/incompressible/boundaryFoam/boundaryWallFunctionsProfile/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.05; +scale 0.05; vertices ( diff --git a/tutorials/incompressible/icoFoam/cavity/cavity/system/blockMeshDict b/tutorials/incompressible/icoFoam/cavity/cavity/system/blockMeshDict index 5f58428dd6957756f1e7d66e8d9a31e95ad07e8c..6c09069cce78a74eb7a1f40bb1e2350e46a2d75d 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavity/system/blockMeshDict +++ b/tutorials/incompressible/icoFoam/cavity/cavity/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/blockMeshDict b/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/blockMeshDict index 645f42c5c25838a6d94db3d41c514b1abf46927f..9223258b942d59deeced5721bb321db5a4990669 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/blockMeshDict +++ b/tutorials/incompressible/icoFoam/cavity/cavityClipped/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/blockMeshDict b/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/blockMeshDict index 597d2b6650dc35ecb111a133eac0a4fb4aa04b8e..41f72c55f8a424dcd15eb3f340f5630cb3b2beab 100644 --- a/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/blockMeshDict +++ b/tutorials/incompressible/icoFoam/cavity/cavityGrade/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.coarse b/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.coarse index 3118c894d875f5cf3287d1714402b6bd2cd2f48f..6b7e69ca49f5fd62bb46fc54438cc27a4ec33bca 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.coarse +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.coarse @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.fine b/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.fine index ff18fe91723135de7fa3e1ba09eba593d88f9d53..65d9c283fdd10bed86fc400aa6b22242d39e0197 100644 --- a/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.fine +++ b/tutorials/incompressible/icoFoam/cavityMappingTest/system/blockMeshDict.fine @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/incompressible/lumpedPointMotion/building/steady/system/blockMeshDict b/tutorials/incompressible/lumpedPointMotion/building/steady/system/blockMeshDict index f74ade9f7a5961d6fd09d7fee605c724f670d87c..7741cd76dfdd07cc8688294396bf7084aaf8f246 100644 --- a/tutorials/incompressible/lumpedPointMotion/building/steady/system/blockMeshDict +++ b/tutorials/incompressible/lumpedPointMotion/building/steady/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/blockMeshDict b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/blockMeshDict index ae0eea03723f428b23f71a6574e3862a44e375db..29d3d602e6134c74a969d910a40a80b346ff4021 100644 --- a/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/blockMeshDict +++ b/tutorials/incompressible/nonNewtonianIcoFoam/offsetCylinder/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/blockMeshDict b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/blockMeshDict index 6e5e98888be4752510adbf4213f7e06441cdc761..40b57fce6f4bbc4cca2bbff8443a0bd8914e9857 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/blockMeshDict +++ b/tutorials/incompressible/overPimpleDyMFoam/cylinder/cylinderAndBackground/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/blockMeshDict b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/blockMeshDict index 7e5a21da5f53e67d393bb9c85279dc96e0fbfb36..bc0d9c02a8c1818e182f90c0a1a92a38ba1c8efd 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/blockMeshDict +++ b/tutorials/incompressible/overPimpleDyMFoam/simpleRotor/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.01; +scale 0.01; vertices ( diff --git a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/blockMeshDict b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/blockMeshDict index e2fe1595c6346ff2a83268e66a0a1f452b3bf7df..abcbd45e7949729afa2f1856b525581d50f53330 100644 --- a/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/blockMeshDict +++ b/tutorials/incompressible/overPimpleDyMFoam/twoSimpleRotors/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.01; +scale 0.01; vertices ( diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/blockMeshDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/blockMeshDict index f539f6c928209ce89c02cae600f6010f1f7e601d..5c5c3b5727f6010e06ae0c06e8f5962f1b7bde4f 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/blockMeshDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/aeroFoil_snappyHexMesh/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/blockMeshDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/blockMeshDict index 9c95d3eac673927d7ed24e3d5c3b1a4476938555..fbf525e19667dba723b3153d5591421fb1bc0882 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/blockMeshDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_overset/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/blockMeshDict b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/blockMeshDict index 5151eb3c5f61e739724cbbfcbeb95f73a74e716e..500a2ca931113509e7c781f2a1ca7629030373d4 100644 --- a/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/blockMeshDict +++ b/tutorials/incompressible/overSimpleFoam/aeroFoil/background_snappyHexMesh/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/system/blockMeshDict.m4 b/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/system/blockMeshDict.m4 index 30653d758b6963131c3f4cba55d920960de1c306..8a9a3ffdb1b21fb7901ef47891c2ca9df9f61684 100644 --- a/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/system/blockMeshDict.m4 +++ b/tutorials/incompressible/pimpleDyMFoam/mixerVesselAMI2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, ($1b $4b $3b $2b)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; // Hub radius define(r, 0.2) diff --git a/tutorials/incompressible/pimpleDyMFoam/movingCone/system/blockMeshDict b/tutorials/incompressible/pimpleDyMFoam/movingCone/system/blockMeshDict index 5152e8af6bfbaf631bf05189716556ced936f2fa..fe38daba6e79758969f0f70970a26724d1872692 100644 --- a/tutorials/incompressible/pimpleDyMFoam/movingCone/system/blockMeshDict +++ b/tutorials/incompressible/pimpleDyMFoam/movingCone/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/incompressible/pimpleDyMFoam/oscillatingInletACMI2D/system/blockMeshDict b/tutorials/incompressible/pimpleDyMFoam/oscillatingInletACMI2D/system/blockMeshDict index 4918eee995cc034859f2772944530e7a3f6ddf6b..d4cebc01007db04af98f628b60dd48265838473c 100644 --- a/tutorials/incompressible/pimpleDyMFoam/oscillatingInletACMI2D/system/blockMeshDict +++ b/tutorials/incompressible/pimpleDyMFoam/oscillatingInletACMI2D/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/pimpleDyMFoam/oscillatingInletPeriodicAMI2D/system/blockMeshDict b/tutorials/incompressible/pimpleDyMFoam/oscillatingInletPeriodicAMI2D/system/blockMeshDict index a674ddb2d5b60f5dba93539756c850f18a436016..09c1c6222ec39999bb55ec2da60936235ec7e539 100644 --- a/tutorials/incompressible/pimpleDyMFoam/oscillatingInletPeriodicAMI2D/system/blockMeshDict +++ b/tutorials/incompressible/pimpleDyMFoam/oscillatingInletPeriodicAMI2D/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/pimpleDyMFoam/propeller/system/blockMeshDict b/tutorials/incompressible/pimpleDyMFoam/propeller/system/blockMeshDict index a3e0711203427b31af900e54a610d7c7bd9313ad..e2e3a627557322719bd5f80b220665c940d209d9 100644 --- a/tutorials/incompressible/pimpleDyMFoam/propeller/system/blockMeshDict +++ b/tutorials/incompressible/pimpleDyMFoam/propeller/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion_snappyHexMesh/system/blockMeshDict b/tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion_snappyHexMesh/system/blockMeshDict index b245a81c2d641388b6742eb6ab724011544ba638..1c56ab324bc8deee45ef42e2f1b737dcae2fda0a 100644 --- a/tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion_snappyHexMesh/system/blockMeshDict +++ b/tutorials/incompressible/pimpleDyMFoam/wingMotion/wingMotion_snappyHexMesh/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/pimpleFoam/LES/channel395/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/LES/channel395/system/blockMeshDict index 7e87b0870afbc32ada6e4e7140b9af2844c5330b..f20100a529d5ab813cd0fc645924c1fa0e6bfbbe 100644 --- a/tutorials/incompressible/pimpleFoam/LES/channel395/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/LES/channel395/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/pimpleFoam/LES/channel395DFSEM/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/LES/channel395DFSEM/system/blockMeshDict index 31cee0dff7a42dfb2017b420d2225633ac333a4a..1dab70a86ae5b442323b29ee3746b2867bdec414 100644 --- a/tutorials/incompressible/pimpleFoam/LES/channel395DFSEM/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/LES/channel395DFSEM/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; L #calc "20*M_PI"; H #calc "1"; diff --git a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/blockMeshDict.m4 b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/blockMeshDict.m4 index 4d8f014df8d8c7df43d3f71224058d5b7fea338d..b0997b2c9ed8b30ecf9a2a125ca8226132cc3a67 100644 --- a/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/blockMeshDict.m4 +++ b/tutorials/incompressible/pimpleFoam/LES/vortexShed/system/blockMeshDict.m4 @@ -75,7 +75,7 @@ dnl> ----------------------------------------------------------------- dnl> dnl> -convertToMeters 0.02; +scale 0.02; vertices ( diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/blockMeshDict index 60af047d0414ddbcd35b7dc40819d9a3192b6ff6..7c9012bc920021b45c7307c3bbf020e9acfa2885 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunction/system/blockMeshDict @@ -30,7 +30,7 @@ FoamFile // +-+ // outlet2 -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/blockMeshDict index de2d4268be4b1101a39f0462c3f122d3eb94e234..ab120702e18738b2d8a3838fe2b62b96fed138c8 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/TJunctionFan/system/blockMeshDict @@ -30,7 +30,7 @@ FoamFile // +-+ // outlet2 -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/pimpleFoam/RAS/elipsekkLOmega/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/elipsekkLOmega/system/blockMeshDict index 48381779c2611cb5be862d0769e6cb1d8d14664a..6c801da10e94263392a3bce6a0afc1721e71d019 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/elipsekkLOmega/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/elipsekkLOmega/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/blockMeshDict index d56a5091ae9d7007bfc68a10d69b1274096ade93..66b270d144197ccfbbfee5c1570e87e1a776837c 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/blockMeshDict index 882d1786cb679697e8f00611f948cd90f31b19dc..2421266f80e51c92984e2ae4ef4de668cf60d7bf 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/planarContraction/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.0032; +scale 0.0032; vertices ( diff --git a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/blockMeshDict b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/blockMeshDict index 08f4f15c7bcd824ed0f12a5332f737df051a340e..75742d637533d918dafea9c08c62002658366441 100644 --- a/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/blockMeshDict +++ b/tutorials/incompressible/pimpleFoam/laminar/planarPoiseuille/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/blockMeshDict b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/blockMeshDict index 5303da9235cce4723d125110e7bfc38fde8ede74..b5569940209ae82315d57bb5a774b37ae796df6f 100644 --- a/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/blockMeshDict +++ b/tutorials/incompressible/pisoFoam/LES/motorBike/motorBike/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/blockMeshDict b/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/blockMeshDict index d56a5091ae9d7007bfc68a10d69b1274096ade93..66b270d144197ccfbbfee5c1570e87e1a776837c 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/blockMeshDict +++ b/tutorials/incompressible/pisoFoam/LES/pitzDaily/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/blockMeshDict b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/blockMeshDict index 5b5a606d92c3d21e11b600aa870220eab9319e6d..ac4f7fdaac4d092d33507cb8da1982a045db1608 100644 --- a/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/blockMeshDict +++ b/tutorials/incompressible/pisoFoam/LES/pitzDailyMapped/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/incompressible/pisoFoam/RAS/cavity/system/blockMeshDict b/tutorials/incompressible/pisoFoam/RAS/cavity/system/blockMeshDict index 5f58428dd6957756f1e7d66e8d9a31e95ad07e8c..6c09069cce78a74eb7a1f40bb1e2350e46a2d75d 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavity/system/blockMeshDict +++ b/tutorials/incompressible/pisoFoam/RAS/cavity/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/blockMeshDict b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/blockMeshDict index 5f58428dd6957756f1e7d66e8d9a31e95ad07e8c..6c09069cce78a74eb7a1f40bb1e2350e46a2d75d 100644 --- a/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/blockMeshDict +++ b/tutorials/incompressible/pisoFoam/RAS/cavityCoupledU/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/blockMeshDict b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/blockMeshDict index b597b2ba1adcb42dcc0b832c28c951353ba47eb1..24d2183215ffcb676b043da662f34725e5edf1c3 100644 --- a/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/blockMeshDict +++ b/tutorials/incompressible/pisoFoam/laminar/porousBlockage/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/blockMeshDict.m4 b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/blockMeshDict.m4 index c00bb933d47874af3198ccac4c7c97781a6cf6a8..fe2b1b84385eeb2a485a07aa56e561dacb8872d7 100644 --- a/tutorials/incompressible/porousSimpleFoam/angledDuct/common/blockMeshDict.m4 +++ b/tutorials/incompressible/porousSimpleFoam/angledDuct/common/blockMeshDict.m4 @@ -59,7 +59,7 @@ define(xoutlet,calc(xporo + Cos*lenoutlet)) dnl> define(youtlet,calc(yporo + Sin*lenoutlet)) dnl> dnl> -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/incompressible/shallowWaterFoam/squareBump/system/blockMeshDict b/tutorials/incompressible/shallowWaterFoam/squareBump/system/blockMeshDict index 4ec56a18cb159503a9af7390680d5c53703a1834..224e45bd17e7dc3d3e6a800a3a668db6018899f6 100644 --- a/tutorials/incompressible/shallowWaterFoam/squareBump/system/blockMeshDict +++ b/tutorials/incompressible/shallowWaterFoam/squareBump/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/simpleFoam/T3A/system/blockMeshDict b/tutorials/incompressible/simpleFoam/T3A/system/blockMeshDict index 168b125e1bd1f509c6469cb369a0f84afe4fd99f..ecd244898b7d802913917525bf59939dd309be0b 100644 --- a/tutorials/incompressible/simpleFoam/T3A/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/T3A/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/simpleFoam/mixerVessel2D/system/blockMeshDict.m4 b/tutorials/incompressible/simpleFoam/mixerVessel2D/system/blockMeshDict.m4 index 7af575645872d1c69eb34d26b1b79d305805dd12..a1aca5ab529ec7af115066707ddfc5a67b939b22 100644 --- a/tutorials/incompressible/simpleFoam/mixerVessel2D/system/blockMeshDict.m4 +++ b/tutorials/incompressible/simpleFoam/mixerVessel2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, ($1b $4b $3b $2b)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; // Hub radius define(r, 0.2) diff --git a/tutorials/incompressible/simpleFoam/motorBike/system/blockMeshDict b/tutorials/incompressible/simpleFoam/motorBike/system/blockMeshDict index 021d051c59318779b57f2d5c3d530f7a625bbf29..c9ab3e03420404b82b682fb9261ed348f15439f5 100644 --- a/tutorials/incompressible/simpleFoam/motorBike/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/motorBike/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/simpleFoam/pipeCyclic/system/blockMeshDict b/tutorials/incompressible/simpleFoam/pipeCyclic/system/blockMeshDict index 527f9fa8bd7406176953f5f1664a3f88283c44b8..5a6703351978a76dc106f9a1709c2bd1d343dbe9 100644 --- a/tutorials/incompressible/simpleFoam/pipeCyclic/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/pipeCyclic/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; //- Half angle of wedge in degrees halfAngle 45.0; diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/system/blockMeshDict b/tutorials/incompressible/simpleFoam/pitzDaily/system/blockMeshDict index d56a5091ae9d7007bfc68a10d69b1274096ade93..66b270d144197ccfbbfee5c1570e87e1a776837c 100644 --- a/tutorials/incompressible/simpleFoam/pitzDaily/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/pitzDaily/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/blockMeshDict b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/blockMeshDict index d56a5091ae9d7007bfc68a10d69b1274096ade93..66b270d144197ccfbbfee5c1570e87e1a776837c 100644 --- a/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/pitzDailyExptInlet/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/incompressible/simpleFoam/rotorDisk/system/blockMeshDict b/tutorials/incompressible/simpleFoam/rotorDisk/system/blockMeshDict index e4ba7976824c680313825c05aa7c980606b826d1..cde1418c230788fc4c05dd827090cc9ad5503494 100644 --- a/tutorials/incompressible/simpleFoam/rotorDisk/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/rotorDisk/system/blockMeshDict @@ -27,7 +27,7 @@ backgroundMesh zCells 12; } -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/simpleFoam/simpleCar/system/blockMeshDict b/tutorials/incompressible/simpleFoam/simpleCar/system/blockMeshDict index 17ca024daacfb04d507a97dc6a6d1122140163d5..0513d80251d6ba2e7510754a1b6e4abd72423e18 100644 --- a/tutorials/incompressible/simpleFoam/simpleCar/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/simpleCar/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/simpleFoam/turbineSiting/system/blockMeshDict b/tutorials/incompressible/simpleFoam/turbineSiting/system/blockMeshDict index 46f7aeb84b5a796e9ad1753b7f8e5f6bcdfe2cc7..20c97a3db23d269e6afd78877a16609f40d9c103 100644 --- a/tutorials/incompressible/simpleFoam/turbineSiting/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/turbineSiting/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/blockMeshDict b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/blockMeshDict index 7f4b135e82a93ccae7d71409b2e31b9cda670e04..f37e8836895bdc53d6bddb12d261e2be3671610d 100644 --- a/tutorials/incompressible/simpleFoam/windAroundBuildings/system/blockMeshDict +++ b/tutorials/incompressible/simpleFoam/windAroundBuildings/system/blockMeshDict @@ -27,7 +27,7 @@ backgroundMesh zCells 10; } -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/lagrangian/DPMFoam/Goldschmidt/system/blockMeshDict b/tutorials/lagrangian/DPMFoam/Goldschmidt/system/blockMeshDict index 34e1e95b1d9e41b024ae832e9d3620c0862b8f06..3217abcd22854fadf34a70765be1f1e16495e2f9 100644 --- a/tutorials/lagrangian/DPMFoam/Goldschmidt/system/blockMeshDict +++ b/tutorials/lagrangian/DPMFoam/Goldschmidt/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/blockMeshDict b/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/blockMeshDict index b4af0b64a7e4a66a91af80ff36b186f2b74f165b..78286f84eef10755760c5375fc0ff2e4f674203e 100644 --- a/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/blockMeshDict +++ b/tutorials/lagrangian/MPPICFoam/Goldschmidt/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/lagrangian/MPPICFoam/column/system/blockMeshDict b/tutorials/lagrangian/MPPICFoam/column/system/blockMeshDict index a9f85df5c0bc54ae1dca7554a46b92772dd86dbb..fdaa18b90fbf6154fe4f0beb23081d6761f279b1 100644 --- a/tutorials/lagrangian/MPPICFoam/column/system/blockMeshDict +++ b/tutorials/lagrangian/MPPICFoam/column/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/lagrangian/MPPICFoam/cyclone/system/blockMeshDict b/tutorials/lagrangian/MPPICFoam/cyclone/system/blockMeshDict index fb37fb568f3186069fea724b296a7b254559e76b..8bced1f9c9456bfd71438058783ea995b8e7c25e 100644 --- a/tutorials/lagrangian/MPPICFoam/cyclone/system/blockMeshDict +++ b/tutorials/lagrangian/MPPICFoam/cyclone/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/lagrangian/MPPICFoam/injectionChannel/system/blockMeshDict b/tutorials/lagrangian/MPPICFoam/injectionChannel/system/blockMeshDict index 75a13cc196ca292753269c8ba78c4576d91a4063..006d43cbf7c90c342d8b73bc4b802283ed8fa964 100644 --- a/tutorials/lagrangian/MPPICFoam/injectionChannel/system/blockMeshDict +++ b/tutorials/lagrangian/MPPICFoam/injectionChannel/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.01; +scale 0.01; vertices ( diff --git a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/blockMeshDict b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/blockMeshDict index 7b69996ad7aa67169f234572c34b0bdafeb72680..693c2aea3cf4e38351c5c8a3e42778f07a489888 100644 --- a/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/blockMeshDict +++ b/tutorials/lagrangian/coalChemistryFoam/simplifiedSiwek/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1.0; +scale 1.0; vertices ( diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/blockMeshDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/blockMeshDict index e3566a4e03ac9dc271e234ee4d424decd07fe1fc..d902868af587c599b77204b6af022324ab035612 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/blockMeshDict +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperEmptying/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/blockMeshDict b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/blockMeshDict index f67edf5308bf4adb700b0d3b71402b5893aedfc3..01cedf06cae3285eff44d3fa12e7f3c54c283601 100644 --- a/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/blockMeshDict +++ b/tutorials/lagrangian/icoUncoupledKinematicParcelFoam/hopper/hopperInitialState/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/system/blockMeshDict index 6ac91846de0643cabb4ef298bbc1fc3bd81d5942..9d5c5d8fc0632303d63db8e033db7173828d4cca 100644 --- a/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFilmFoam/cylinder/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/system/blockMeshDict index 2a949d99b6c2bed439ec517d45203b6d8d1410d1..85a622e9e53ee55cf4b2485890cd9c4f3698a3e7 100644 --- a/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFilmFoam/hotBoxes/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/system/blockMeshDict index 93874ad1ebe568558d4eafac2b3064dc2d9636f7..9dfd42dd9da6aa4d5b497ea8877f90a17b3d58c6 100644 --- a/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFilmFoam/rivuletPanel/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/system/blockMeshDict index 6a921ba8ed357f80fc084f20cf998db25d94f20c..6aa6b55c052bf61d3f5655333560d87e4f516155 100644 --- a/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFilmFoam/splashPanel/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/blockMeshDict index f0f06a591bcdb4a0797ba7a4ed8ab06e189d8154..915d5eea8148c6d1ab4a2825e408bb44bee4d728 100644 --- a/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/counterFlowFlame2DLTS/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/lagrangian/reactingParcelFoam/filter/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/filter/system/blockMeshDict index 2b6253f16c418577926f937d01efbad7a3ef432b..084681086c6d77a4bd18d90e5ba8900aef3a3728 100644 --- a/tutorials/lagrangian/reactingParcelFoam/filter/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/filter/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/blockMeshDict index 710e4c496cc66018792935a078ae2fa8c89a6519..cbec044ccaeb77cc956a64abbb1bfee0d0fdd1ac 100644 --- a/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/parcelInBox/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/blockMeshDict index 36453e30f6483a62fe459e28c4a5a5718a0d30ad..3dfa7726062012100a0b8bed305c754f1ca6fff7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannel/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/blockMeshDict b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/blockMeshDict index 36453e30f6483a62fe459e28c4a5a5718a0d30ad..3dfa7726062012100a0b8bed305c754f1ca6fff7 100644 --- a/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/blockMeshDict +++ b/tutorials/lagrangian/reactingParcelFoam/verticalChannelLTS/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/blockMeshDict b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/blockMeshDict index 36453e30f6483a62fe459e28c4a5a5718a0d30ad..3dfa7726062012100a0b8bed305c754f1ca6fff7 100644 --- a/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/blockMeshDict +++ b/tutorials/lagrangian/simpleReactingParcelFoam/verticalChannel/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/lagrangian/sprayFoam/aachenBomb/system/blockMeshDict b/tutorials/lagrangian/sprayFoam/aachenBomb/system/blockMeshDict index a0f1323ad0a21eaea0cf345aa4fd1748118cfa19..b58b8e7af90e26cde1798c5b5bdd4048a156261b 100644 --- a/tutorials/lagrangian/sprayFoam/aachenBomb/system/blockMeshDict +++ b/tutorials/lagrangian/sprayFoam/aachenBomb/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/blockMeshDict b/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/blockMeshDict index a6ffcd2498172b10d395d8121280818ea8514902..a9ddd79ed770a354adb6e5f5fd4268e326eb47fa 100644 --- a/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/blockMeshDict +++ b/tutorials/mesh/foamyHexMesh/blob/system/backgroundMeshDecomposition/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1.0; +scale 1.0; xmin -1.3; xmax 0.65; diff --git a/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/blockMeshDict b/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/blockMeshDict index 45dde47b29e85b8a9cbd357f09ebed8c99e5871a..8981b0d0dcb06209b3eacace7ea0ddd4e3a5ee37 100644 --- a/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/blockMeshDict +++ b/tutorials/mesh/foamyHexMesh/flange/system/backgroundMeshDecomposition/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1.0; +scale 1.0; xmin -0.0265; xmax 0.0265; diff --git a/tutorials/mesh/foamyHexMesh/mixerVessel/system/backgroundMeshDecomposition/blockMeshDict b/tutorials/mesh/foamyHexMesh/mixerVessel/system/backgroundMeshDecomposition/blockMeshDict index 7055a5c09f374bd4d08c1819efb241d9699d46a3..38f04707eaa0e8ace4d9a4519e7beada1ca606bd 100644 --- a/tutorials/mesh/foamyHexMesh/mixerVessel/system/backgroundMeshDecomposition/blockMeshDict +++ b/tutorials/mesh/foamyHexMesh/mixerVessel/system/backgroundMeshDecomposition/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1e-3; +scale 0.001; vertices ( diff --git a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/blockMeshDict b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/blockMeshDict index b36555dd02598186ab9c21805de0abc7a7aed8d9..29d016b669c72d27dbef7a5f649e15b73e066a42 100644 --- a/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/blockMeshDict +++ b/tutorials/mesh/moveDynamicMesh/SnakeRiverCanyon/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/mesh/moveDynamicMesh/relativeMotion/box_snappyHexMesh/system/blockMeshDict b/tutorials/mesh/moveDynamicMesh/relativeMotion/box_snappyHexMesh/system/blockMeshDict index ebf1c4532f6eea3083ec64acbc9ba694c84c613c..3348ce23a830e6c71a25b8b786e466f647e0cd1d 100644 --- a/tutorials/mesh/moveDynamicMesh/relativeMotion/box_snappyHexMesh/system/blockMeshDict +++ b/tutorials/mesh/moveDynamicMesh/relativeMotion/box_snappyHexMesh/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/mesh/parallel/cavity/system/blockMeshDict b/tutorials/mesh/parallel/cavity/system/blockMeshDict index 5f58428dd6957756f1e7d66e8d9a31e95ad07e8c..6c09069cce78a74eb7a1f40bb1e2350e46a2d75d 100644 --- a/tutorials/mesh/parallel/cavity/system/blockMeshDict +++ b/tutorials/mesh/parallel/cavity/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/mesh/parallel/filter/system/blockMeshDict b/tutorials/mesh/parallel/filter/system/blockMeshDict index 42f0d62fa9ecbdf47acf3f8a6e57d94cfd3f95a9..2492fe4655349b3f9a3aaafe436deebe3de4c6da 100644 --- a/tutorials/mesh/parallel/filter/system/blockMeshDict +++ b/tutorials/mesh/parallel/filter/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/mesh/refineMesh/refineFieldDirs/system/blockMeshDict b/tutorials/mesh/refineMesh/refineFieldDirs/system/blockMeshDict index 5ed3bb5e1ba5bd9c8c77772afc95ba05bb47ff6b..a7266f14e154fb5b8e07e04efdf3a6ca0f9eebc8 100644 --- a/tutorials/mesh/refineMesh/refineFieldDirs/system/blockMeshDict +++ b/tutorials/mesh/refineMesh/refineFieldDirs/system/blockMeshDict @@ -8,7 +8,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; /* diff --git a/tutorials/mesh/snappyHexMesh/addLayersToFaceZone/system/blockMeshDict b/tutorials/mesh/snappyHexMesh/addLayersToFaceZone/system/blockMeshDict index 65c08a29785453400ec6b8241e71ce21b7908f38..62c90d6c0da05212e6f9e18ac6c17174bd433f2c 100644 --- a/tutorials/mesh/snappyHexMesh/addLayersToFaceZone/system/blockMeshDict +++ b/tutorials/mesh/snappyHexMesh/addLayersToFaceZone/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/mesh/snappyHexMesh/flange/system/blockMeshDict b/tutorials/mesh/snappyHexMesh/flange/system/blockMeshDict index b41f45f6f7ad960f7e0d69d02a86ec11a358832d..1b9c3d2d5c77a749c4bb8bb3eb439133243896f2 100644 --- a/tutorials/mesh/snappyHexMesh/flange/system/blockMeshDict +++ b/tutorials/mesh/snappyHexMesh/flange/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/mesh/snappyHexMesh/gap_detection/system/blockMeshDict b/tutorials/mesh/snappyHexMesh/gap_detection/system/blockMeshDict index 7b6d5251668773997c97de62e46a55e4c215b4ad..db9ee702e1cf89873d8c068288abfd13358eae9a 100644 --- a/tutorials/mesh/snappyHexMesh/gap_detection/system/blockMeshDict +++ b/tutorials/mesh/snappyHexMesh/gap_detection/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/MPPICInterFoam/twoPhasePachuka/system/pachuka.m4 b/tutorials/multiphase/MPPICInterFoam/twoPhasePachuka/system/pachuka.m4 index b817fb48d749305f436d1ea92b0613e646e3433f..c5e336a674765a187b4316985553cf3994499224 100644 --- a/tutorials/multiphase/MPPICInterFoam/twoPhasePachuka/system/pachuka.m4 +++ b/tutorials/multiphase/MPPICInterFoam/twoPhasePachuka/system/pachuka.m4 @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.001; +scale 0.001; changecom(//)changequote([,]) define(calc, [esyscmd(perl -e 'printf ($1)')]) diff --git a/tutorials/multiphase/cavitatingFoam/LES/throttle/system/blockMeshDict b/tutorials/multiphase/cavitatingFoam/LES/throttle/system/blockMeshDict index 9e94de60f25721820046d4f3a56c9e4793f4cbd1..6ef6c450b943209d34a647e56b93de195e886e2d 100644 --- a/tutorials/multiphase/cavitatingFoam/LES/throttle/system/blockMeshDict +++ b/tutorials/multiphase/cavitatingFoam/LES/throttle/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1.0e-3; +scale 0.001; vertices ( diff --git a/tutorials/multiphase/cavitatingFoam/LES/throttle3D/system/blockMeshDict b/tutorials/multiphase/cavitatingFoam/LES/throttle3D/system/blockMeshDict index 72aabf53a4df492415340523ccaffea346c9b4fb..2db074a07943680d8df8f9742727dce8992d9bdd 100644 --- a/tutorials/multiphase/cavitatingFoam/LES/throttle3D/system/blockMeshDict +++ b/tutorials/multiphase/cavitatingFoam/LES/throttle3D/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1.0e-3; +scale 0.001; vertices ( diff --git a/tutorials/multiphase/cavitatingFoam/RAS/throttle/system/blockMeshDict b/tutorials/multiphase/cavitatingFoam/RAS/throttle/system/blockMeshDict index 9e94de60f25721820046d4f3a56c9e4793f4cbd1..6ef6c450b943209d34a647e56b93de195e886e2d 100644 --- a/tutorials/multiphase/cavitatingFoam/RAS/throttle/system/blockMeshDict +++ b/tutorials/multiphase/cavitatingFoam/RAS/throttle/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1.0e-3; +scale 0.001; vertices ( diff --git a/tutorials/multiphase/compressibleInterDyMFoam/laminar/sloshingTank2D/system/blockMeshDict.m4 b/tutorials/multiphase/compressibleInterDyMFoam/laminar/sloshingTank2D/system/blockMeshDict.m4 index cc8f7c321263d08fd1ec39f2e7f0fbe108ae53b6..5c7856f1d2d132a4a7c57ead203d2ebe7ae03151 100644 --- a/tutorials/multiphase/compressibleInterDyMFoam/laminar/sloshingTank2D/system/blockMeshDict.m4 +++ b/tutorials/multiphase/compressibleInterDyMFoam/laminar/sloshingTank2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, (b$1 b$4 b$3 b$2)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // User-defined parameters -convertToMeters 1; +scale 1; define(l, 1.0) // Length of tank (x-direction) define(b, 40) // Breadth of tank (y-direction) diff --git a/tutorials/multiphase/compressibleInterDyMFoam/laminar/sphereDrop/system/blockMeshDict b/tutorials/multiphase/compressibleInterDyMFoam/laminar/sphereDrop/system/blockMeshDict index c2962ef4fe3c8fd423311bf1ded2d89b58e2f720..40f967585ac4f490c6547b308da8aedf7f16ced6 100644 --- a/tutorials/multiphase/compressibleInterDyMFoam/laminar/sphereDrop/system/blockMeshDict +++ b/tutorials/multiphase/compressibleInterDyMFoam/laminar/sphereDrop/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; // Domain axisLevel 0.0; // x-coord of axis (right boundary of domain) diff --git a/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/system/blockMeshDict b/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/system/blockMeshDict index eb62f4d3fa115217910b5fc214c1d601b827d088..9cd145e17424d2ce53c8521bd4b8772adde32c95 100644 --- a/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/system/blockMeshDict +++ b/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge2D/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge3D/system/blockMeshDict b/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge3D/system/blockMeshDict index 7b769fb5e33281306e6da43c7a3096d3d35c5f53..4d071f43a159aac89cfc6c67aebbb2ff9110af78 100644 --- a/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge3D/system/blockMeshDict +++ b/tutorials/multiphase/compressibleInterFoam/laminar/depthCharge3D/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/compressibleMultiphaseInterFoam/laminar/damBreak4phase/system/blockMeshDict b/tutorials/multiphase/compressibleMultiphaseInterFoam/laminar/damBreak4phase/system/blockMeshDict index 9f1f917cbc0c91145ba92fefa3640e97e2c1e5ee..6832e4c2e281a3a1c27adaa522e841bb185942fe 100644 --- a/tutorials/multiphase/compressibleMultiphaseInterFoam/laminar/damBreak4phase/system/blockMeshDict +++ b/tutorials/multiphase/compressibleMultiphaseInterFoam/laminar/damBreak4phase/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.146; +scale 0.146; vertices ( diff --git a/tutorials/multiphase/driftFluxFoam/RAS/dahl/system/blockMeshDict b/tutorials/multiphase/driftFluxFoam/RAS/dahl/system/blockMeshDict index f7d181567e723243bc999713ef1413e0c9e85b4d..d252f8d2974890bd410dd5ec050d4712867a5378 100644 --- a/tutorials/multiphase/driftFluxFoam/RAS/dahl/system/blockMeshDict +++ b/tutorials/multiphase/driftFluxFoam/RAS/dahl/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/driftFluxFoam/RAS/mixerVessel2D/system/blockMeshDict.m4 b/tutorials/multiphase/driftFluxFoam/RAS/mixerVessel2D/system/blockMeshDict.m4 index 7af575645872d1c69eb34d26b1b79d305805dd12..a1aca5ab529ec7af115066707ddfc5a67b939b22 100644 --- a/tutorials/multiphase/driftFluxFoam/RAS/mixerVessel2D/system/blockMeshDict.m4 +++ b/tutorials/multiphase/driftFluxFoam/RAS/mixerVessel2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, ($1b $4b $3b $2b)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; // Hub radius define(r, 0.2) diff --git a/tutorials/multiphase/interCondensatingEvaporatingFoam/condensatingVessel/system/blockMeshDict b/tutorials/multiphase/interCondensatingEvaporatingFoam/condensatingVessel/system/blockMeshDict index 85ac05af58eb384c792e3116c79cdb855309abd8..8c69aa89b3e69890889045d9cdf7a2d51c168366 100644 --- a/tutorials/multiphase/interCondensatingEvaporatingFoam/condensatingVessel/system/blockMeshDict +++ b/tutorials/multiphase/interCondensatingEvaporatingFoam/condensatingVessel/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1e-2; +scale 0.01; vertices ( diff --git a/tutorials/multiphase/interDyMFoam/RAS/DTCHull/system/blockMeshDict b/tutorials/multiphase/interDyMFoam/RAS/DTCHull/system/blockMeshDict index 7e657f4defab7da183fba0428df581d93359aba4..d2b4d7966430a438166b52fc67989c0a61c61bc2 100644 --- a/tutorials/multiphase/interDyMFoam/RAS/DTCHull/system/blockMeshDict +++ b/tutorials/multiphase/interDyMFoam/RAS/DTCHull/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interDyMFoam/RAS/floatingObject/system/blockMeshDict b/tutorials/multiphase/interDyMFoam/RAS/floatingObject/system/blockMeshDict index eae1148ab00c7aea3829d7641e7529917720d590..fa80ac98d93bccb559b85b8e37db71e4818ed966 100644 --- a/tutorials/multiphase/interDyMFoam/RAS/floatingObject/system/blockMeshDict +++ b/tutorials/multiphase/interDyMFoam/RAS/floatingObject/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interDyMFoam/RAS/mixerVesselAMI/system/blockMeshDict b/tutorials/multiphase/interDyMFoam/RAS/mixerVesselAMI/system/blockMeshDict index a5bb668fd883a57a559a2978635ef81372493824..65e431899c5c35467ee2decbf0c9ed43d57bd953 100644 --- a/tutorials/multiphase/interDyMFoam/RAS/mixerVesselAMI/system/blockMeshDict +++ b/tutorials/multiphase/interDyMFoam/RAS/mixerVesselAMI/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interDyMFoam/RAS/motorBike/system/blockMeshDict b/tutorials/multiphase/interDyMFoam/RAS/motorBike/system/blockMeshDict index 7f4d16f68ce1e5154943abec94ba8fca7823108d..48edf89c731f27152d1f905b6b2726f19bd9f5c0 100644 --- a/tutorials/multiphase/interDyMFoam/RAS/motorBike/system/blockMeshDict +++ b/tutorials/multiphase/interDyMFoam/RAS/motorBike/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interDyMFoam/laminar/damBreakWithObstacle/system/blockMeshDict b/tutorials/multiphase/interDyMFoam/laminar/damBreakWithObstacle/system/blockMeshDict index 51081db37fb481518a4552f9a76da0e1d92cf1f9..84d4c93304118c540157cafa0856c7e7f3a72cca 100644 --- a/tutorials/multiphase/interDyMFoam/laminar/damBreakWithObstacle/system/blockMeshDict +++ b/tutorials/multiphase/interDyMFoam/laminar/damBreakWithObstacle/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interDyMFoam/laminar/sloshingTank2D/system/blockMeshDict.m4 b/tutorials/multiphase/interDyMFoam/laminar/sloshingTank2D/system/blockMeshDict.m4 index cc8f7c321263d08fd1ec39f2e7f0fbe108ae53b6..5c7856f1d2d132a4a7c57ead203d2ebe7ae03151 100644 --- a/tutorials/multiphase/interDyMFoam/laminar/sloshingTank2D/system/blockMeshDict.m4 +++ b/tutorials/multiphase/interDyMFoam/laminar/sloshingTank2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, (b$1 b$4 b$3 b$2)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // User-defined parameters -convertToMeters 1; +scale 1; define(l, 1.0) // Length of tank (x-direction) define(b, 40) // Breadth of tank (y-direction) diff --git a/tutorials/multiphase/interDyMFoam/laminar/sloshingTank2D3DoF/system/blockMeshDict.m4 b/tutorials/multiphase/interDyMFoam/laminar/sloshingTank2D3DoF/system/blockMeshDict.m4 index cc8f7c321263d08fd1ec39f2e7f0fbe108ae53b6..5c7856f1d2d132a4a7c57ead203d2ebe7ae03151 100644 --- a/tutorials/multiphase/interDyMFoam/laminar/sloshingTank2D3DoF/system/blockMeshDict.m4 +++ b/tutorials/multiphase/interDyMFoam/laminar/sloshingTank2D3DoF/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, (b$1 b$4 b$3 b$2)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // User-defined parameters -convertToMeters 1; +scale 1; define(l, 1.0) // Length of tank (x-direction) define(b, 40) // Breadth of tank (y-direction) diff --git a/tutorials/multiphase/interDyMFoam/laminar/sloshingTank3D/system/blockMeshDict.m4 b/tutorials/multiphase/interDyMFoam/laminar/sloshingTank3D/system/blockMeshDict.m4 index 30dc9f4ad692e226f35e43606b6dfafaed64befd..2be0030239f561bb1e5e5b3c3a49880974e2b1f1 100644 --- a/tutorials/multiphase/interDyMFoam/laminar/sloshingTank3D/system/blockMeshDict.m4 +++ b/tutorials/multiphase/interDyMFoam/laminar/sloshingTank3D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, (b$1 b$4 b$3 b$2)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // User-defined parameters -convertToMeters 1; +scale 1; define(l, 20) // Length of tank (x-direction) define(b, 40) // Breadth of tank (y-direction) diff --git a/tutorials/multiphase/interDyMFoam/laminar/sloshingTank3D3DoF/system/blockMeshDict.m4 b/tutorials/multiphase/interDyMFoam/laminar/sloshingTank3D3DoF/system/blockMeshDict.m4 index 30dc9f4ad692e226f35e43606b6dfafaed64befd..2be0030239f561bb1e5e5b3c3a49880974e2b1f1 100644 --- a/tutorials/multiphase/interDyMFoam/laminar/sloshingTank3D3DoF/system/blockMeshDict.m4 +++ b/tutorials/multiphase/interDyMFoam/laminar/sloshingTank3D3DoF/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, (b$1 b$4 b$3 b$2)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // User-defined parameters -convertToMeters 1; +scale 1; define(l, 20) // Length of tank (x-direction) define(b, 40) // Breadth of tank (y-direction) diff --git a/tutorials/multiphase/interDyMFoam/laminar/sloshingTank3D6DoF/system/blockMeshDict.m4 b/tutorials/multiphase/interDyMFoam/laminar/sloshingTank3D6DoF/system/blockMeshDict.m4 index 30dc9f4ad692e226f35e43606b6dfafaed64befd..2be0030239f561bb1e5e5b3c3a49880974e2b1f1 100644 --- a/tutorials/multiphase/interDyMFoam/laminar/sloshingTank3D6DoF/system/blockMeshDict.m4 +++ b/tutorials/multiphase/interDyMFoam/laminar/sloshingTank3D6DoF/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, (b$1 b$4 b$3 b$2)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // User-defined parameters -convertToMeters 1; +scale 1; define(l, 20) // Length of tank (x-direction) define(b, 40) // Breadth of tank (y-direction) diff --git a/tutorials/multiphase/interDyMFoam/laminar/testTubeMixer/system/blockMeshDict b/tutorials/multiphase/interDyMFoam/laminar/testTubeMixer/system/blockMeshDict index cff87d9a1a92998cf95704ada21dbd552929847b..0dadea9348d1efbd8a527766821ddd1ce96118c0 100644 --- a/tutorials/multiphase/interDyMFoam/laminar/testTubeMixer/system/blockMeshDict +++ b/tutorials/multiphase/interDyMFoam/laminar/testTubeMixer/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.01; +scale 0.01; vertices ( diff --git a/tutorials/multiphase/interFoam/LES/nozzleFlow2D/system/blockMeshDict b/tutorials/multiphase/interFoam/LES/nozzleFlow2D/system/blockMeshDict index 220d1d4184b87a73622d2a81fa3b8ab85b468889..18dad0479ea04650e263a342e181e55a2e318a59 100644 --- a/tutorials/multiphase/interFoam/LES/nozzleFlow2D/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/LES/nozzleFlow2D/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1e-06; +scale 1e-6; vertices ( diff --git a/tutorials/multiphase/interFoam/RAS/DTCHull/system/blockMeshDict b/tutorials/multiphase/interFoam/RAS/DTCHull/system/blockMeshDict index 7e657f4defab7da183fba0428df581d93359aba4..d2b4d7966430a438166b52fc67989c0a61c61bc2 100644 --- a/tutorials/multiphase/interFoam/RAS/DTCHull/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/RAS/DTCHull/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interFoam/RAS/angledDuct/system/blockMeshDict.m4 b/tutorials/multiphase/interFoam/RAS/angledDuct/system/blockMeshDict.m4 index 378e93531400cb34280e87cd24fd3fee5feb3bfd..17988e2f4429aabb0948372f36888b6186be9a30 100644 --- a/tutorials/multiphase/interFoam/RAS/angledDuct/system/blockMeshDict.m4 +++ b/tutorials/multiphase/interFoam/RAS/angledDuct/system/blockMeshDict.m4 @@ -59,7 +59,7 @@ define(xoutlet,calc(xporo + Cos*lenoutlet)) dnl> define(youtlet,calc(yporo + Sin*lenoutlet)) dnl> dnl> -convertToMeters 0.001; +scale 0.001; vertices ( diff --git a/tutorials/multiphase/interFoam/RAS/damBreak/damBreak/system/blockMeshDict b/tutorials/multiphase/interFoam/RAS/damBreak/damBreak/system/blockMeshDict index 9f1f917cbc0c91145ba92fefa3640e97e2c1e5ee..6832e4c2e281a3a1c27adaa522e841bb185942fe 100644 --- a/tutorials/multiphase/interFoam/RAS/damBreak/damBreak/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/RAS/damBreak/damBreak/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.146; +scale 0.146; vertices ( diff --git a/tutorials/multiphase/interFoam/RAS/damBreakPorousBaffle/system/blockMeshDict b/tutorials/multiphase/interFoam/RAS/damBreakPorousBaffle/system/blockMeshDict index 9f1f917cbc0c91145ba92fefa3640e97e2c1e5ee..6832e4c2e281a3a1c27adaa522e841bb185942fe 100644 --- a/tutorials/multiphase/interFoam/RAS/damBreakPorousBaffle/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/RAS/damBreakPorousBaffle/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.146; +scale 0.146; vertices ( diff --git a/tutorials/multiphase/interFoam/RAS/waterChannel/system/blockMeshDict b/tutorials/multiphase/interFoam/RAS/waterChannel/system/blockMeshDict index 22fa2aa1959d760ab81b0555383681324211b643..0230843d96155e30b68046beece52827b0b5cba0 100644 --- a/tutorials/multiphase/interFoam/RAS/waterChannel/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/RAS/waterChannel/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interFoam/RAS/weirOverflow/system/blockMeshDict b/tutorials/multiphase/interFoam/RAS/weirOverflow/system/blockMeshDict index 315b5800ebdbdef0a9f24a747f0cac32417764e0..63c468701c4519d7b4749edd610a4d7d6ba881fd 100644 --- a/tutorials/multiphase/interFoam/RAS/weirOverflow/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/RAS/weirOverflow/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interFoam/laminar/capillaryRise/system/blockMeshDict b/tutorials/multiphase/interFoam/laminar/capillaryRise/system/blockMeshDict index e30c49c574c0b716eeae70e2f2c7a1309bf1454c..7397ae69e78db8625d89f5a5ca3aa937c8f53368 100644 --- a/tutorials/multiphase/interFoam/laminar/capillaryRise/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/laminar/capillaryRise/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1e-3; +scale 0.001; vertices ( diff --git a/tutorials/multiphase/interFoam/laminar/damBreak/damBreak/system/blockMeshDict b/tutorials/multiphase/interFoam/laminar/damBreak/damBreak/system/blockMeshDict index 9f1f917cbc0c91145ba92fefa3640e97e2c1e5ee..6832e4c2e281a3a1c27adaa522e841bb185942fe 100644 --- a/tutorials/multiphase/interFoam/laminar/damBreak/damBreak/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/laminar/damBreak/damBreak/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.146; +scale 0.146; vertices ( diff --git a/tutorials/multiphase/interFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 b/tutorials/multiphase/interFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 index 7af575645872d1c69eb34d26b1b79d305805dd12..a1aca5ab529ec7af115066707ddfc5a67b939b22 100644 --- a/tutorials/multiphase/interFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 +++ b/tutorials/multiphase/interFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, ($1b $4b $3b $2b)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; // Hub radius define(r, 0.2) diff --git a/tutorials/multiphase/interFoam/laminar/vofToLagrangian/eulerianInjection/system/blockMeshDict b/tutorials/multiphase/interFoam/laminar/vofToLagrangian/eulerianInjection/system/blockMeshDict index 992905dc55b8edcda37c8a0253f89935891e4e31..9ff791a89813214892bcc26cfdefd0546e6b84dc 100644 --- a/tutorials/multiphase/interFoam/laminar/vofToLagrangian/eulerianInjection/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/laminar/vofToLagrangian/eulerianInjection/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.05; +scale 0.05; vertices ( diff --git a/tutorials/multiphase/interFoam/laminar/vofToLagrangian/lagrangianDistributionInjection/system/blockMeshDict b/tutorials/multiphase/interFoam/laminar/vofToLagrangian/lagrangianDistributionInjection/system/blockMeshDict index e62bdd9b924c04bb128b06d9495cfc117675747b..6fcff1299fb77ba2ce6930e29c70f79af50e1512 100644 --- a/tutorials/multiphase/interFoam/laminar/vofToLagrangian/lagrangianDistributionInjection/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/laminar/vofToLagrangian/lagrangianDistributionInjection/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 3; +scale 3; vertices ( diff --git a/tutorials/multiphase/interFoam/laminar/vofToLagrangian/lagrangianParticleInjection/system/blockMeshDict b/tutorials/multiphase/interFoam/laminar/vofToLagrangian/lagrangianParticleInjection/system/blockMeshDict index e62bdd9b924c04bb128b06d9495cfc117675747b..6fcff1299fb77ba2ce6930e29c70f79af50e1512 100644 --- a/tutorials/multiphase/interFoam/laminar/vofToLagrangian/lagrangianParticleInjection/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/laminar/vofToLagrangian/lagrangianParticleInjection/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 3; +scale 3; vertices ( diff --git a/tutorials/multiphase/interFoam/laminar/waveExampleCnoidal/system/blockMeshDict b/tutorials/multiphase/interFoam/laminar/waveExampleCnoidal/system/blockMeshDict index 3b84f93af71a9a0b0bf06f2861e9ada3fe5308c1..e3b0910d4a4bab9a2a1d56bdd0931dbe6f9db888 100644 --- a/tutorials/multiphase/interFoam/laminar/waveExampleCnoidal/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/laminar/waveExampleCnoidal/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interFoam/laminar/waveExampleSolitary/system/blockMeshDict b/tutorials/multiphase/interFoam/laminar/waveExampleSolitary/system/blockMeshDict index 175bb83f20a1b44b6f6fcb49a72125b47f2ebef3..ab736dde07c153a5983e284383f826a5974f317b 100644 --- a/tutorials/multiphase/interFoam/laminar/waveExampleSolitary/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/laminar/waveExampleSolitary/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interFoam/laminar/waveExampleSolitaryGrimshaw/system/blockMeshDict b/tutorials/multiphase/interFoam/laminar/waveExampleSolitaryGrimshaw/system/blockMeshDict index 6de6c2f0f23bd8ddab955398ea141fd12410e4ff..bda1aecbf1ef2baa9e400bfb1db2ee562e242fcb 100644 --- a/tutorials/multiphase/interFoam/laminar/waveExampleSolitaryGrimshaw/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/laminar/waveExampleSolitaryGrimshaw/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interFoam/laminar/waveExampleSolitaryMcCowan/system/blockMeshDict b/tutorials/multiphase/interFoam/laminar/waveExampleSolitaryMcCowan/system/blockMeshDict index 6de6c2f0f23bd8ddab955398ea141fd12410e4ff..bda1aecbf1ef2baa9e400bfb1db2ee562e242fcb 100644 --- a/tutorials/multiphase/interFoam/laminar/waveExampleSolitaryMcCowan/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/laminar/waveExampleSolitaryMcCowan/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interFoam/laminar/waveExampleStokesI/system/blockMeshDict b/tutorials/multiphase/interFoam/laminar/waveExampleStokesI/system/blockMeshDict index 2a16096fd603b5f81066aed5db4ad71b018d30bd..b55810062ce0ff394ba7052fc6a826cac0be5b55 100644 --- a/tutorials/multiphase/interFoam/laminar/waveExampleStokesI/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/laminar/waveExampleStokesI/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interFoam/laminar/waveExampleStokesII/system/blockMeshDict b/tutorials/multiphase/interFoam/laminar/waveExampleStokesII/system/blockMeshDict index afdb56d1bb6308bd4fc55baa9ac95d315a2b02b3..bc4c9fae35af73fd95a00c4f87e212c5ed0b0b75 100644 --- a/tutorials/multiphase/interFoam/laminar/waveExampleStokesII/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/laminar/waveExampleStokesII/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interFoam/laminar/waveExampleStokesV/system/blockMeshDict b/tutorials/multiphase/interFoam/laminar/waveExampleStokesV/system/blockMeshDict index 6f5bedb3be5c14dffae1c7abd62f8f250f040973..a90c183aa7fb5dc77f9c908f0d50aff5de8a288d 100644 --- a/tutorials/multiphase/interFoam/laminar/waveExampleStokesV/system/blockMeshDict +++ b/tutorials/multiphase/interFoam/laminar/waveExampleStokesV/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interIsoFoam/damBreak/system/blockMeshDict b/tutorials/multiphase/interIsoFoam/damBreak/system/blockMeshDict index 9570d8dd9c064c3b00c28335ce57fa40360bb23a..8a2c2b9e5508394bce52c908f383f8fb528e9957 100644 --- a/tutorials/multiphase/interIsoFoam/damBreak/system/blockMeshDict +++ b/tutorials/multiphase/interIsoFoam/damBreak/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.146; +scale 0.146; vertices ( diff --git a/tutorials/multiphase/interIsoFoam/discInConstantFlow/system/blockMeshDict b/tutorials/multiphase/interIsoFoam/discInConstantFlow/system/blockMeshDict index 6cc4bbfc815d99b15c13d902a69144e5da39cfac..8a1a235e520e7c6531e3ea562d9514a1c8093689 100644 --- a/tutorials/multiphase/interIsoFoam/discInConstantFlow/system/blockMeshDict +++ b/tutorials/multiphase/interIsoFoam/discInConstantFlow/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; L 5; nx 100; diff --git a/tutorials/multiphase/interIsoFoam/discInReversedVortexFlow/system/blockMeshDict b/tutorials/multiphase/interIsoFoam/discInReversedVortexFlow/system/blockMeshDict index 1fe949ba20f9cfe32ec09268985577a9cc13d39f..ec6668b3278537d5a8705d2fe95d35e12af12d5d 100644 --- a/tutorials/multiphase/interIsoFoam/discInReversedVortexFlow/system/blockMeshDict +++ b/tutorials/multiphase/interIsoFoam/discInReversedVortexFlow/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; L 1; nx 100; diff --git a/tutorials/multiphase/interIsoFoam/notchedDiscInSolidBodyRotation/system/blockMeshDict b/tutorials/multiphase/interIsoFoam/notchedDiscInSolidBodyRotation/system/blockMeshDict index 1fe949ba20f9cfe32ec09268985577a9cc13d39f..ec6668b3278537d5a8705d2fe95d35e12af12d5d 100644 --- a/tutorials/multiphase/interIsoFoam/notchedDiscInSolidBodyRotation/system/blockMeshDict +++ b/tutorials/multiphase/interIsoFoam/notchedDiscInSolidBodyRotation/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; L 1; nx 100; diff --git a/tutorials/multiphase/interIsoFoam/sphereInReversedVortexFlow/system/blockMeshDict b/tutorials/multiphase/interIsoFoam/sphereInReversedVortexFlow/system/blockMeshDict index a04acb0bb2c9fb52521c57f38602eed565e85392..ed77495fe859712ee12ae93ca797c487f25c1be8 100644 --- a/tutorials/multiphase/interIsoFoam/sphereInReversedVortexFlow/system/blockMeshDict +++ b/tutorials/multiphase/interIsoFoam/sphereInReversedVortexFlow/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; x1 0; x2 1; diff --git a/tutorials/multiphase/interIsoFoam/standingWave/system/blockMeshDict b/tutorials/multiphase/interIsoFoam/standingWave/system/blockMeshDict index 23d0722044620e389c91579dc20aeb77c8547422..2037c3acf07d10dd2b4f4c2d016f53eed758ef2a 100644 --- a/tutorials/multiphase/interIsoFoam/standingWave/system/blockMeshDict +++ b/tutorials/multiphase/interIsoFoam/standingWave/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; L 1; nx 50; diff --git a/tutorials/multiphase/interMixingFoam/laminar/damBreak/system/blockMeshDict b/tutorials/multiphase/interMixingFoam/laminar/damBreak/system/blockMeshDict index 9f1f917cbc0c91145ba92fefa3640e97e2c1e5ee..6832e4c2e281a3a1c27adaa522e841bb185942fe 100644 --- a/tutorials/multiphase/interMixingFoam/laminar/damBreak/system/blockMeshDict +++ b/tutorials/multiphase/interMixingFoam/laminar/damBreak/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.146; +scale 0.146; vertices ( diff --git a/tutorials/multiphase/interPhaseChangeDyMFoam/propeller/system/blockMeshDict b/tutorials/multiphase/interPhaseChangeDyMFoam/propeller/system/blockMeshDict index a3e0711203427b31af900e54a610d7c7bd9313ad..e2e3a627557322719bd5f80b220665c940d209d9 100644 --- a/tutorials/multiphase/interPhaseChangeDyMFoam/propeller/system/blockMeshDict +++ b/tutorials/multiphase/interPhaseChangeDyMFoam/propeller/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/interPhaseChangeFoam/cavitatingBullet/system/blockMeshDict b/tutorials/multiphase/interPhaseChangeFoam/cavitatingBullet/system/blockMeshDict index f7edda0945c5a99f6f5565e3e1910e5db2d83f27..39970c98c5c07feb6b6b4d3921cad2ee8563d776 100644 --- a/tutorials/multiphase/interPhaseChangeFoam/cavitatingBullet/system/blockMeshDict +++ b/tutorials/multiphase/interPhaseChangeFoam/cavitatingBullet/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1e-3; +scale 0.001; vertices ( diff --git a/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/system/blockMeshDict b/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/system/blockMeshDict +++ b/tutorials/multiphase/multiphaseEulerFoam/bubbleColumn/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/multiphaseEulerFoam/damBreak4phase/system/blockMeshDict b/tutorials/multiphase/multiphaseEulerFoam/damBreak4phase/system/blockMeshDict index 9f1f917cbc0c91145ba92fefa3640e97e2c1e5ee..6832e4c2e281a3a1c27adaa522e841bb185942fe 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/damBreak4phase/system/blockMeshDict +++ b/tutorials/multiphase/multiphaseEulerFoam/damBreak4phase/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.146; +scale 0.146; vertices ( diff --git a/tutorials/multiphase/multiphaseEulerFoam/damBreak4phaseFine/system/blockMeshDict b/tutorials/multiphase/multiphaseEulerFoam/damBreak4phaseFine/system/blockMeshDict index ecf1075a043875ce72ec737487f635eca55a3ddb..11c653c122ef12b7fdd4c8a4231ea8c631f92d2a 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/damBreak4phaseFine/system/blockMeshDict +++ b/tutorials/multiphase/multiphaseEulerFoam/damBreak4phaseFine/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.146; +scale 0.146; vertices ( diff --git a/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/system/blockMeshDict.m4 b/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/system/blockMeshDict.m4 index 7af575645872d1c69eb34d26b1b79d305805dd12..a1aca5ab529ec7af115066707ddfc5a67b939b22 100644 --- a/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/system/blockMeshDict.m4 +++ b/tutorials/multiphase/multiphaseEulerFoam/mixerVessel2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, ($1b $4b $3b $2b)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; // Hub radius define(r, 0.2) diff --git a/tutorials/multiphase/multiphaseInterDyMFoam/laminar/mixerVesselAMI2D/system/blockMeshDict.m4 b/tutorials/multiphase/multiphaseInterDyMFoam/laminar/mixerVesselAMI2D/system/blockMeshDict.m4 index 30653d758b6963131c3f4cba55d920960de1c306..8a9a3ffdb1b21fb7901ef47891c2ca9df9f61684 100644 --- a/tutorials/multiphase/multiphaseInterDyMFoam/laminar/mixerVesselAMI2D/system/blockMeshDict.m4 +++ b/tutorials/multiphase/multiphaseInterDyMFoam/laminar/mixerVesselAMI2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, ($1b $4b $3b $2b)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; // Hub radius define(r, 0.2) diff --git a/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phase/system/blockMeshDict b/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phase/system/blockMeshDict index 9f1f917cbc0c91145ba92fefa3640e97e2c1e5ee..6832e4c2e281a3a1c27adaa522e841bb185942fe 100644 --- a/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phase/system/blockMeshDict +++ b/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phase/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.146; +scale 0.146; vertices ( diff --git a/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phaseFine/system/blockMeshDict b/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phaseFine/system/blockMeshDict index ecf1075a043875ce72ec737487f635eca55a3ddb..11c653c122ef12b7fdd4c8a4231ea8c631f92d2a 100644 --- a/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phaseFine/system/blockMeshDict +++ b/tutorials/multiphase/multiphaseInterFoam/laminar/damBreak4phaseFine/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.146; +scale 0.146; vertices ( diff --git a/tutorials/multiphase/multiphaseInterFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 b/tutorials/multiphase/multiphaseInterFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 index 7af575645872d1c69eb34d26b1b79d305805dd12..a1aca5ab529ec7af115066707ddfc5a67b939b22 100644 --- a/tutorials/multiphase/multiphaseInterFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 +++ b/tutorials/multiphase/multiphaseInterFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, ($1b $4b $3b $2b)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; // Hub radius define(r, 0.2) diff --git a/tutorials/multiphase/overInterDyMFoam/floatingBody/background/system/blockMeshDict b/tutorials/multiphase/overInterDyMFoam/floatingBody/background/system/blockMeshDict index 394b3ee01a549486e48b807db222bbdb30f9d7e9..0ff19693cefe9a069ca8332bb3518657a255c64b 100644 --- a/tutorials/multiphase/overInterDyMFoam/floatingBody/background/system/blockMeshDict +++ b/tutorials/multiphase/overInterDyMFoam/floatingBody/background/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/overInterDyMFoam/floatingBody/floatingBody/system/blockMeshDict b/tutorials/multiphase/overInterDyMFoam/floatingBody/floatingBody/system/blockMeshDict index dcf765a81b6ecd56304ae821bc0606ac4ad4f842..b4777064b8fecdae7f19099f651124615d498a33 100644 --- a/tutorials/multiphase/overInterDyMFoam/floatingBody/floatingBody/system/blockMeshDict +++ b/tutorials/multiphase/overInterDyMFoam/floatingBody/floatingBody/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/potentialFreeSurfaceDyMFoam/oscillatingBox/system/blockMeshDict b/tutorials/multiphase/potentialFreeSurfaceDyMFoam/oscillatingBox/system/blockMeshDict index 1fc2016d7de996abff2b71576f512f3444308246..da807520a52d2d855deca185b1287ae10505faa7 100644 --- a/tutorials/multiphase/potentialFreeSurfaceDyMFoam/oscillatingBox/system/blockMeshDict +++ b/tutorials/multiphase/potentialFreeSurfaceDyMFoam/oscillatingBox/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/potentialFreeSurfaceFoam/oscillatingBox/system/blockMeshDict b/tutorials/multiphase/potentialFreeSurfaceFoam/oscillatingBox/system/blockMeshDict index fde1971878a4523d647955d41ae067553c93ab9d..0139b59aa850592269147713be434b619595b242 100644 --- a/tutorials/multiphase/potentialFreeSurfaceFoam/oscillatingBox/system/blockMeshDict +++ b/tutorials/multiphase/potentialFreeSurfaceFoam/oscillatingBox/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingMultiphaseEulerFoam/laminar/bubbleColumn/system/blockMeshDict b/tutorials/multiphase/reactingMultiphaseEulerFoam/laminar/bubbleColumn/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/reactingMultiphaseEulerFoam/laminar/bubbleColumn/system/blockMeshDict +++ b/tutorials/multiphase/reactingMultiphaseEulerFoam/laminar/bubbleColumn/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingMultiphaseEulerFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 b/tutorials/multiphase/reactingMultiphaseEulerFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 index 7af575645872d1c69eb34d26b1b79d305805dd12..a1aca5ab529ec7af115066707ddfc5a67b939b22 100644 --- a/tutorials/multiphase/reactingMultiphaseEulerFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 +++ b/tutorials/multiphase/reactingMultiphaseEulerFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, ($1b $4b $3b $2b)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; // Hub radius define(r, 0.2) diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/LES/bubbleColumn/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/LBend/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/LBend/system/blockMeshDict index 3f72f6e6e11b783daf67222fe53d338c2c7cd4dc..b74168a2641322a6a2fde34b59bd352fff3fae70 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/LBend/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/LBend/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumn/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/bubbleColumnEvaporatingReacting/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/fluidisedBed/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/fluidisedBed/system/blockMeshDict index 7ef56f0aa6c9d248988424acc614015cc54c062a..4637618e918c5918d93399d97e9e32d14373d686 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/fluidisedBed/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/fluidisedBed/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/wallBoiling/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/wallBoiling/system/blockMeshDict index 3551b32f37b23e6c997f42ebaca420dde9a243fc..d88380ae1f68ad43814e5ba581f767e599ae183d 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/wallBoiling/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/wallBoiling/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/wallBoilingIATE/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/wallBoilingIATE/system/blockMeshDict index 3551b32f37b23e6c997f42ebaca420dde9a243fc..d88380ae1f68ad43814e5ba581f767e599ae183d 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/wallBoilingIATE/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/RAS/wallBoilingIATE/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumn/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporating/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporating/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporating/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporating/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnEvaporatingDissolving/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/bubbleColumnIATE/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/fluidisedBed/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/fluidisedBed/system/blockMeshDict index 7ef56f0aa6c9d248988424acc614015cc54c062a..4637618e918c5918d93399d97e9e32d14373d686 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/fluidisedBed/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/fluidisedBed/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/injection/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/injection/system/blockMeshDict index 5e2253cab14dc1687377d4434e62706f418c05fc..95a0376e1338d66a5a5c62ab5e4cdfb6a4d59370 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/injection/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/injection/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 index 7af575645872d1c69eb34d26b1b79d305805dd12..a1aca5ab529ec7af115066707ddfc5a67b939b22 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, ($1b $4b $3b $2b)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; // Hub radius define(r, 0.2) diff --git a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/steamInjection/system/blockMeshDict b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/steamInjection/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/steamInjection/system/blockMeshDict +++ b/tutorials/multiphase/reactingTwoPhaseEulerFoam/laminar/steamInjection/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/twoLiquidMixingFoam/lockExchange/system/blockMeshDict b/tutorials/multiphase/twoLiquidMixingFoam/lockExchange/system/blockMeshDict index ef2c28fad2cc365f78cb6566f99ef44c738ab076..bc2c9518652e2dd31e4111f6cf10f15ac8cb5d2e 100644 --- a/tutorials/multiphase/twoLiquidMixingFoam/lockExchange/system/blockMeshDict +++ b/tutorials/multiphase/twoLiquidMixingFoam/lockExchange/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/system/blockMeshDict b/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/system/blockMeshDict +++ b/tutorials/multiphase/twoPhaseEulerFoam/LES/bubbleColumn/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/system/blockMeshDict b/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/system/blockMeshDict +++ b/tutorials/multiphase/twoPhaseEulerFoam/RAS/bubbleColumn/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/twoPhaseEulerFoam/RAS/fluidisedBed/system/blockMeshDict b/tutorials/multiphase/twoPhaseEulerFoam/RAS/fluidisedBed/system/blockMeshDict index 7ef56f0aa6c9d248988424acc614015cc54c062a..4637618e918c5918d93399d97e9e32d14373d686 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/RAS/fluidisedBed/system/blockMeshDict +++ b/tutorials/multiphase/twoPhaseEulerFoam/RAS/fluidisedBed/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/system/blockMeshDict b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/system/blockMeshDict +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumn/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/system/blockMeshDict b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/system/blockMeshDict index fbb8d6aa2d74cc627f7121fbd94bac505a4120ee..1f3d5e38e41c30c422473cce0412084d24139c7b 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/system/blockMeshDict +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/bubbleColumnIATE/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/fluidisedBed/system/blockMeshDict b/tutorials/multiphase/twoPhaseEulerFoam/laminar/fluidisedBed/system/blockMeshDict index 7ef56f0aa6c9d248988424acc614015cc54c062a..4637618e918c5918d93399d97e9e32d14373d686 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/fluidisedBed/system/blockMeshDict +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/fluidisedBed/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/injection/system/blockMeshDict b/tutorials/multiphase/twoPhaseEulerFoam/laminar/injection/system/blockMeshDict index 5e2253cab14dc1687377d4434e62706f418c05fc..95a0376e1338d66a5a5c62ab5e4cdfb6a4d59370 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/injection/system/blockMeshDict +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/injection/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/multiphase/twoPhaseEulerFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 b/tutorials/multiphase/twoPhaseEulerFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 index 7af575645872d1c69eb34d26b1b79d305805dd12..a1aca5ab529ec7af115066707ddfc5a67b939b22 100644 --- a/tutorials/multiphase/twoPhaseEulerFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 +++ b/tutorials/multiphase/twoPhaseEulerFoam/laminar/mixerVessel2D/system/blockMeshDict.m4 @@ -28,7 +28,7 @@ define(backQuad, ($1b $4b $3b $2b)) // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; // Hub radius define(r, 0.2) diff --git a/tutorials/preProcessing/createZeroDirectory/cavity/system/blockMeshDict b/tutorials/preProcessing/createZeroDirectory/cavity/system/blockMeshDict index 5f58428dd6957756f1e7d66e8d9a31e95ad07e8c..6c09069cce78a74eb7a1f40bb1e2350e46a2d75d 100644 --- a/tutorials/preProcessing/createZeroDirectory/cavity/system/blockMeshDict +++ b/tutorials/preProcessing/createZeroDirectory/cavity/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 0.1; +scale 0.1; vertices ( diff --git a/tutorials/preProcessing/createZeroDirectory/motorBike/system/blockMeshDict b/tutorials/preProcessing/createZeroDirectory/motorBike/system/blockMeshDict index 021d051c59318779b57f2d5c3d530f7a625bbf29..c9ab3e03420404b82b682fb9261ed348f15439f5 100644 --- a/tutorials/preProcessing/createZeroDirectory/motorBike/system/blockMeshDict +++ b/tutorials/preProcessing/createZeroDirectory/motorBike/system/blockMeshDict @@ -15,7 +15,7 @@ FoamFile // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/preProcessing/createZeroDirectory/snappyMultiRegionHeater/system/blockMeshDict b/tutorials/preProcessing/createZeroDirectory/snappyMultiRegionHeater/system/blockMeshDict index a0349cb81d2eca0501774b84c259945ad233b6c6..2ba9dce030268362add167d187e275c6af67bdcb 100644 --- a/tutorials/preProcessing/createZeroDirectory/snappyMultiRegionHeater/system/blockMeshDict +++ b/tutorials/preProcessing/createZeroDirectory/snappyMultiRegionHeater/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/stressAnalysis/solidDisplacementFoam/plateHole/system/blockMeshDict b/tutorials/stressAnalysis/solidDisplacementFoam/plateHole/system/blockMeshDict index 608581fb9fa718c75c84f8a7e0075df977acaebb..f5fa560b8ecf82e196f22675723e4b4aec14e6ff 100644 --- a/tutorials/stressAnalysis/solidDisplacementFoam/plateHole/system/blockMeshDict +++ b/tutorials/stressAnalysis/solidDisplacementFoam/plateHole/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices ( diff --git a/tutorials/stressAnalysis/solidEquilibriumDisplacementFoam/beamEndLoad/system/blockMeshDict b/tutorials/stressAnalysis/solidEquilibriumDisplacementFoam/beamEndLoad/system/blockMeshDict index b766a2368abb7f20972b33014c6a00950e54aa4c..2c517abf2fc379e175862d3c6b8946f41d06e762 100644 --- a/tutorials/stressAnalysis/solidEquilibriumDisplacementFoam/beamEndLoad/system/blockMeshDict +++ b/tutorials/stressAnalysis/solidEquilibriumDisplacementFoam/beamEndLoad/system/blockMeshDict @@ -14,7 +14,7 @@ FoamFile } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // -convertToMeters 1; +scale 1; vertices (