User Tools

Site Tools


june_1-2_2014_detailed_installation_steps_for_parallel_vh-1_and_required_libraries

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Last revision Both sides next revision
june_1-2_2014_detailed_installation_steps_for_parallel_vh-1_and_required_libraries [2014/06/02 23:51]
willcox
june_1-2_2014_detailed_installation_steps_for_parallel_vh-1_and_required_libraries [2014/06/03 00:26]
willcox
Line 1: Line 1:
 +Back to WGV Group Logbook: [[wgv|Welcome to the WGV Group Logbook]]
 +
 +----
 +====== Setting up Parallel VH-1 with NetCDF ======
 +===== Getting the NetCDF Libraries (v4.2) =====
 +==== Setting Up NetCDF From Source ====
 +===== Modifying the Parallel VH-1 Files =====
 +----
 +
 +Date: June 1-2, 2014
 +
 +Donald Willcox
 +
 +----
 +
 ====== Setting up Parallel VH-1 with NetCDF ====== ====== Setting up Parallel VH-1 with NetCDF ======
 The parallel version of VH-1 uses netcdf, and configuring mpich and netcdf and compiling the parallel version requires installing the following libraries. On Fedora, I installed all of these via ''​yum install <​library>''​ and they are likely available via ''​apt-get''​ if your Linux distribution uses Synaptic. The parallel version of VH-1 uses netcdf, and configuring mpich and netcdf and compiling the parallel version requires installing the following libraries. On Fedora, I installed all of these via ''​yum install <​library>''​ and they are likely available via ''​apt-get''​ if your Linux distribution uses Synaptic.
Line 12: Line 27:
 You can get the source for v.4.2 of the NetCDF Library from Unidata'​s links as follows: You can get the source for v.4.2 of the NetCDF Library from Unidata'​s links as follows:
  
-[[http://​www.unidata.ucar.edu/​downloads/​netcdf/​ftp/​netcdf-4.2.tar.gz]] +  * [[http://​www.unidata.ucar.edu/​downloads/​netcdf/​ftp/​netcdf-4.2.tar.gz]] 
- +  ​* ​[[ftp://​ftp.unidata.ucar.edu/​pub/​netcdf/​netcdf-fortran-4.2.tar.gz]] 
-[[ftp://​ftp.unidata.ucar.edu/​pub/​netcdf/​netcdf-fortran-4.2.tar.gz]] +  ​* ​[[https://​github.com/​Unidata/​netcdf-cxx4/​archive/​v4.2.1.tar.gz]]
- +
-[[https://​github.com/​Unidata/​netcdf-cxx4/​archive/​v4.2.1.tar.gz]]+
  
 It depends on hdf5, szip, and zlib libraries, which you can get from: It depends on hdf5, szip, and zlib libraries, which you can get from:
  
-[[http://​www.hdfgroup.org/​ftp/​lib-external/​szip/​2.1/​src/​szip-2.1.tar.gz]] +  * [[http://​www.hdfgroup.org/​ftp/​lib-external/​szip/​2.1/​src/​szip-2.1.tar.gz]] 
- +  ​* ​[[http://​zlib.net/​zlib-1.2.8.tar.gz]] 
-[[http://​zlib.net/​zlib-1.2.8.tar.gz]] +  ​* ​[[http://​www.hdfgroup.org/​ftp/​HDF5/​releases/​hdf5-1.8.12/​src/​hdf5-1.8.12.tar.gz]]
- +
-[[http://​www.hdfgroup.org/​ftp/​HDF5/​releases/​hdf5-1.8.12/​src/​hdf5-1.8.12.tar.gz]]+
  
 First, build/​install zlib, szip, and hdf5 in that order. Then build/​install netcdf-4.2, netcdf-cxx4,​ and netcdf-fortran-4.2 in that order and you should be good to go. You'll have to set environment variables along the way such as CFLAGS, CPPFLAGS and LDFLAGS to point to the include and lib directories containing the library files you install so that building the library that depends on the previous one can find the appropriate files. First, build/​install zlib, szip, and hdf5 in that order. Then build/​install netcdf-4.2, netcdf-cxx4,​ and netcdf-fortran-4.2 in that order and you should be good to go. You'll have to set environment variables along the way such as CFLAGS, CPPFLAGS and LDFLAGS to point to the include and lib directories containing the library files you install so that building the library that depends on the previous one can find the appropriate files.
Line 105: Line 116:
  
 ''​mlabs-mpi: ​     $(MERGEOBJS) ''​mlabs-mpi: ​     $(MERGEOBJS)
 +        ​
         $(LDR) $(LDRFLAGS) -o mlabs-mpi $(MERGEOBJS) $(LIBS); mv mlabs-mpi ../​../​output/​.''​         $(LDR) $(LDRFLAGS) -o mlabs-mpi $(MERGEOBJS) $(LIBS); mv mlabs-mpi ../​../​output/​.''​
  
Line 114: Line 126:
  
 Now ''​make''​ will put the executable vh1-mpi in the VH1 directory and ''​make mlabs-mpi''​ will put the executable mlabs-mpi in the VH1/output directory. Run vh1-mpi using ''​mpiexec -np 4 ./​vh1-mpi''​ and then go to VH1/output and run mlabs-mpi. Voila, I've got output for the default 3D Sod shock tube problem and now comes visualizing the data... Now ''​make''​ will put the executable vh1-mpi in the VH1 directory and ''​make mlabs-mpi''​ will put the executable mlabs-mpi in the VH1/output directory. Run vh1-mpi using ''​mpiexec -np 4 ./​vh1-mpi''​ and then go to VH1/output and run mlabs-mpi. Voila, I've got output for the default 3D Sod shock tube problem and now comes visualizing the data...
- 
-======= Visualizing NetCDF Files with Python ======= 
-Once you've installed netcdf, you can access data in netcdf files from Python by installing numpy and ScientificPython. You should be able to get these by searching your package manager of choice or visiting their project sites: 
- 
-  * [[http://​www.numpy.org/​]] 
-  * [[https://​sourcesup.renater.fr/​projects/​scientific-py/​]] 
- 
-I go into more detail on building and installing ScientificPython in the following section for adding it to yt if you're interested in using yt to plot your data. Otherwise you can use python to access the netcdf files by referencing the NetCDF/​python documentation here:  
- 
-  * [[http://​gfesuite.noaa.gov/​developer/​netCDFPythonInterface.html]] 
- 
-To load the necessary modules in your python script, use the following: 
-''​import Scientific.IO.NetCDF 
-from numpy import * 
-from Scientific.IO.NetCDF import *''​ 
- 
-====== Configuring YT for NetCDF Files ====== 
-yt is great for visualizing large multidimensional datasets from astrophysics codes such as FLASH, and it can be obtained from [[yt-project.org]]. yt returned errors in interpreting the netcdf files output by VH-1 when I tried opening them using its ''​load''​ function, so here's how I added NetCDF support to my yt distribution. First, make sure you've set the ''​NETCDF_PREFIX''​ environment variable as in the section on configuring NetCDF. 
- 
-I have installed yt to the following location: ''/​home/​dwillcox/​codes/​local/​yt-x86_64''​ 
- 
-To use NetCDF, yt needs numpy and ScientificPython installed, and it already comes with numpy. So the only thing to do is download ScientificPython:​ [[https://​sourcesup.renater.fr/​frs/​download.php/​4411/​ScientificPython-2.8.1.tar.gz]] 
- 
-Extract the tarball and ''​cd''​ into its directory. Activate the yt package by executing: 
- 
-''​source /​home/​dwillcox/​codes/​local/​yt-x86_64/​bin/​activate''​ 
- 
-Now execute the following: 
- 
-''​python setup.py build''​ 
- 
-''​python setup.py install''​ 
- 
-And ScientificPython should be added to your yt distribution! 
- 
-For a sample script using NetCDF with yt, see plotnc.py in my github repo:  
- 
-[[https://​github.com/​dwillcox/​VH1-solarwind/​blob/​master/​scripts/​plotnc.py]] 
- 
- 
- 
- 
- 
- 
- 
- 
june_1-2_2014_detailed_installation_steps_for_parallel_vh-1_and_required_libraries.txt · Last modified: 2014/06/03 00:27 by willcox