Changeset 4470 for LMDZ6/trunk/libf/dyn3d
- Timestamp:
- Mar 10, 2023, 5:55:53 PM (2 years ago)
- Location:
- LMDZ6/trunk/libf/dyn3d
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/dyn3d/bilan_dyn.F
r2601 r4470 185 185 WRITE(lunout,*)'dt_app=',dt_app 186 186 WRITE(lunout,*)'dt_cum=',dt_cum 187 stop187 call abort_gcm('bilan_dyn','stopped',1) 188 188 endif 189 189 -
LMDZ6/trunk/libf/dyn3d/conf_gcm.F90
r4358 r4470 415 415 write(lunout,*)'conf_gcm: La valeur de clat passee par run.def', & 416 416 ' est differente de celle lue sur le fichier start ' 417 STOP417 CALL abort_gcm("conf_gcm","stopped",1) 418 418 ENDIF 419 419 … … 429 429 write(lunout,*)'conf_gcm: La valeur de grossismx passee par ', & 430 430 'run.def est differente de celle lue sur le fichier start ' 431 STOP431 CALL abort_gcm("conf_gcm","stopped",1) 432 432 ENDIF 433 433 … … 443 443 write(lunout,*)'conf_gcm: La valeur de grossismy passee par ', & 444 444 'run.def est differente de celle lue sur le fichier start ' 445 STOP445 CALL abort_gcm("conf_gcm","stopped",1) 446 446 ENDIF 447 447 … … 449 449 write(lunout,*) & 450 450 'conf_gcm: *** ATTENTION !! grossismx < 1 . *** ' 451 STOP451 CALL abort_gcm("conf_gcm","stopped",1) 452 452 ELSE 453 453 alphax = 1. - 1./ grossismx … … 457 457 write(lunout,*) & 458 458 'conf_gcm: *** ATTENTION !! grossismy < 1 . *** ' 459 STOP459 CALL abort_gcm("conf_gcm","stopped",1) 460 460 ELSE 461 461 alphay = 1. - 1./ grossismy … … 479 479 write(lunout,*)' *** fxyhypb lu sur le fichier start est ', & 480 480 'F alors qu il est T sur run.def ***' 481 STOP481 CALL abort_gcm("conf_gcm","stopped",1) 482 482 ENDIF 483 483 ELSE … … 486 486 write(lunout,*)' *** fxyhypb lu sur le fichier start est ', & 487 487 'T alors qu il est F sur run.def **** ' 488 STOP488 CALL abort_gcm("conf_gcm","stopped",1) 489 489 ENDIF 490 490 ENDIF … … 502 502 write(lunout,*)'conf_gcm: La valeur de dzoomx passee par ', & 503 503 'run.def est differente de celle lue sur le fichier start ' 504 STOP504 CALL abort_gcm("conf_gcm","stopped",1) 505 505 ENDIF 506 506 ENDIF … … 518 518 write(lunout,*)'conf_gcm: La valeur de dzoomy passee par ', & 519 519 'run.def est differente de celle lue sur le fichier start ' 520 STOP520 CALL abort_gcm("conf_gcm","stopped",1) 521 521 ENDIF 522 522 ENDIF … … 533 533 write(lunout,*)'conf_gcm: La valeur de taux passee par ', & 534 534 'run.def est differente de celle lue sur le fichier start ' 535 STOP535 CALL abort_gcm("conf_gcm","stopped",1) 536 536 ENDIF 537 537 ENDIF … … 548 548 write(lunout,*)'conf_gcm: La valeur de tauy passee par ', & 549 549 'run.def est differente de celle lue sur le fichier start ' 550 STOP550 CALL abort_gcm("conf_gcm","stopped",1) 551 551 ENDIF 552 552 ENDIF … … 569 569 write(lunout,*)' *** ysinus lu sur le fichier start est F', & 570 570 ' alors qu il est T sur run.def ***' 571 STOP571 CALL abort_gcm("conf_gcm","stopped",1) 572 572 ENDIF 573 573 ELSE … … 576 576 write(lunout,*)' *** ysinus lu sur le fichier start est T', & 577 577 ' alors qu il est F sur run.def **** ' 578 STOP578 CALL abort_gcm("conf_gcm","stopped",1) 579 579 ENDIF 580 580 ENDIF … … 701 701 write(lunout,*) & 702 702 'conf_gcm: *** ATTENTION !! grossismx < 1 . *** ' 703 STOP703 CALL abort_gcm("conf_gcm","stopped",1) 704 704 ELSE 705 705 alphax = 1. - 1./ grossismx … … 708 708 IF( grossismy.LT.1. ) THEN 709 709 write(lunout,*) 'conf_gcm: ***ATTENTION !! grossismy < 1 . *** ' 710 STOP710 CALL abort_gcm("conf_gcm","stopped",1) 711 711 ELSE 712 712 alphay = 1. - 1./ grossismy -
LMDZ6/trunk/libf/dyn3d/groupe.F
r2600 r4470 51 51 if (firstcall) then 52 52 if (groupe_ok) then 53 if(mod(iim,2**ngroup).ne.0) stop'probleme du nombre de point' 53 if(mod(iim,2**ngroup).ne.0) 54 & CALL abort_gcm('groupe','probleme du nombre de point',1) 54 55 endif 55 56 firstcall=.false. -
LMDZ6/trunk/libf/dyn3d/guide_mod.F90
r4256 r4470 359 359 INCLUDE "dimensions.h" 360 360 INCLUDE "paramet.h" 361 INCLUDE "iniprint.h" 362 361 363 362 364 ! Variables entree … … 382 384 INTEGER :: l 383 385 CHARACTER(LEN=20) :: modname="guide_main" 386 CHARACTER (len = 80) :: abort_message 387 384 388 385 389 !----------------------------------------------------------------------- … … 447 451 IF (reste.EQ.0.) THEN 448 452 IF (itau_test.EQ.itau) THEN 449 write( *,*)trim(modname)//' second pass in advreel at itau=',&453 write(lunout,*)trim(modname)//' second pass in advreel at itau=',& 450 454 itau 451 stop 455 abort_message='stopped' 456 CALL abort_gcm(modname,abort_message,1) 452 457 ELSE 453 458 IF (guide_v) vnat1=vnat2 … … 942 947 integer i,j,ilon,ilat 943 948 character(len=20),parameter :: modname="tau2alpha" 949 CHARACTER (len = 80) :: abort_message 944 950 945 951 … … 1038 1044 if (gamma.lt.1.e-5) then 1039 1045 write(*,*)trim(modname)//' gamma =',gamma,'<1e-5' 1040 stop 1046 abort_message='stopped' 1047 CALL abort_gcm(modname,abort_message,1) 1041 1048 endif 1042 1049 gamma=log(0.5)/log(gamma) -
LMDZ6/trunk/libf/dyn3d/vlsplt.F
r4325 r4470 184 184 DO ij=iip2,ip1jm-1 185 185 dxqu(ij)=q(ij+1,l,iq)-q(ij,l,iq) 186 c IF(u_m(ij,l).lt.0.) stop'limx n admet pas les U<0'187 c sigu(ij)=u_m(ij,l)/masse(ij,l,iq)188 186 ENDDO 189 187 DO ij=iip1+iip1,ip1jm,iip1 … … 310 308 ENDDO 311 309 #endif 312 c stop313 310 314 311 c go to 9999 -
LMDZ6/trunk/libf/dyn3d/vlspltqs.F
r4325 r4470 248 248 DO ij=iip2,ip1jm-1 249 249 dxqu(ij)=q(ij+1,l,iq)-q(ij,l,iq) 250 c IF(u_m(ij,l).lt.0.) stop'limx n admet pas les U<0'251 c sigu(ij)=u_m(ij,l)/masse(ij,l,iq)252 250 ENDDO 253 251 DO ij=iip1+iip1,ip1jm,iip1 -
LMDZ6/trunk/libf/dyn3d/wrgrads.F
r1907 r4470 80 80 print*,'nvar ',nvar(if) 81 81 print*,'vars ',(var(iv,if),iv=1,nvar(if)) 82 83 stop 82 CALL abort_gcm("wrgrads","problem",1) 84 83 endif 85 84 endif
Note: See TracChangeset
for help on using the changeset viewer.