Changes between Initial Version and Version 1 of PDAF_abort


Ignore:
Timestamp:
Apr 11, 2026, 10:33:03 AM (4 days ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • PDAF_abort

    v1 v1  
     1= PDAF_abort =
     2
     3This page documents the routine `PDAF_abort` of PDAF, which was introduced with PDAF V3.1.
     4
     5This routine can be used to exit the assimilation program in case of an error. Since PDAF uses MPI parallelization one cannot use 'exit' to stop all processes of the program. `PDAF_abort` performs the correct exiting of the program.
     6
     7The interface is the following:
     8{{{
     9SUBROUTINE PDAF_abort(error)
     10
     11  INTEGER, INTENT(in) :: error   ! Error value
     12}}}
     13
     14Note:
     15* The error value can be freely chosen. It is the value with which the program exits.