diff --git a/tutorials/mesh/snappyHexMesh/Allclean b/tutorials/mesh/snappyHexMesh/Allclean index 6d42806c789ce77995ace8943ac90def2d466c06..fa13c0523f2aed47a7f303c3e638f66aa8bfd5bd 100755 --- a/tutorials/mesh/snappyHexMesh/Allclean +++ b/tutorials/mesh/snappyHexMesh/Allclean @@ -13,5 +13,7 @@ cd "${0%/*}" || exit # Run from this directory ( cd opposite_walls && ./Allclean ) ( cd airfoilWithLayers && ./Allclean ) ( cd sphere_gapClosure && ./Allclean ) +( cd rotated_block && ./Allclean ) +( cd sphere_multiRegion && ./Allclean ) #------------------------------------------------------------------------------ diff --git a/tutorials/mesh/snappyHexMesh/Allrun b/tutorials/mesh/snappyHexMesh/Allrun index 1d3d88749da021fb7592c92e2c95c9c5aac2e171..45309e400baaeac61416ad1a1b1a4f331afb80a2 100755 --- a/tutorials/mesh/snappyHexMesh/Allrun +++ b/tutorials/mesh/snappyHexMesh/Allrun @@ -15,6 +15,8 @@ cd "${0%/*}" || exit # Run from this directory ( cd sphere_gapClosure && ./Allrun ) ( cd block_with_curvature && ./Allrun ) ( cd insidePoints && ./Allrun ) +( cd rotated_block && ./Allrun ) +( cd sphere_multiRegion && ./Allrun ) exit 0 diff --git a/tutorials/mesh/snappyHexMesh/rotated_block/system/blockMeshDict.block b/tutorials/mesh/snappyHexMesh/rotated_block/system/blockMeshDict.block deleted file mode 100644 index 20b44b2bf6c039ae96de2581af638fddaa8ddc6e..0000000000000000000000000000000000000000 --- a/tutorials/mesh/snappyHexMesh/rotated_block/system/blockMeshDict.block +++ /dev/null @@ -1,97 +0,0 @@ -/*--------------------------------*- C++ -*----------------------------------*\ -| ========= | | -| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | -| \\ / O peration | Version: v1812 | -| \\ / A nd | Web: www.OpenFOAM.com | -| \\/ M anipulation | | -\*---------------------------------------------------------------------------*/ -FoamFile -{ - version 2.0; - format ascii; - class dictionary; - object blockMeshDict; -} -// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // - -scale 1; - -vertices -( - (0 0 0) - (1 0 0) - (1 1 0) - (0 1 0) - (0 0 1) - (1 0 1) - (1 1 1) - (0 1 1) -); - -blocks -( - //hex (0 1 2 3 4 5 6 7) (20 20 10) simpleGrading (100 100 1) - hex (0 1 2 3 4 5 6 7) (1 1 1) simpleGrading (1 1 1) -); - -edges -( -); - -boundary -( - minX - { - type wall; - faces - ( - (0 4 7 3) - ); - } - maxX - { - type wall; - faces - ( - (2 6 5 1) - ); - } - - - minY - { - type wall; - faces - ( - (1 5 4 0) - ); - } - maxY - { - type wall; - faces - ( - (3 7 6 2) - ); - } - - - minZ - { - type wall; - faces - ( - (0 3 2 1) - ); - } - maxZ - { - type wall; - faces - ( - (4 5 6 7) - ); - } -); - -// ************************************************************************* //