silviamazzoni / HAZ45

PSHA Code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HAZ

Build Status

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.

About

PSHA Code

License:GNU General Public License v3.0


Languages

Language:Fortran 98.4%Language:Python 1.2%Language:C 0.3%Language:CMake 0.1%