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 @ 186

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

CL + CE : NEMO TRC_SRC start

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