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 tags/nemo_v1_04/NEMO/TOP_SRC/SMS – NEMO

source: tags/nemo_v1_04/NEMO/TOP_SRC/SMS/h3cwin.F @ 8023

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

nemo_v1_update_005:RB: update headers for the TOP component.

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