Changes between Version 15 and Version 16 of AuxiliaryRoutines


Ignore:
Timestamp:
May 27, 2025, 5:38:03 PM (5 days ago)
Author:
lnerger
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AuxiliaryRoutines

    v15 v16  
    77== Interface specifications ==
    88
    9 === PDAF_interfaces_module.F90 ===
    10 
    11 This file contains the module `PDAF_interfaces_module`. It provides interface definitions for the routines of PDAF. If you like to use explicit Fortran interfaces, or if you have to use then in case of the smoother, you have to include the following line in the header you the calling routine:
    12 
    13 {{{
    14   use PDAF_interfaces_module
    15 }}}
    16 
     9=== Module PDAF ===
     10
     11Starting with PDAF V3.0 the module `PDAF` is provided. It has to be included with
     12{{{
     13  USE PDAF
     14}}}
     15in all routines that call PDAF routines (i.e `PDAF_*`, `PDAFomi_*`, `PDAFlocal*`).
     16
     17The module `PDAF` replaces the former module `PDAF_interfaces_module` of PDAF2. In PDAF releases V2.3.1 and earlier, this module provides interface definitions for the routines of PDAF. Its use was optional. It can be included with `use PDAF_interfaces_module`.
    1718
    1819