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

    r2870 r3893  
    6666        print*,'Please run mixed H2-CH4 atmospheres below T = 400 K.'     
    6767      endif
    68       stop
     68      call abort_physic("interpolateH2CH4", "temperatures are too high for this CIA dataset", 1)
    6969    else
    7070      !if (is_master) then
     
    8585        print*,'Please run mixed H2-CH4 atmospheres above T = 40 K.'     
    8686      endif
    87       stop
     87      call abort_physic("interpolateH2CH4", "temperatures are too low for this CIA dataset", 1)
    8888    else
    8989      !if (is_master) then
     
    125125          write(*,*) 'Also check that the continuum data continuum_data/H2-CH4_norm_2011.cia is there.'
    126126        endif
    127         call abort
     127        call abort_physic("interpolateH2CH4", "Unable to read file", 1)
    128128     else
    129129
     
    137137                print*,'Please adjust nS value in interpolateH2CH4.F90'
    138138              endif
    139               stop
     139              call abort_physic("interpolateH2CH4", "Resolution given does not match with nS value", 1)
    140140           endif
    141141           temp_arr(iT)=Ttemp
Note: See TracChangeset for help on using the changeset viewer.