MOOSE Configuration

From UFRC
Revision as of 14:34, 13 August 2020 by Chasman (talk | contribs)
Jump to navigation Jump to search

Configure and test your own "MOOSE" framework

  1. mkdir projects
  2. cd projects
  3. module load moose/12-aug-20
  4. git clone https://github.com/idaholab/moose.git
  5. cd moose
  6. git checkout master
  7. export VTKLIB_DIR=${HPC_VTK_LIB} VTKINCLUDE_DIR=${HPC_VTK_INC}
  8. Run "./scripts/update_and_rebuild_libmesh.sh --enable-vtk-required"
  9. Interrupt (ctrl-c) the above configure/build just after the git clone of libmesh is completed.
  10. Patch the "configure" script using the accompanying patch file (see below).
  11. Rerun "./scripts/update_and_rebuild_libmesh.sh --enable-vtk-required" and allow it to complete. It should finish without errors.
  12. cd test; run_tests -j 4
  13. Build and test the "phase field" module:
    1. cd moose/modules/phase_field
    2. make -j 4
    3. ./run_tests -j 4
  14. Build and test the "combined" module:
    1. cd moose/modules/combined
    2. make -j 4
    3. ./run_tests -j 4