Ignore:
Timestamp:
Jan 25, 2017, 4:02:54 PM (8 years ago)
Author:
emillour
Message:

Dynamical core: Further adaptations to stick with LMDZ5 (up to rev r2750)

  • libf
  • makelmdz[_fcm] : added Earth-specific "dust" and "strataer" cases and

-arch_path option

  • bld.cfg : added dust and strataer cases
  • dyn3d[par]
  • conf_gcm.F90 : added read_orop parameter (Earth-related) for

loading subgrid orography parameters.

  • guide[_p]_mod.F90: added output of nudging coefficients for winds

and temperature

  • temps_mod.F90 : cosmetics/comments
  • logic_mod.F90 : cosmetics/comments
  • dyn3d_common
  • comconst_mod.F90 : cosmetics/comments + added year_day module variable
  • conf_planete.F90 : added year_day from comconst_mod as done in LMDZ5
  • comvert_mod.F90 : cosmetics/comments
  • infotrac.F90 : added "startAer" case to follow up with LMDZ5
  • misc
  • wxios.F90 : follow up on changes in LMDZ5

EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/dyn3d/conf_gcm.F90

    r1593 r1650  
    2525  USE logic_mod, ONLY: tidal,purmats,ok_guide,read_start,iflag_phys,            &
    2626                iflag_trac,ok_strato,ok_gradsfile,ok_limit,ok_etat0,            &
    27                 moyzon_mu,moyzon_ch,ok_strato,fxyhypb,ysinus
     27                moyzon_mu,moyzon_ch,ok_strato,fxyhypb,ysinus,read_orop
    2828  USE serre_mod, ONLY: clon,clat,grossismx,grossismy,dzoomx,dzoomy,             &
    2929                alphax,alphay,taux,tauy
     
    5353!   ------
    5454
    55   CHARACTER ch1*72,ch2*72,ch3*72,ch4*12
    5655  REAL clonn,clatt,grossismxx,grossismyy
    5756  REAL dzoomxx,dzoomyy, tauxx,tauyy
    5857  LOGICAL  fxyhypbb, ysinuss
    59   INTEGER i
    6058  LOGICAL use_filtre_fft
    6159!
     
    549547  IF (use_filtre_fft) THEN
    550548    write(lunout,*)'STOP !!!'
    551     write(lunout,*)'use_filtre_fft n est pas implemente dans dyn3d'
     549    write(lunout,*)'use_filtre_fft not implemented in dyn3d'
    552550    STOP 1
    553551  ENDIF
     
    597595  ok_etat0 = .TRUE.
    598596  CALL getin('ok_etat0',ok_etat0)
     597
     598!Config  Key  = read_orop
     599!Config  Desc = lecture du fichier de params orographiques sous maille
     600!Config  Def  = f
     601!Config  Help = lecture fichier plutot que grid_noro
     602
     603  read_orop = .FALSE.
     604  CALL getin('read_orop',read_orop)
    599605
    600606!----------------------------------------
     
    954960 write(lunout,*)' ok_limit = ', ok_limit
    955961 write(lunout,*)' ok_etat0 = ', ok_etat0
     962 write(lunout,*)' read_orop = ', read_orop
    956963 if (planet_type=="titan") then
    957964   write(lunout,*)' moyzon_mu = ', moyzon_mu
Note: See TracChangeset for help on using the changeset viewer.