Ignore:
Timestamp:
Jan 31, 2023, 9:52:30 PM (22 months ago)
Author:
romain.vande
Message:

Mars PCM:
Move a endif misplaced
RV

File:
1 edited

Legend:

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

    r2835 r2885  
    22! $Id $
    33!
    4 SUBROUTINE criterion_ice_stop_slope(cell_area,ini_surf,qsurf,STOPPING,ngrid,initial_h2o_ice,global_ave_press_GCM,global_ave_press_new,nslope)
     4SUBROUTINE criterion_ice_stop_slope(cell_area,ini_surf,qsurf,STOPPING,STOPPING_ps,ngrid,initial_h2o_ice,global_ave_press_GCM,global_ave_press_new,nslope)
    55
    66  USE temps_mod_evol, ONLY: alpha_criterion
     
    2828
    2929!   OUTPUT
    30   LOGICAL, intent(out) :: STOPPING              ! Logical : is the criterion reached?
     30  LOGICAL, intent(out) :: STOPPING,STOPPING_ps              ! Logical : is the criterion reached?
    3131
    3232!   local:
     
    3939!   initialisation to false
    4040    STOPPING=.FALSE.
     41    STOPPING_ps=.FALSE.
    4142
    4243!   computation of the actual surface
     
    6768  if(global_ave_press_new.LT.global_ave_press_GCM*(0.9) .OR. &
    6869     global_ave_press_new.GT.global_ave_press_GCM*(1.1)) then
    69     STOPPING=.TRUE.
     70    STOPPING_ps=.TRUE.
    7071    print *, "Reason of stopping : The global pressure reach the threshold:"
    7172    print *, "Current global pressure=", global_ave_press_new
Note: See TracChangeset for help on using the changeset viewer.