HAZ
December 16, 2021 ยท View on GitHub
Probabilistic Seismic Hazard Analysis written by Norm Abrahamson.
Compiling
HAZ is written in FORTRAN and may be compiled with Intel's ifort compiler or GNU's gfortran compiler.
Windows
On Windows, the easiest way to get a build system running is via MSYS2. After following the installation instructions, open an MinGW terminal and issue the following commands to install the required dependencies. Note, that these commands install the 64-bit versions. If you prefer to use 32-bit versions replace "x86_64" with "i686".
pacman -S git mingw-w64-x86_64-gcc-libgfortran mingw-w64-x86_64-cmake
After installing the required dependencies, HAZ can be checked out of Git and built using the following:
git clone https://github.com/abrahamson/HAZ.git HAZ
cd HAZ
mkdir build
cd build
cmake .. -G "MSYS Makefiles"
make
This build will require DLLs provided by MSYS2. A static build that includes the required DLLs, can be built with:
cmake .. -G "MSYS Makefiles" -DSTATIC=ON
make
The HAZ executable can then be found under HAZ/build/HAZ.exe.