source: CPL/oasis3/trunk/src/mod/oasis3/src/mod_coast.F90 @ 1677

Last change on this file since 1677 was 1677, checked in by aclsce, 12 years ago

Imported oasis3 (tag ipslcm5a) from cvs server to svn server (igcmg project).

File size: 1.1 KB
Line 
1MODULE mod_coast
2!
3! -- coast.h   01-11-95   Version 2.0   Author: Laurent Terray
4!    *******
5!@
6!@  Contents : variables and arrays related to the coast correction
7!@  --------
8!@
9!@ Anaism --->>>
10!@
11!@    Rappel:
12!@ -- nmesh : number of ocean gcm-1 squares overlapped by a given gcm-2
13!@            square (1D)
14!@    End of rappel
15!@
16!@ -- ncoast : number of coastal ocean squares on the gcm-2 grid for which
17!@              there are no underlying ocean squares on the gcm-1 grid
18!@
19!@ -- npcoast : coast mismatch data array (2D)
20!@              (n,1) --> 1D index of nth point described above
21!@              (n,2) --> number of neighbours suitable for extrapolating SST
22!@              (n,3-6) --> 1D indices of neighbours of nth point
23!@
24!@ -- nfcoast : flag to perform coast mismatch correction
25!@
26!@ -- lcoast  : initialization flag
27!@
28! -------------------------------------------------------------------
29!
30  USE mod_kinds_oasis
31  INTEGER (kind=ip_intwp_p), DIMENSION(:,:), ALLOCATABLE :: npcoast
32  INTEGER (kind=ip_intwp_p) :: ncoast, nfcoast
33!
34  LOGICAL :: lcoast
35!
36! -------------------------------------------------------------------
37!
38END MODULE mod_coast
Note: See TracBrowser for help on using the repository browser.