- Timestamp:
- Feb 10, 2012, 6:47:12 PM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 8 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.MARS/libf/phymars/physiq.F
r520 r523 1886 1886 ! endif 1887 1887 1888 call WRITEDIAGFI(ngridmx,' lmax_th',1889 & 'hauteur du thermique',' K',1890 & 2, lmax_th_out)1888 call WRITEDIAGFI(ngridmx,'zmax_th', 1889 & 'hauteur du thermique','m', 1890 & 2,zmax_th) 1891 1891 call WRITEDIAGFI(ngridmx,'hfmax_th', 1892 1892 & 'maximum TH heat flux','K.m/s', -
trunk/LMDZ.MARS/makegcm_pgf
r512 r523 21 21 #### relying on the C-shell environment variables) 22 22 # default LMDGCM to where makegcm script is located: 23 #setenv LMDGCM "`dirname $0`" 23 set scriptdir=`dirname $0` 24 setenv LMDGCM `readlink -f $scriptdir` 24 25 # You may set LIBOGCM to something else; otherwise we default to: 25 #setenv LIBOGCM $LMDGCM/libo26 setenv LIBOGCM $LMDGCM/libo 26 27 ## NetCDF Libraries: what follows is OK for LMD 32 and 64bit Linux Machines 27 28 #if ( `uname -m` == "x86_64" ) then 28 29 ## 64 bit machines 29 #setenv NCDFLIB /donnees/emlmd/netcdf64-4.0.1_pgi/lib30 #setenv NCDFINC /donnees/emlmd/netcdf64-4.0.1_pgi/include30 setenv NCDFLIB /donnees/emlmd/netcdf64-4.0.1_pgi/lib 31 setenv NCDFINC /donnees/emlmd/netcdf64-4.0.1_pgi/include 31 32 #else 32 33 # setenv NCDFLIB /donnees/emlmd/netcdf-4.0.1_pgi/lib … … 735 736 cd $localdir 736 737 738 ## locate main program (could be in dyn3d or phy$physique 739 ## and could be .F or .F90) 740 set source_code=${code}.F 741 if ( -f $LMDGCM/libf/dyn3d/${code}.F90 ) then 742 set source_code=${code}.F90 743 endif 744 if ( -f $LMDGCM/libf/phy${physique}/${code}.F ) then 745 set source_code=${code}.F 746 endif 747 if ( -f $LMDGCM/libf/phy${physique}/${code}.F90 ) then 748 set source_code=${code}.F90 749 endif 750 751 ## locate directory where main program is located 752 if ( $dimension == 3 ) then 753 if ( -f $LMDGCM/libf/dyn3d/${source_code} ) then 754 set dyn="DIRMAIN=dyn3d " 755 endif 756 if ( -f $LMDGCM/libf/phy${physique}/${source_code} ) then 757 set dyn="DIRMAIN=phy${physique} " 758 endif 759 endif 760 737 761 echo $make -f $LMDGCM/makefile \ 738 762 OPTION_DEP="$opt_dep" OPTION_LINK="$opt_link" \ … … 757 781 MOD_SUFFIX=$mod_suffix \ 758 782 AR=$ar \ 783 SOURCE=$source_code \ 759 784 PROG=$code 760 785 … … 782 807 MOD_SUFFIX=$mod_suffix \ 783 808 AR=$ar \ 809 SOURCE=$source_code \ 784 810 PROG=$code 785 811 -
trunk/LMDZ.MARS/util/compile
r386 r523 8 8 #-L/distrib/local/netcdf/pgi_7.1-6_32/lib -lnetcdf -o $1.e 9 9 10 ifort $1.F90 \ 10 #ifort $1.F90 \ 11 pgf90 $1.F90 \ 11 12 -I$NETCDF/include \ 12 13 -L$NETCDF/lib -lnetcdf -o $1.e -
trunk/MESOSCALE/LMDZ.MARS.new/in_lmdz_mars_newphys/compile
r386 r523 41 41 scatterers=2 42 42 ################## 43 tracers=7 44 nx=64 45 ny=48 46 nz=25 47 scatterers=2 48 ################## 43 49 44 50 -
trunk/MESOSCALE/LMDZ.MARS.new/makegcm_pgf
r255 r523 1 link ../../LMDZ.MARS/makegcm 1 link ../../LMDZ.MARS/makegcm_pgf -
trunk/MESOSCALE/LMDZ.MARS.new/myGCM/DEFS_JB/callphys.def
r255 r523 2 2 ##~~~~~~~~~~~~~~~ 3 3 #Directory where external input files are 4 datadir = /san/home/spiga/DATAFILE/4 #datadir = /san/home/spiga/DATAFILE/ 5 5 6 6 #Run with or without tracer transport ? -
trunk/MESOSCALE/LMDZ.MARS/makegcm
r235 r523 1 link makegcm_ ifort1 link makegcm_pgf_new -
trunk/MESOSCALE/LMD_MM_MARS/SRC/WRFV2/Registry/Registry.EM
r510 r523 107 107 state real TAU_ICE ij misc 1 - rd "TAU_ICE" "CLOUD OD at 825 cm-1 TES" "" #SAVEMARS2 tauTES 108 108 state real PDTZ ikj misc 1 - rd "PDT" "TEMP TENDENCY" "K s-1" #SAVEMARS3 pdt 109 state real LMAX_TH ij misc 1 - rd "LMAX_TH" "MAXIMUM LEVEL REACHED IN TH" "" #SAVEMARS2 lmax_th_out109 state real ZMAX_TH ij misc 1 - rd "ZMAX_TH" "MAXIMUM LEVEL REACHED IN TH" "m" #SAVEMARS2 zmax_th 110 110 state real HFMAX_TH ij misc 1 - rd "HFMAX_TH" "MAXIMUM TH HEAT FLUX" "m.K/s" #SAVEMARS2 hfmax_th 111 111 state real WSTAR ij misc 1 - rd "WSTAR" "FREE CONVECTION VELOCITY FROM TH" "m/s" #SAVEMARS2 wstar -
trunk/MESOSCALE/LMD_MM_MARS/SRC/WRFV2/mars_lmd/libf/phymars/physiq.F
r515 r523 1064 1064 c ------------------------------------------- 1065 1065 1066 tituscap = . false.1066 tituscap = .true. 1067 1067 IF (tituscap) THEN 1068 1068 PRINT*,'TITUS CAP !!!' … … 1081 1081 $ fluxsurf_sw) 1082 1082 1083 IF (tituscap) THEN 1084 DO ig=1,ngrid 1085 pdpsrf(ig) = 0. 1086 ENDDO 1087 ENDIF 1083 1088 1084 1089 DO l=1,nlayer
Note: See TracChangeset
for help on using the changeset viewer.