![]() |
Position: Bram van Leer Collegiate Research Professor Address: Center for Space Environment Modeling Dept. of Climate and Space University of Michigan 2455 Hayward, Ann Arbor MI, 48109 USA Office: 1424-C, Space Research Bldg Tel: +1 (734)-615-5362 Fax: +1 (734)-647-3083 E-mail: gtoth at umich dot edu Degree: Ph.D. in astrophysics (Princeton University, 1993) |
The SWMF has been selected (based on a thorough model comparison by Pulkkinen et al. 2013) and transitioned to operation as the first physics-based geospace model at the Space Weather Prediction Center of the U.S. National Weather Service. See an interview about the selection. The SWMF Geospace model now runs 24/7 at SWPC and provides global and local predictions for magnetic activity.
Publications on Google Scholar, ORCID, and RESEARCHERID
Publications and conference papers related to the Versatile Advection Code.
# Install gcc + gfortran version X (X=6 or more) with openmpi: port install gccX +cxx +fortran +openmpi port install openmpi +gccX +fortran # needed on Big Sur port select --set mpi openmpi-gccX-fortran # Mojave port select --set mpi openmpi-mp-fortran # Catalina, Big Sur cd /opt/local/bin ln -s gfortran-mp-X gfortranIt is possible that openmpi-gccX-fortran does not exist, as OSX wants you to use clang which belongs to openmpi-mp-fortran. This will work in some cases, but not in general. For example OpenMP is not supported by clang. It is best to use the GNU compilers, which can be easily achieved by setting:
setenv OMPI_CXX g++-mp-X setenv OMPI_CC gcc-mp-X setenv OMPI_FC gfortran-mp-X
setenv PATH_TAIL "/opt/local/bin:$HOME/bin:/usr/local/bin:/usr/bin:/bin:/opt/X11/bin:${IDL_DIR}/bin/" setenv PATH ".:/usr/local/mpi/bin:${PATH_TAIL}" alias load_nagfor 'setenv PATH ".:/usr/local/mpi/bin:${PATH_TAIL}"' alias load_gfortran 'setenv PATH ".:${PATH_TAIL}"'This assumes that the NAG compatible MPI library is installed into /usr/local/mpi.