Ignore:
Timestamp:
Aug 13, 2025, 7:53:49 PM (7 days ago)
Author:
gmilcareck
Message:

Remove all "call abort" and "stop" statement in LMDZ.GENERIC and replacing them by call abort_physic().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/libf/phystd/radioactive_tracers.F90

    r3866 r3893  
    1 
    21subroutine radioactive_tracers(ngrid,nlayer,nq,ptimestep,pq,zdqradio)
    32
     
    4443            if (half_life(iq)/10 .le. ptimestep) then ! sanity test
    4544                write(*,*)"timestep is more than half-life / 10 of tracer ", noms(iq)
    46                 call abort
     45                call abort_physic("radioactive_tracers","timestep is more than half-life / 10 of tracer",1)
    4746            end if ! dt > 0.1 * half_life
    4847            zdqradio(1:ngrid,1:nlayer,iq) = zdqradio(1:ngrid,1:nlayer,iq) - LOG(2.)/half_life(iq)*pq(1:ngrid,1:nlayer,iq) ! <== decay
Note: See TracChangeset for help on using the changeset viewer.