Hi! Located here are the files for the multiple sphere T matrix fortran-90 code, D. W Mackowski et al.
You can build MSTM
easily if you have Meson installed:
meson build && cd build
meson install
Options:
with-mpi
: if this option istrue
,MSTM
will be built in parallel mode. Meson will try to find the path of MPI and configure the compilation for you. Default isfalse
.with-mpich
: if this option istrue
,MSTM
will be built in parallel mode. Meson will try to find the path of MPICH and configure the compilation for you. Default isfalse
.bindir
: set the installation target directory. Default isbin
.
Example:
meson build -Dwith-mpi=true && cd build
meson install
If Meson cannot find the MPI/MPICH library, or if the compiler complains Cannot open module file 'mpi.mod'
, you need
to set the environment variable FC
while running meson
:
FC=mpifort.mpich meson build -Dwith-mpich=true && cd build
meson install