Skip to content
Snippets Groups Projects
Allrun 683 B
Newer Older
  • Learn to ignore specific revisions
  • #!/bin/sh
    cd "${0%/*}" || exit                                # Run from this directory
    . ${WM_PROJECT_DIR:?}/bin/tools/RunFunctions        # Tutorial run functions
    #------------------------------------------------------------------------------
    
    touch case.foam
    
    runApplication blockMesh
    
    # Generate f0Zone faceZone
    runApplication topoSet
    
    runApplication extrudeMesh
    
    runApplication checkMesh
    
    #- Extrude some internal faces into owner
    
    runApplication -s flip topoSet -dict system/topoSetDict.flip
    
    runApplication -s flip extrudeMesh -dict system/extrudeMeshDict.flip
    
    runApplication -s flip checkMesh
    
    #------------------------------------------------------------------------------