Changeset 184 in lmdz_wrf


Ignore:
Timestamp:
Oct 15, 2014, 3:54:12 PM (10 years ago)
Author:
lfita
Message:

Adding 'qc' on mp==0 in Registry/Registry?.EM.LMDZ. With this now we have also

'QCLOUD' even with mp=0. This is the way to keep liquid water for the next
time-step and have large scale precipitation!

Adding some checks around moisture values and tendencies...

Location:
trunk/WRFV3
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/WRFV3/Registry/Registry.EM.LMDZ

    r1 r184  
    8686state    real   v_gc           igj      dyn_em      1        YZ    i1  "VV"     "y-wind component"    "m s-1"
    8787state    real   t_gc           igj      dyn_em      1        Z     i1  "TT"     "temperature"         "K"
    88 state    real   rh_gc          igj      dyn_em      1        Z     i1 "RH"    "relative humidity"   "%"
     88state    real   rh_gc          igj      dyn_em      1        Z     i01 "RH"    "relative humidity"   "%"
    8989state    real   ght_gc         igj      dyn_em      1        Z     i1  "GHT"   "geopotential height" "m"
    9090state    real   p_gc           igj      dyn_em      1        Z     i1  "PRES"   "pressure"            "Pa"
     
    19611961
    19621962#package   passivec1     chem_opt==0                  -             
    1963 package   passiveqv     mp_physics==0                -             moist:qv
     1963# L. Fita, LMD October 2014. We require also qc in order to properly have liquid
     1964#   water which is required in LMDZ phsics
     1965#package   passiveqv     mp_physics==0                -             moist:qv
     1966package   passiveqv     mp_physics==0                -             moist:qv,qc
    19641967package   kesslerscheme mp_physics==1                -             moist:qv,qc,qr
    19651968package   linscheme     mp_physics==2                -             moist:qv,qc,qr,qi,qs,qg
  • trunk/WRFV3/Registry/Registry.backup

    r1 r184  
    19621962
    19631963#package   passivec1     chem_opt==0                  -             
    1964 package   passiveqv     mp_physics==0                -             moist:qv
     1964# L. Fita, LMD October 2014. We require also qc in order to properly have liquid
     1965#   water which is required in LMDZ phsics
     1966#package   passiveqv     mp_physics==0                -             moist:qv
     1967package   passiveqv     mp_physics==0                -             moist:qv,qc
    19651968package   kesslerscheme mp_physics==1                -             moist:qv,qc,qr
    19661969package   linscheme     mp_physics==2                -             moist:qv,qc,qr,qi,qs,qg
  • trunk/WRFV3/dyn_em/solve_em.F

    r143 r184  
    24942494!</DESCRIPTION>
    24952495
     2496       PRINT *,'  Lluis PARAM_FIRST_SCALAR: ', PARAM_FIRST_SCALAR,    &
     2497         ' p_qv: ',p_qv, ' p_qc: ',p_qc,' U(moist): ', UBOUND(moist)
     2498       PRINT *,'   moist: ',moist(config_flags%i_check_point, 2,   &
     2499               config_flags%j_check_point,:)
    24962500
    24972501       moist_scalar_advance: IF (num_3d_m >= PARAM_FIRST_SCALAR )  THEN
     
    25102514               CALL wrf_debug ( 200 , ' call rk_scalar_tend' )
    25112515               tenddec = .false.
     2516           PRINT *,'  Lluis before rk_update_scalar moist im=',im,         &
     2517             ' moist_old moist_tend moist________'
     2518           DO iz = kms, kme
     2519             PRINT *,moist_old(config_flags%i_check_point, iz,             &
     2520               config_flags%j_check_point,im),                             &
     2521               moist_tend(config_flags%i_check_point, iz,                  &
     2522               config_flags%j_check_point,im),                             &
     2523               moist(config_flags%i_check_point, iz,                       &
     2524               config_flags%j_check_point,im)
     2525           END DO
    25122526
    25132527BENCH_START(rk_scalar_tend_tim)
     
    26012615                               kts=k_start    , kte=k_end                              )
    26022616BENCH_END(update_scal_tim)
     2617           PRINT *,'  Lluis after rk_update_scalar moist im=',im,         &
     2618             ' moist_old moist_tend moist________'
     2619           DO iz = kms, kme
     2620             PRINT *,moist_old(config_flags%i_check_point, iz,             &
     2621               config_flags%j_check_point,im),                             &
     2622               moist_tend(config_flags%i_check_point, iz,                  &
     2623               config_flags%j_check_point,im),                             &
     2624               moist(config_flags%i_check_point, iz,                       &
     2625               config_flags%j_check_point,im)
     2626           END DO
    26032627
    26042628BENCH_START(flow_depbdy_tim)
  • trunk/WRFV3/phys/module_lmdz_phys.F

    r183 r184  
    377377      ' wrf_xtime: ',wrf_xtime,' wrf_rst: ', wrf_isrestart,' wrf_lwbdy: ',           &
    378378      wrf_islowbdyin
     379    PRINT *,'  Number of water species from WRF: ',wnum3dm
    379380
    380381    phykeys=0.
Note: See TracChangeset for help on using the changeset viewer.