Subversion Repositories lagranto.ecmwf

Rev

Rev 44 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 44 Rev 47
Line 20... Line 20...
20
set path_devel = "${DYN_TOOLS}//lagranto.ecmwf/"
20
set path_devel = "${DYN_TOOLS}//lagranto.ecmwf/"
21
set path_sync  = "${DYN_TOOLS}/lagranto/"
21
set path_sync  = "${DYN_TOOLS}/lagranto/"
22
 
22
 
23
# Set Fortran compiler
23
# Set Fortran compiler
24
setenv FORTRAN pgf90 
24
setenv FORTRAN pgf90 
-
 
25
#setenv FORTRAN gfortran
25
 
26
 
26
# Set netcdf format (ive, cdo, mch) 
27
# Set netcdf format (ive, cdo, mch) 
27
set ncdf = ive 
28
set ncdf =  ive
-
 
29
#set ncdf = cdo
28
 
30
 
29
# Init netCDF library depending on the Fortran compiler
31
# Init netCDF library depending on the Fortran compiler
30
if ( "${FORTRAN}" == "pgf90" ) then
32
if ( "${FORTRAN}" == "pgf90" ) then
31
  module load netcdf/4.2.1-pgf90
33
  module load netcdf/4.2.1-pgf90
32
  module list
34
  module list
33
 
35
 
34
else if ( "${FORTRAN}" == "gfortran" ) then
36
else if ( "${FORTRAN}" == "gfortran" ) then
35
  module load gfortran
37
  module load gfortran
36
  module load netcdf/4.2.1
38
  module load netcdf
37
 
39
 
38
else if ( "${FORTRAN}" == "ifort" ) then
40
else if ( "${FORTRAN}" == "ifort" ) then
39
  module load intel
41
  module load intel
40
  module load netcdf/4.3.2-intel
42
  module load netcdf/4.3.2-intel
41
 
43