Ignore:
Timestamp:
Apr 30, 2008, 3:14:57 PM (16 years ago)
Author:
lsce
Message:

ACo+JG

Ajout du flag aerosol_couple :
false=lecture des sulfates dans un fichier(par defaut) - configuration existante
true=calcul des aerosol par INCA

File:
1 edited

Legend:

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

    r899 r954  
    99!IM&                   ratqsbas,ratqshaut,ip_ebil_phy, &
    1010 &                     ratqsbas,ratqshaut, &
    11  &                     ok_ade, ok_aie, &
     11 &                     ok_ade, ok_aie, aerosol_couple, &
    1212 &                     bl95_b0, bl95_b1,&
    1313 &                     iflag_thermals,nsplit_thermals)
     
    4747  logical              :: ok_veget, ok_newmicro
    4848  logical              :: ok_journe, ok_mensuel, ok_instan, ok_hf
    49   LOGICAL              :: ok_ade, ok_aie
     49  LOGICAL              :: ok_ade, ok_aie, aerosol_couple
    5050  REAL                 :: bl95_b0, bl95_b1
    5151  real                 :: fact_cldcon, facttemps,ratqsbas,ratqshaut
     
    5555  logical,SAVE              :: ok_veget_omp, ok_newmicro_omp
    5656  logical,SAVE        :: ok_journe_omp, ok_mensuel_omp, ok_instan_omp, ok_hf_omp       
    57   LOGICAL,SAVE        :: ok_ade_omp, ok_aie_omp
     57  LOGICAL,SAVE        :: ok_ade_omp, ok_aie_omp, aerosol_couple_omp
    5858  character (len = 8),SAVE  :: aer_type_omp
    5959  REAL,SAVE           :: bl95_b0_omp, bl95_b1_omp
     
    166166  ok_aie_omp = .false.
    167167  call getin('ok_aie', ok_aie_omp)
     168
     169
     170!
     171!Config Key  = aerosol_couple
     172!Config Desc = read aerosol in file or calcul by inca
     173!Config Def  = .false.
     174!Config Help = Used in physiq.F
     175!
     176  aerosol_couple_omp = .false.
     177  CALL getin('aerosol_couple',aerosol_couple_omp)
    168178
    169179!
     
    849859    ok_ade = ok_ade_omp
    850860    ok_aie = ok_aie_omp
     861    aerosol_couple=aerosol_couple_omp
    851862    aer_type = aer_type_omp
    852863    bl95_b0 = bl95_b0_omp
     
    929940  write(numout,*)' ok_ade = ',ok_ade
    930941  write(numout,*)' ok_aie = ',ok_aie
     942  write(numout,*)' aerosol_couple = ', aerosol_couple
    931943  write(numout,*)' aer_type = ',aer_type
    932944  write(numout,*)' bl95_b0 = ',bl95_b0
Note: See TracChangeset for help on using the changeset viewer.