Changeset 1719 for trunk/LMDZ.VENUS
- Timestamp:
- Jul 4, 2017, 12:43:34 PM (7 years ago)
- Location:
- trunk/LMDZ.VENUS/libf/phyvenus
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.VENUS/libf/phyvenus/iophy.F90
r1545 r1719 347 347 real,allocatable,dimension(:) :: fieldok 348 348 349 IF (size(field)/=klon) CALL abort_ gcm('iophy::histwrite2d','Field first dimension not equal to klon',1)349 IF (size(field)/=klon) CALL abort_physic('iophy::histwrite2d','Field first dimension not equal to klon',1) 350 350 351 351 CALL Gather_omp(field,buffer_omp) … … 401 401 real,allocatable, dimension(:,:) :: fieldok 402 402 403 IF (size(field,1)/=klon) CALL abort_ gcm('iophy::histwrite3d','Field first dimension not equal to klon',1)403 IF (size(field,1)/=klon) CALL abort_physic('iophy::histwrite3d','Field first dimension not equal to klon',1) 404 404 nlev=size(field,2) 405 405 -
trunk/LMDZ.VENUS/libf/phyvenus/physiq_mod.F
r1718 r1719 234 234 EXTERNAL suphec ! initialiser certaines constantes 235 235 EXTERNAL transp ! transport total de l'eau et de l'energie 236 EXTERNAL abort_gcm237 236 EXTERNAL printflag 238 237 EXTERNAL zenang … … 477 476 . pdtphys 478 477 c abort_message='Pas physique n est pas correct ' 479 c call abort_ gcm(modname,abort_message,1)478 c call abort_physic(modname,abort_message,1) 480 479 c---------------- 481 480 c pour initialiser convenablement le time_counter, il faut tenir compte … … 579 578 . klon 580 579 abort_message='nlon et klon ne sont pas coherents' 581 call abort_ gcm(modname,abort_message,1)580 call abort_physic(modname,abort_message,1) 582 581 ENDIF 583 582 IF (nlev .NE. klev) THEN … … 585 584 . klev 586 585 abort_message='nlev et klev ne sont pas coherents' 587 call abort_ gcm(modname,abort_message,1)586 call abort_physic(modname,abort_message,1) 588 587 ENDIF 589 588 c … … 593 592 WRITE(lunout,*)"Au minimum 4 appels par jour si cycle diurne" 594 593 abort_message='Nbre d appels au rayonnement insuffisant' 595 call abort_ gcm(modname,abort_message,1)594 call abort_physic(modname,abort_message,1) 596 595 ENDIF 597 596 c
Note: See TracChangeset
for help on using the changeset viewer.