- Timestamp:
- Sep 26, 2023, 3:57:38 PM (18 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/criterion_pem_stop_mod.F90
r3039 r3050 63 63 present_surf.GT.ini_surf*(1+water_ice_criterion)) then 64 64 STOPPING=.TRUE. 65 print *,"Reason of stopping : The surface of water ice sublimating reach the threshold:"66 print *,"Current surface of water ice sublimating=", present_surf67 print *,"Initial surface of water ice sublimating=", ini_surf68 print *,"Percentage of change accepted=", water_ice_criterion*10069 print *,"present_surf<ini_surf*(1-water_ice_criterion)", (present_surf.LT.ini_surf*(1-water_ice_criterion))65 write(*,*) "Reason of stopping : The surface of water ice sublimating reach the threshold:" 66 write(*,*) "Current surface of water ice sublimating=", present_surf 67 write(*,*) "Initial surface of water ice sublimating=", ini_surf 68 write(*,*) "Percentage of change accepted=", water_ice_criterion*100 69 write(*,*) "present_surf<ini_surf*(1-water_ice_criterion)", (present_surf.LT.ini_surf*(1-water_ice_criterion)) 70 70 endif 71 71 … … 129 129 present_surf.GT.ini_surf*(1+co2_ice_criterion)) then 130 130 STOPPING_ice=.TRUE. 131 print *,"Reason of stopping : The surface of co2 ice sublimating reach the threshold:"132 print *,"Current surface of co2 ice sublimating=", present_surf133 print *,"Initial surface of co2 ice sublimating=", ini_surf134 print *,"Percentage of change accepted=", co2_ice_criterion*100135 print *,"present_surf<ini_surf*(1-co2_ice_criterion)", (present_surf.LT.ini_surf*(1-co2_ice_criterion))131 write(*,*) "Reason of stopping : The surface of co2 ice sublimating reach the threshold:" 132 write(*,*) "Current surface of co2 ice sublimating=", present_surf 133 write(*,*) "Initial surface of co2 ice sublimating=", ini_surf 134 write(*,*) "Percentage of change accepted=", co2_ice_criterion*100 135 write(*,*) "present_surf<ini_surf*(1-co2_ice_criterion)", (present_surf.LT.ini_surf*(1-co2_ice_criterion)) 136 136 endif 137 137 … … 143 143 global_ave_press_new.GT.global_ave_press_GCM*(1+ps_criterion)) then 144 144 STOPPING_ps=.TRUE. 145 print *,"Reason of stopping : The global pressure reach the threshold:"146 print *,"Current global pressure=", global_ave_press_new147 print *,"GCM global pressure=", global_ave_press_GCM148 print *,"Percentage of change accepted=", ps_criterion*100149 print *,"global_ave_press_new<global_ave_press_GCM*(ps_criterion)", (global_ave_press_new.LT.global_ave_press_GCM*(1-ps_criterion))145 write(*,*) "Reason of stopping : The global pressure reach the threshold:" 146 write(*,*) "Current global pressure=", global_ave_press_new 147 write(*,*) "GCM global pressure=", global_ave_press_GCM 148 write(*,*) "Percentage of change accepted=", ps_criterion*100 149 write(*,*) "global_ave_press_new<global_ave_press_GCM*(ps_criterion)", (global_ave_press_new.LT.global_ave_press_GCM*(1-ps_criterion)) 150 150 endif 151 151
Note: See TracChangeset
for help on using the changeset viewer.