Changeset 3893 for trunk/LMDZ.GENERIC/libf/phystd/initracer.F90
- Timestamp:
- Aug 13, 2025, 7:53:49 PM (5 months ago)
- File:
-
- 1 edited
-
trunk/LMDZ.GENERIC/libf/phystd/initracer.F90 (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/initracer.F90
r3865 r3893 54 54 file = 'traceur.def', iostat=ierr) 55 55 if (ierr /=0) then 56 ! call abort_physic('initracer',& 57 ! 'Problem in opening traceur.def',1) 58 print*,'Problem in opening traceur.def' 59 stop 56 call abort_physic("initracer", "Unable to find traceur.def file",1) 60 57 end if 61 58 !! - Modif. by JVO and YJ for modern planetary traceur.def --------------- … … 72 69 ! Temporary not implemented solution 73 70 if (nqtot/=nq) then 74 ! call abort_physic('initracer','Different number of '// & 75 ! 'tracers in dynamics and physics not managed yet',1) 76 print*,'!= nbr oftracers in dynamics and physics not managed yet' 77 stop 71 call abort_physic('initracer','Different number of '// & 72 'tracers in dynamics and physics not managed yet',1) 78 73 endif 79 74 EXIT 80 75 ENDIF 81 76 ELSE ! If pb, or if reached EOF without having found nqtot 82 ! call abort_physic('initracer','Unable to read numbers '// & 83 ! 'of tracers in traceur.def',1) 84 print*,"unable to read numbers of tracer in tracer.def" 85 stop 77 call abort_physic('initracer','Unable to read numbers '// & 78 'of tracers in traceur.def',1) 86 79 ENDIF 87 80 ENDDO … … 446 439 write(*,*)' ',iq,' ',trim(noms(iq)) 447 440 enddo 448 ! stop449 441 else 450 442 write(*,*) "initracer: found all expected tracers, namely:" … … 558 550 ! verify that we indeed have h2o_vap and h2o_ice tracers 559 551 if (igcm_h2o_vap.eq.0) then 560 write(*,*) "initracer: error !!" 561 write(*,*) " cannot use water option without ",& 562 "an h2o_vap tracer !" 563 stop 552 call abort_physic("initracer", "cannot use water option without an h2o_vap tracer", 1) 564 553 endif 565 554 if (igcm_h2o_ice.eq.0) then 566 write(*,*) "initracer: error !!" 567 write(*,*) " cannot use water option without ",& 568 "an h2o_ice tracer !" 569 stop 555 call abort_physic("initracer", "cannot use water option without an h2o_ice tracer", 1) 570 556 endif 571 557 endif
Note: See TracChangeset
for help on using the changeset viewer.
