Skip to content
Snippets Groups Projects
Allrun 285 B
Newer Older
  • Learn to ignore specific revisions
  • Franjo's avatar
    Franjo committed
    #!/bin/sh
    
    cd ${0%/*} || exit 1                        # Run from this directory
    . $WM_PROJECT_DIR/bin/tools/RunFunctions    # Tutorial run functions
    
    Franjo's avatar
    Franjo committed
    
    runApplication cartesianMesh
    runApplication checkMesh
    
    
    #------------------------------------------------------------------------------