Changeset 1245
- Timestamp:
- May 11, 2014, 1:32:49 PM (11 years ago)
- Location:
- trunk/LMDZ.COMMON
- Files:
-
- 2 added
- 2 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/ioipsl/install_ioipsl_gfortran.bash
r1244 r1245 5 5 # below to adapt this script to your computer. 6 6 7 setfolder="/home/aymeric/Science/MODELES/LMDZ.COMMON/netcdf/gfortran_netcdf-4.0.1" 8 #setfolder="/donnees/emlmd/netcdf64-4.0.1_gfortran/" 9 7 10 #0. Preliminary stuff 8 11 # netcdf include and lib dirs: 9 netcdf_include= "/donnees/emlmd/netcdf64-4.0.1_gfortran/include"10 netcdf_lib= "/donnees/emlmd/netcdf64-4.0.1_gfortran/lib"12 netcdf_include=$setfolder"/include" 13 netcdf_lib=$setfolder"/lib" 11 14 12 15 whereami=`pwd -P` -
trunk/LMDZ.COMMON/libf/dyn3d/calfis.F
r1189 r1245 224 224 endif 225 225 226 if (flag_moyzon) call moyzon_init 226 if (flag_moyzon) call moyzon_init(iim,llm,nqtot) 227 227 228 228 c---------------------------------------------- -
trunk/LMDZ.COMMON/libf/dyn3d/moyzon_mod.F90
r1126 r1245 24 24 CONTAINS 25 25 !====================================================================== 26 SUBROUTINE moyzon_init 26 SUBROUTINE moyzon_init(klon,llm,nqtot) 27 27 #ifdef CPP_PHYS 28 ! This routine needs physics 29 USE dimphy 30 USE infotrac, only: nqtot 28 !! This routine needs physics 31 29 IMPLICIT NONE 32 INCLUDE "dimensions.h"30 INTEGER :: klon,llm,nqtot 33 31 34 32 ALLOCATE(zplevbar(klon,llm+1),zplaybar(klon,llm)) … … 37 35 ALLOCATE(zpkbar(klon,llm),ztetabar(klon,llm)) 38 36 ALLOCATE(zzlevbar(klon,llm+1),zzlaybar(klon,llm)) 39 40 37 #else 41 38 include "iniprint.h"
Note: See TracChangeset
for help on using the changeset viewer.