- Timestamp:
- Apr 14, 2023, 11:36:06 AM (2 years ago)
- Location:
- trunk/LMDZ.COMMON/libf/evolution
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/evolution/adsorption_mod.F90
r2895 r2939 230 230 m_h2o_completesoil(:,:,:) = dm_h2o_regolith_slope(:,:,:) 231 231 232 233 232 RETURN 234 233 #endif -
trunk/LMDZ.COMMON/libf/evolution/evol_h2o_ice_s_mod_slope.F90
r2937 r2939 80 80 print *, "Tendencies on ice increasing=", pos_tend 81 81 print *, "This can be due to the absence of water ice in the PCM run!!" 82 print *,cell_area,qsurf(:,:),ngrid,STOPPING 83 call criterion_waterice_stop(cell_area,1.,qsurf(:,:)*0.,STOPPING,ngrid,qsurf(:,:)*0.) 84 do i=1,ngrid 85 do islope=1,nslope 86 new_tendencies(i,islope)=0 87 enddo 88 enddo 82 call criterion_waterice_stop(cell_area,1.,qsurf(:,:)*0.,STOPPING,ngrid,qsurf(:,:)*0.) 83 do i=1,ngrid 84 do islope=1,nslope 85 new_tendencies(i,islope)=0 86 enddo 87 enddo 89 88 endif 90 89 -
trunk/LMDZ.COMMON/libf/evolution/pem.F90
r2937 r2939 749 749 ! II.a.1. Compute updated global pressure 750 750 print *, "Recomputing the new pressure..." 751 751 752 do i=1,ngrid 752 753 do islope=1,nslope … … 754 755 enddo 755 756 enddo 756 757 print *, 'Global average pressure old time step',global_ave_press_old 757 758 758 759 call WRITEDIAGFI(ngrid,'ps_ave','Global average pressure','Pa',0,global_ave_press_new) -
trunk/LMDZ.COMMON/libf/evolution/pemetat0.F90
r2937 r2939 90 90 91 91 write(*,*)'Is start PEM?',startpem_file 92 startpem_file = .true.93 92 94 93 !1. Run … … 275 274 276 275 !4. CO2 & H2O Adsorption 276 277 277 if(adsorption_pem) then 278 278 DO islope=1,nslope … … 281 281 if((.not.found)) then 282 282 m_co2_regolith_phys(:,:,:) = 0. 283 exit 283 284 endif 284 exit285 285 286 ENDDO 286 287 287 288 DO islope=1,nslope 288 289 write(num,fmt='(i2.2)') islope 289 call get_field("mh2o_reg_ads_slope"//num,m_ co2_regolith_phys(:,:,islope),found2)290 call get_field("mh2o_reg_ads_slope"//num,m_h2o_regolith_phys(:,:,islope),found2) 290 291 if((.not.found2)) then 291 292 m_h2o_regolith_phys(:,:,:) = 0. 293 exit 292 294 endif 293 exit295 294 296 ENDDO 295 297 -
trunk/LMDZ.COMMON/libf/evolution/update_soil.F90
r2937 r2939 44 44 regolith_inertia(:,islope) = inertiedat_PEM(:,1) 45 45 do ig = 1,ngrid 46 write(*,*) 'ig,islope',ig,islope,tendencies_waterice(ig,islope),waterice(ig,islope)47 46 if((tendencies_waterice(ig,islope).lt.-1e-5).and.(waterice(ig,islope).eq.0)) then 48 47 regolith_inertia(ig,islope) = inertie_averaged
Note: See TracChangeset
for help on using the changeset viewer.