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.
h3cwin.F in trunk/NEMO/TOP_SRC/SMS – NEMO

source: trunk/NEMO/TOP_SRC/SMS/h3cwin.F @ 247

Last change on this file since 247 was 247, checked in by opalod, 19 years ago

CL : Add CVS Header and CeCILL licence information

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1
2CCC $Header$ 
3CCC  TOP 1.0 , LOCEAN-IPSL (2005) 
4C This software is governed by CeCILL licence see modipsl/doc/NEMO_CeCILL.txt 
5C ---------------------------------------------------------------------------
6C $Id$
7      SUBROUTINE h3cwin
8#if defined key_passivetrc
9c -------------------------------------------------------------------
10c
11c sous programme de calcul du terme xKw du coefficient d'echange de gaz
12c si c est le premier passage : lecture du fichier
13c
14c si pas de temps kt
15c
16c  interpolation des champs mensuels
17C
18C  xkw=Xconv*a*(u^2+v) en m/s
19c  references: guidelines ocmip
20c
21c -------------------------------------------------------------------
22c
23CDIR$ NOLIST
24      USE oce_trc
25      USE sms
26      IMPLICIT NONE
27CDIR$ LIST
28#    if defined key_trc_hamocc3
29      INTEGER i, j, l, mo,nvxk
30     
31      nvxk   = 96
32      WRITE(numout,*) 'coefficients echange de gaz: initialisation'
33      WRITE(numout,*)
34      WRITE(numout,1111) nvxk
35 1111 FORMAT ('unite logique pour xkw :nvxk :',i7)
36      WRITE(numout,'('' ---------------------------------- '')')
37c
38C Lecture  du fichier pression atmospherique
39C--------------------------------
40      DO mo=1,12
41#        if defined key_vpp
42        CALL read2s(nvxk,wsmo(1,1,mo),jpi,jpj)
43#        else
44        READ (nvxk) wsmo(:,:,mo)
45#        endif
46      END DO
47#    else
48C
49C no wind reading
50C
51#    endif
52#endif
53      RETURN
54      END
55
Note: See TracBrowser for help on using the repository browser.