Changeset 1699 for trunk/LMDZ.GENERIC
- Timestamp:
- Apr 21, 2017, 1:49:16 PM (8 years ago)
- Location:
- trunk/LMDZ.GENERIC
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/README
r1694 r1699 1335 1335 == 14/04/2017 == JL+EM 1336 1336 Fixed a bug in start2archive: missing initialization of tracer names. 1337 1338 == 21/04/2017 == JL 1339 Add some arch files for a cluster in Bordeaux 1340 added some is_master before printouts in callcorrk and physiq_mod 1341 corrected a bug in bilinear big 1342 -
trunk/LMDZ.GENERIC/libf/phystd/bilinearbig.F90
r1526 r1699 56 56 ! ... and for y within the temperature range 57 57 if ((y.lt.y_arr(1)).or.(y.gt.y_arr(nY))) then 58 write(*,*) 'Warning from bilinearbig routine:' 59 write(*,*) 'Outside continuum temperature range!' 58 print*,y_arr(1),y_arr(nY) 59 !write(*,*) 'Warning from bilinearbig routine:' 60 !write(*,*) 'Outside continuum temperature range!' 60 61 if(y.lt.y_arr(1))then 61 62 y=y_arr(1)+0.01 63 b=1 64 y1=y_arr(b) 65 y2=y_arr(b+1) 62 66 endif 63 67 if(y.gt.y_arr(nY))then 64 68 y=y_arr(nY)-0.01 69 b=nY-1 70 y1=y_arr(b) 71 y2=y_arr(b+1) 65 72 endif 66 73 else -
trunk/LMDZ.GENERIC/libf/phystd/callcorrk.F90
r1677 r1699 9 9 clearsky,firstcall,lastcall) 10 10 11 use mod_phys_lmdz_para, only : is_master 11 12 use radinc_h 12 13 use radcommon_h … … 281 282 if ((iaer.eq.iaero_co2).and.tracer.and.(igcm_co2_ice.gt.0)) then ! Treat condensed co2 particles. 282 283 call co2_reffrad(ngrid,nlayer,nq,pq,reffrad(1,1,iaero_co2)) 283 print*,'Max. CO2 ice particle size = ',maxval(reffrad(1:ngrid,1:nlayer,iaer))/1.e-6,' um' 284 print*,'Min. CO2 ice particle size = ',minval(reffrad(1:ngrid,1:nlayer,iaer))/1.e-6,' um' 285 end if 284 if (is_master) then 285 print*,'Max. CO2 ice particle size = ',maxval(reffrad(1:ngrid,1:nlayer,iaer))/1.e-6,' um' 286 print*,'Min. CO2 ice particle size = ',minval(reffrad(1:ngrid,1:nlayer,iaer))/1.e-6,' um' 287 end if 288 end if 286 289 287 290 if ((iaer.eq.iaero_h2o).and.water) then ! Treat condensed water particles. To be generalized for other aerosols ... 288 291 call h2o_reffrad(ngrid,nlayer,pq(1,1,igcm_h2o_ice),pt, & 289 292 reffrad(1,1,iaero_h2o),nueffrad(1,1,iaero_h2o)) 290 print*,'Max. H2O cloud particle size = ',maxval(reffrad(1:ngrid,1:nlayer,iaer))/1.e-6,' um' 291 print*,'Min. H2O cloud particle size = ',minval(reffrad(1:ngrid,1:nlayer,iaer))/1.e-6,' um' 293 if (is_master) then 294 print*,'Max. H2O cloud particle size = ',maxval(reffrad(1:ngrid,1:nlayer,iaer))/1.e-6,' um' 295 print*,'Min. H2O cloud particle size = ',minval(reffrad(1:ngrid,1:nlayer,iaer))/1.e-6,' um' 296 end if 292 297 endif 293 298 294 299 if(iaer.eq.iaero_dust)then 295 300 call dust_reffrad(ngrid,nlayer,reffrad(1,1,iaero_dust)) 296 print*,'Dust particle size = ',reffrad(1,1,iaer)/1.e-6,' um' 301 if (is_master) then 302 print*,'Dust particle size = ',reffrad(1,1,iaer)/1.e-6,' um' 303 end if 297 304 endif 298 305 299 306 if(iaer.eq.iaero_h2so4)then 300 307 call h2so4_reffrad(ngrid,nlayer,reffrad(1,1,iaero_h2so4)) 301 print*,'H2SO4 particle size =',reffrad(1,1,iaer)/1.e-6,' um' 308 if (is_master) then 309 print*,'H2SO4 particle size =',reffrad(1,1,iaer)/1.e-6,' um' 310 end if 302 311 endif 303 312 -
trunk/LMDZ.GENERIC/libf/phystd/physiq_mod.F90
r1682 r1699 1689 1689 if(callsoil)then 1690 1690 TsS = SUM(cell_area(:)*tsoil(:,nsoilmx))/totarea ! mean temperature at bottom soil layer 1691 print*,' ave[Tsurf] min[Tsurf] max[Tsurf] ave[Tdeep]' 1692 print*,Ts1,Ts2,Ts3,TsS 1691 if (is_master) then 1692 print*,' ave[Tsurf] min[Tsurf] max[Tsurf] ave[Tdeep]' 1693 print*,Ts1,Ts2,Ts3,TsS 1694 end if 1693 1695 else 1694 1695 print*,' ave[Tsurf] min[Tsurf]max[Tsurf]'1696 if (is_master) then 1697 print*,' ave[Tsurf] min[Tsurf] max[Tsurf]' 1696 1698 print*,Ts1,Ts2,Ts3 1697 1699 endif … … 1841 1843 1842 1844 1843 print*,'--> Ls =',zls*180./pi1845 if (is_master) print*,'--> Ls =',zls*180./pi 1844 1846 1845 1847
Note: See TracChangeset
for help on using the changeset viewer.