Ignore:
Timestamp:
Dec 29, 2022, 10:58:39 AM (2 years ago)
Author:
llange
Message:

PEM
Fixing bug when updating tracer mass mixing ratio (ccn_number and dust_number were previously set to 1)
Tiny edits in evol_h2o_ice and criterion_ice_stop_mod_water
LL

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.COMMON/libf/evolution/evol_h2o_ice_s_mod_slope.F90

    r2849 r2857  
    2626!   OUTPUT
    2727  REAL, INTENT(INOUT) ::  qsurf(ngrid,nslope)                ! physical point field : Previous and actual density of water ice
    28   LOGICAL :: STOPPING
     28  LOGICAL, INTENT(INOUT) :: STOPPING
    2929  REAL, intent(inout) ::  tendencies_h2o_ice_phys(ngrid,nslope) ! physical point field : Evolution of perenial ice over one year
    3030
     
    8080    print *, "Tendencies on ice increasing=", pos_tend
    8181    print *, "This can be due to the absence of water ice in the PCM run!!"
    82       call criterion_ice_stop_water_slope(cell_area,1,qsurf(:,:)*0.,STOPPING,ngrid,cell_area)
     82      call criterion_ice_stop_water_slope(cell_area,1.,qsurf(:,:)*0.,STOPPING,ngrid,cell_area)
    8383      do i=1,ngrid
    8484         do islope=1,nslope
     
    101101    enddo
    102102  enddo
     103 
    103104
    104105  real_coefficient=negative_part/pos_tend
     106  if(pos_tend.eq.0) real_coefficient = 0.
    105107
    106108  do i=1,ngrid
Note: See TracChangeset for help on using the changeset viewer.