Changeset 1330 for trunk/LMDZ.GENERIC
- Timestamp:
- Aug 26, 2014, 8:15:53 AM (10 years ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/deftank/edu/INIT/planet_start
r1322 r1330 7 7 g !! * 8 8 9.81 !! <-- Acceleration gravite (m/s2) 9 mugaz !! * 10 28.0 !! <-- Masse molaire atmosphérique (g/mol) 11 rcp !! * 12 0.286 !! <-- Rapport r/cp (massiques) 9 13 daysec !! * 10 14 86400 !! <-- Duree du jour (s) … … 20 24 0. !! <-- Date periastre (jours depuis printemps) 21 25 obliquit !! * 22 2 5.0!! <-- Obliquite (degres)26 23.9 !! <-- Obliquite (degres) 23 27 24 28 none -
trunk/LMDZ.GENERIC/deftank/edu/RUN/def_benj_earth/callphys.def
r1322 r1330 38 38 corrk = .true. 39 39 # Include continuum absorption in radiative transfer (note CO2 is treated separately) ? 40 continuum = . true.40 continuum = .false. 41 41 # folder in which correlated-k data is stored ? 42 corrkdir = earth42 # corrkdir = earth 43 43 # corrkdir = N2CO2poor_H2Ovar 44 44 # corrkdir = megaCO2 45 #corrkdir = null45 corrkdir = null 46 46 # call visible gaseous absorption in radiative transfer ? 47 callgasvis = . true.47 callgasvis = .false. 48 48 # Include Rayleigh scattering in the visible ? 49 rayleigh = . true.49 rayleigh = .false. 50 50 # Uniform absorption coefficient in radiative transfer? 51 graybody = . false.51 graybody = .true. 52 52 # Constant absorption coefficient in visible 53 53 # (in m^2/kg; only if graybody=true): 54 54 # tau_surf= kappa*P/g 55 kappa_VI = 5.e-7 55 #kappa_VI = 5.e-7 56 kappa_VI = 5.e-20 56 57 # Constant absorption coefficient in IR 57 58 # (in m^2/kg; only if graybody=true): … … 79 80 # Force specific heat capacity and molecular mass values 80 81 force_cpp = .true. 82 force_cpp = .false. 81 83 # Specific heat capacity in J K-1 kg-1 [only used if force_cpp = T] 82 84 cpp = 1039.918 … … 158 160 159 161 # To not call abort when temperature is outside boundaries: 160 strictboundcorrk = . false.162 strictboundcorrk = .true. 161 163 162 164 -
trunk/LMDZ.GENERIC/deftank/edu/RUN/etu.def
r1323 r1330 1 1 # Nombre de jours d'intégration 2 nday = 730 2 nday = 1825 3 #nday = 3650 4 #nday = 7300 5 #nday = 14600 3 6 4 7 # Nombre de pas d'intégration dynamique par jour … … 11 14 iphysiq = 1 12 15 13 ########## 14 # mode simple "gris" (coefficient d'absorption constant selon lambda) 15 graybody = .true. 16 continuum = .false. 17 corrkdir = null 18 # coefficient d'absorption IR et VIS en m2/kg [--> kappa ~ tau_surf*g/P] 16 # Coefficient d'absorption IR en m2/kg [--> kappa ~ tau_surf*g/P] 19 17 kappa_IR = 5.e-5 20 kappa_VI = 5.e-621 ##########22 18 23 19 -
trunk/LMDZ.GENERIC/deftank/edu/atlas.exe
r1323 r1330 9 9 ######################################################################### 10 10 11 # arguments 12 from optparse import OptionParser ### TBR by argparse 13 parser = OptionParser() 14 (opt,args) = parser.parse_args() 15 if len(args) == 0: args = "resultat.nc" 16 11 17 # OK. then the actual plotting commands. 12 18 # -- people should be encouraged to use the command line pp.py too 13 14 19 from ppclass import pp 15 20 16 fi= "resultat.nc"21 fi=args 17 22 18 t = pp(var="tsurf",file 23 t = pp(var="tsurf",file=fi,x="-180,180",y=[-80,-60,-20,0],superpose=True,quiet=True,ylabel=r'surface temperature ($^{\circ}$C)').get()-273.15 19 24 t.plot() 20 25 -
trunk/LMDZ.GENERIC/deftank/edu/run.exe
r1322 r1330 14 14 b1=3 # recompile with full if you changed this 15 15 b2=2 # recompile with full if you changed this 16 b1=1 # recompile with full if you changed this 17 b2=1 # recompile with full if you changed this 16 18 17 echo "*** COMPILATION GCM *** "19 echo "*** COMPILATION GCM *** ne pas interrompre ***" 18 20 cd $wheresource/LMDZ.COMMON ; \rm gcm.e 19 21 makelmdz -cpp NODYN -d $nx"x"$ny"x"$nz -b $b1"x"$b2 -t $tr -s 1 -p generic -arch gfortran gcm > logcompilegcm 2> logcompilegcm … … 22 24 fi 23 25 24 echo "*** COMPILATION NEWSTART *** "26 echo "*** COMPILATION NEWSTART *** ne pas interrompre ***" 25 27 cd $wheresource/LMDZ.GENERIC ; \rm newstart.e 26 28 makegcm_gfortran_local -d $nx"x"$ny"x"$nz -debug newstart > logcompilerestart 2> logcompilerestart … … 39 41 cd $thisfolder/RUN ; \rm resultat.nc > /dev/null 2> /dev/null 40 42 time gcm.e | tee log_gcm | grep "Ls =" 43 #time gcm.e > /dev/null 2> /dev/null 44 #time gcm.e #| grep "WRITE" 41 45 mv diagfi.nc ../resultat.nc 42 46 -
trunk/LMDZ.GENERIC/libf/phystd/newstart.F
r1321 r1330 430 430 mugaz = p_mugaz 431 431 daysec = p_daysec 432 433 if (p_omeg .eq. -9999.) then 434 p_omeg = 8.*atan(1.)/p_daysec 435 print*,"new value of omega",p_omeg 436 endif 432 437 433 438 kappa = 8.314*1000./(p_mugaz*p_cpp) ! added by RDW
Note: See TracChangeset
for help on using the changeset viewer.