Changes between Version 3 and Version 4 of Software/OpenFOAM


Ignore:
Timestamp:
02/14/17 15:06:09 (7 years ago)
Author:
Jens Henrik Goebbert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Software/OpenFOAM

    v3 v4  
    230230
    231231
    232 == Build OpenFOAM ==
     232== Build & Test OpenFOAM ==
     233
     234=== build OpenFOAM
    233235{{{ #!sh
    234236
     
    244246# build OpenFOAM (except Qt & ParaView)
    245247./Allwmake
     248}}}
     249
     250=== test OpenFOAM
     251    Validate the build by running
     252
     253{{{ #!sh
     254# cd $WM_PROJECT_DIR
     255foam
     256
     257foamInstallationTest
     258
     259# create the user run directory
     260mkdir -p $FOAM_RUN
     261
     262
     263# test the installation with a simple tutorial:
     264run
     265cp -r $FOAM_TUTORIALS/incompressible/simpleFoam/pitzDaily ./
     266cd pitzDaily
     267blockMesh
     268simpleFoam
     269
     270#paraFoam
    246271}}}
    247272