Changeset 4895


Ignore:
Timestamp:
Apr 9, 2024, 8:29:30 AM (4 weeks ago)
Author:
evignon
Message:

changement de nom d'un paramètre de proprecip. coef_ventil -> gamma_melt

Location:
LMDZ6/trunk/libf/phylmd
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/lmdz_lscp_ini.F90

    r4885 r4895  
    188188  !$OMP THREADPRIVATE(eps)
    189189
    190   REAL, SAVE, PROTECTED :: coef_ventil=1.                   ! A COMMENTER TODO [-]
    191   !$OMP THREADPRIVATE(coef_ventil)
     190  REAL, SAVE, PROTECTED :: gamma_melt=1.                   ! A COMMENTER TODO [-]
     191  !$OMP THREADPRIVATE(gamma_melt)
    192192
    193193  REAL, SAVE, PROTECTED :: alpha_freez=4.                 ! A COMMENTER TODO [-]
     
    306306    CALL getin_p('gamma_rim',gamma_rim)
    307307    CALL getin_p('gamma_freez',gamma_freez)
     308    CALL getin_p('gamma_melt',gamma_melt)
    308309    CALL getin_p('r_snow',r_snow)
    309310    CALL getin_p('rain_fallspeed',rain_fallspeed)
     
    363364    WRITE(lunout,*) 'lscp_ini, gamma_rim:', gamma_rim
    364365    WRITE(lunout,*) 'lscp_ini, gamma_freez:', gamma_freez
     366    WRITE(lunout,*) 'lscp_ini, gamma_melt:', gamma_melt
    365367    WRITE(lunout,*) 'lscp_ini, r_snow:', r_snow
    366368    WRITE(lunout,*) 'lscp_ini, rain_fallspeed_clr:', rain_fallspeed_clr
  • LMDZ6/trunk/libf/phylmd/lmdz_lscp_poprecip.F90

    r4888 r4895  
    264264                          tau_auto_snow_min, tau_auto_snow_max,                &
    265265                          thresh_precip_frac, eps,                             &
    266                           coef_ventil, alpha_freez, beta_freez, temp_nowater,  &
     266                          gamma_melt, alpha_freez, beta_freez, temp_nowater,   &
    267267                          iflag_cloudth_vert, iflag_rain_incloud_vol,          &
    268268                          cld_lc_lsc_snow, cld_lc_con_snow, gamma_freez,       &
     
    689689  !--snow_fallspeed: snow fall velocity (in clear/cloudy sky) [m/s]
    690690  !--air_thermal_conduct: thermal conductivity of the air [J/m/K/s]
    691   !--coef_ventil: ventilation coefficient [-]
     691  !--gamma_melt: melting tuning parameter [-]
    692692  !--nb_snowflake: number of snowflakes (in clear/cloudy air) [-]
    693693
     
    718718                       / ( 4. / 3. * RPI * r_snow**3. * rho_snow )
    719719      dqsclrmelt = - nb_snowflake_clr * 4. * RPI * air_thermal_conduct &
    720                    * capa_snowflake / RLMLT * coef_ventil &
     720                   * capa_snowflake / RLMLT * gamma_melt &
    721721                   * MAX(0., temp_wetbulb - RTT) * dtime
    722722     
     
    733733                       / ( 4. / 3. * RPI * r_snow**3. * rho_snow )
    734734      dqscldmelt = - nb_snowflake_cld * 4. * RPI * air_thermal_conduct &
    735                    * capa_snowflake / RLMLT * coef_ventil &
     735                   * capa_snowflake / RLMLT * gamma_melt &
    736736                   * MAX(0., temp_wetbulb - RTT) * dtime
    737737
Note: See TracChangeset for help on using the changeset viewer.