Ignore:
Timestamp:
Aug 13, 2025, 7:53:49 PM (3 months 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/interpolateH2He.F90

    r3310 r3893  
    7070              print*,'Please run mixed H2-He atmospheres below T = 9900.0 K.'     
    7171            endif !is_master
    72             stop
     72            call abort_physic("interpolateH2He", "temperatures are too high for this CIA dataset", 1)
    7373          else
    7474            !if (is_master) then
     
    9191              print*,'Please run mixed H2-He atmospheres below T = 400 K.'     
    9292            endif ! is_master
    93             stop
     93            call abort_physic("interpolateH2He", "temperatures are too high for this CIA dataset", 1)
    9494          else
    9595            !if (is_master) then
     
    110110              print*,'Please run mixed H2-He atmospheres above T = 40 K.' 
    111111            endif ! is_master   
    112             stop
     112            call abort_physic("interpolateH2He", "temperatures are too low for this CIA dataset", 1)
    113113          else
    114114            !if (is_master) then
     
    161161             write(*,*) 'Also check that the continuum data is there.'
    162162           endif
    163            call abort
     163           call abort_physic("interpolateH2He", "Unable to read file", 1)
    164164         else
    165165
     
    173173                    print*,'Please adjust nS value in interpolateH2He.F90'
    174174                  endif
    175                   stop
     175                  call abort_physic("interpolateH2He", "Resolution given does not match with nS value", 1)
    176176               endif
    177177               temp_arr(iT)=Ttemp
Note: See TracChangeset for help on using the changeset viewer.