Changeset 1403 for LMDZ4/trunk/libf/phylmd/thermcell_flux.F90
- Timestamp:
- Jul 1, 2010, 11:02:53 AM (15 years ago)
- Location:
- LMDZ4/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/trunk
- Property svn:mergeinfo changed
-
LMDZ4/trunk/libf/phylmd/thermcell_flux.F90
r1146 r1403 1 1 ! 2 ! $ Header$2 ! $Id$ 3 3 ! 4 4 … … 51 51 !$OMP THREADPRIVATE(fomass_max,alphamax) 52 52 53 character (len=20) :: modname='thermcell_flux' 54 character (len=80) :: abort_message 55 53 56 fomass_max=0.5 54 57 alphamax=0.7 … … 92 95 print*,'alim_star(ig,l)',alim_star(ig,l) 93 96 print*,'detr_star(ig,l)',detr_star(ig,l) 94 ! stop95 97 endif 96 98 else … … 100 102 print*,'alim_star(ig,l)',alim_star(ig,l) 101 103 print*,'detr_star(ig,l)',detr_star(ig,l) 102 stop 104 abort_message = '' 105 CALL abort_gcm (modname,abort_message,1) 103 106 endif 104 107 endif … … 264 267 if (entr(ig,l)<0.) then 265 268 print*,'N1 ig,l,entr',ig,l,entr(ig,l) 266 stop 'entr negatif' 269 abort_message = 'entr negatif' 270 CALL abort_gcm (modname,abort_message,1) 267 271 endif 268 272 if (detr(ig,l).gt.fm(ig,l)) then … … 292 296 print*,'entr(ig,l)',entr(ig,l) 293 297 print*,'fm(ig,l)',fm(ig,l) 294 stop 'probleme dans thermcell flux' 298 abort_message = 'probleme dans thermcell flux' 299 CALL abort_gcm (modname,abort_message,1) 295 300 endif 296 301 enddo … … 319 324 print*,'detr(ig,l)',detr(ig,l) 320 325 print*,'fm(ig,l)',fm(ig,l) 321 stop 'probleme dans thermcell flux' 326 abort_message = 'probleme dans thermcell flux' 327 CALL abort_gcm (modname,abort_message,1) 322 328 endif 323 329 enddo … … 420 426 print*,'fm(ig,l+1)',fm(ig,l+1) 421 427 print*,'fm(ig,l)',fm(ig,l) 422 stop 'probleme dans thermcell_flux' 428 abort_message = 'probleme dans thermcell_flux' 429 CALL abort_gcm (modname,abort_message,1) 423 430 endif 424 431 entr(ig,l+1)=entr(ig,l+1)-ddd … … 478 485 character*3 descr 479 486 487 character (len=20) :: modname='thermcell_flux' 488 character (len=80) :: abort_message 489 480 490 lm=lmax(igout)+5 481 491 if(lm.gt.klev) lm=klev … … 500 510 print*,'detr(igout,l)',detr(igout,l) 501 511 print*,'fm(igout,l)',fm(igout,l) 502 stop 512 abort_message = '' 513 CALL abort_gcm (modname,abort_message,1) 503 514 endif 504 515 enddo
Note: See TracChangeset
for help on using the changeset viewer.