Personal tools

Difference between revisions of "*NIX platforms"

From MohidWiki

Jump to: navigation, search
Line 4: Line 4:
  
 
=== Prerequisites ===
 
=== Prerequisites ===
 +
# gcc, g++ and make-tools for linux
 +
# Subversion
 +
# Intel Fortran 9 or greater
  
 
''NOTE'': this article was written assuming the fortran compiler is ''Intel''. If this is not the case then change where there is written "ifort" with the fortran compiler in use (ex: openf95, pgf90, g90, etc...). In particular, the MOHID code is found to build well with the [[open64]] fortran.
 
''NOTE'': this article was written assuming the fortran compiler is ''Intel''. If this is not the case then change where there is written "ifort" with the fortran compiler in use (ex: openf95, pgf90, g90, etc...). In particular, the MOHID code is found to build well with the [[open64]] fortran.
Line 16: Line 19:
 
# <code> > make check</code>
 
# <code> > make check</code>
 
# <code> > make install</code>
 
# <code> > make install</code>
Libraries may be found in ./hdf5/lib/ and, typically, in /opt/hdf5/hdf5/lib. Detailed information may be found in file ./release_docs/INSTALL.
+
Detailed information may be found in file ./release_docs/INSTALL.
 
 
 
 
  
 
==== Zlib libraries ====
 
==== Zlib libraries ====
To use the HDF5 libraries it is mandatory to have installed the zlib libraries. So install the zlib package for your linux distro. Also, keep a record of where the libz.a library is installed (it might come in handy later on).#
+
To use the HDF5 libraries it is mandatory to have installed the zlib libraries. So install the zlib package for your linux distro. Also, keep a record of where the libz.a library is installed (it might come in handy later on).
  
 
==== Netcdf libraries ====
 
==== Netcdf libraries ====

Revision as of 13:45, 2 July 2012

This is a tutorial on how to install MOHID in linux and derived other platforms. To complement this tutorial, you can also check out some video tutorials in the Codeplex article.

Installing

Prerequisites

  1. gcc, g++ and make-tools for linux
  2. Subversion
  3. Intel Fortran 9 or greater

NOTE: this article was written assuming the fortran compiler is Intel. If this is not the case then change where there is written "ifort" with the fortran compiler in use (ex: openf95, pgf90, g90, etc...). In particular, the MOHID code is found to build well with the open64 fortran.

HDF5 libraries

To compile Mohid it is mandatory to have the HDF5 [1] libraries compiled. In HDF5's web page it is possible to obtain both binary distribuitions and the source code. Most of the times it is necessary to build from source:

  1. download the source code, e. g. hdf5-1.6.5.tar.gz;
  2. > tar -zxvf hdf5-1.6.5.tar.gz
  3. > cd hdf5-1.6.5
  4. > F9X=ifort ./configure --enable-fortran (--prefix=$HDF5ROOTDIR --enable-parallel)
  5. > make
  6. > make check
  7. > make install

Detailed information may be found in file ./release_docs/INSTALL.

Zlib libraries

To use the HDF5 libraries it is mandatory to have installed the zlib libraries. So install the zlib package for your linux distro. Also, keep a record of where the libz.a library is installed (it might come in handy later on).

Netcdf libraries

The netcdf libraries are optional since they are not required to run MohidWater. However they are useful for other modules of the Mohid Suite such as ConvertToHDF5. You can get them from the official site. Here's the report on how to build them for windows.

Building MohidWater

Make sure that you have intel Fortran installed (any version later than 9.x should do). Follow instructions in the README file that is in the codeplex distribution, under the Linux folder (you are required to create the Editme.mk file from a template and edit your hdf5 library paths).

To build the Linux makefile solution, just type

  1. > make Nix

To clean the distribution, type:

  1. > make Nix.clean

Make sure you also check our videos.

Running Mohid projects in linux

General guidelines that change from windows

  1. There are no graphical interfaces available. No GUI, no PostProcessor and no GIS.
  2. Linux is case-sensitive. This is very important.
  3. Linux reads paths to files and folders using the slash '/' instead of the backslash '\'.

Required files for mohidwater to run (preserve letters capitalization!). You must copy (and edit) the files manually:

exe/nomfich.dat
exe/tree.dat

TroubleShooting

Q: the makefile keeps giving me errors :(

A:Here's a list of what could be causing these errors:

  1. Open the makefiles and check that fields are properly filled.
  2. Make sure that mod and bin directories exist in the module's folder. Otherwise simply make them with the mkdir command.
  3. Make sure that "ifort" is a valid command. If it isn't then you probably didn't loaded its environment variables. Type "source /opt/intel/fc/9.0/bin/ifortvars.sh" for that.
  4. Make sure that the intel fortran compiler was properly installed.

Q: the makefile complains when compiling ModuleGOTM.f90

A: Probably you have to rename

GOTMVariables_in.f90 ---> GOTMvariables_in.f90
GOTMVariables_out.f90 ---> GOTMvariables_out.f90.

This error shows up in linux because it's case-sensitive whereas windows isn't. Also, make sure that the extension is written in lower case.

Q: By the time i'm linking the final MohidWater binary I get some error about unreferenced functions "compress2" and others in HDF5 files...

A: Probably you need to specify to link against the libz.a library. Identify the exactly the location of libz.a (ex: in my system it can be found at /opt/zlib/lib/libz.a) then add edit accordingly the Solutions/Linux/Editme.mk file.

See also