Ignore:
Timestamp:
Oct 30, 2007, 4:58:43 PM (17 years ago)
Author:
Laurent Fairhead
Message:

Inclusion d'un parametre aer_type qui permet de définir le type d'aerosols
lus dans readsulfate (pre-industriels, naturels ou scenario). SD
LF

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ4/branches/LMDZ4_V3_patches/libf/phylmd/conf_phys.F90

    r845 r857  
    5656  logical,SAVE        :: ok_journe_omp, ok_mensuel_omp, ok_instan_omp, ok_hf_omp       
    5757  LOGICAL,SAVE        :: ok_ade_omp, ok_aie_omp
     58  character (len = 8),SAVE  :: aer_type_omp
    5859  REAL,SAVE           :: bl95_b0_omp, bl95_b1_omp
    5960  REAL,SAVE           :: freq_ISCCP_omp, ecrit_ISCCP_omp
     
    165166  ok_aie_omp = .false.
    166167  call getin('ok_aie', ok_aie_omp)
     168
     169!
     170!Config Key  = aer_type
     171!Config Desc = Use a constant field for the aerosols
     172!Config Def  = scenario
     173!Config Help = Used in readsulfate.F
     174!
     175  aer_type_omp = 'scenario'
     176  call getin('aer_type', aer_type_omp)
    167177
    168178!
     
    828838    ok_ade = ok_ade_omp
    829839    ok_aie = ok_aie_omp
     840    aer_type = aer_type_omp
    830841    bl95_b0 = bl95_b0_omp
    831842    bl95_b1 = bl95_b1_omp
     
    906917  write(numout,*)' ok_ade = ',ok_ade
    907918  write(numout,*)' ok_aie = ',ok_aie
     919  write(numout,*)' aer_type = ',aer_type
    908920  write(numout,*)' bl95_b0 = ',bl95_b0
    909921  write(numout,*)' bl95_b1 = ',bl95_b1
Note: See TracChangeset for help on using the changeset viewer.