New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
custom.F90 in branches/UKMO/dev_r5107_restart_func_and_date/NEMOGCM/TOOLS/DMP_TOOLS/src – NEMO

source: branches/UKMO/dev_r5107_restart_func_and_date/NEMOGCM/TOOLS/DMP_TOOLS/src/custom.F90 @ 5500

Last change on this file since 5500 was 5500, checked in by dancopsey, 9 years ago

Removed SVN keywords.

File size: 506 bytes
Line 
1MODULE custom
2
3   USE utils
4
5   IMPLICIT NONE
6   PUBLIC
7
8   CONTAINS
9
10   SUBROUTINE custom_resto( presto )
11      !!---------------------------------
12      !!     **ROUTINE: custom_resto
13      !!
14      !!  ** Purpose: Module to be edited by users to create custom restoration
15      !!              coefficient files (e.g. regional damping).
16      !!
17      !!-------------------------------------
18      REAL(wp), DIMENSION(jpi,jpk), INTENT(inout) :: presto
19
20   END SUBROUTINE custom_resto
21
22END MODULE custom
Note: See TracBrowser for help on using the repository browser.