source:
branches/dev_001_GM/NEMO/OFF_SRC/SBC/sbc_oce.F90
@
955
Last change on this file since 955 was 955, checked in by cetlod, 15 years ago | |
---|---|
File size: 1.4 KB |
Line | |
---|---|
1 | MODULE sbc_oce |
2 | !!====================================================================== |
3 | !! *** MODULE sbc_oce *** |
4 | !! Surface module : variables defined in core memory |
5 | !!====================================================================== |
6 | !! History : 9.0 ! 06-06 (G. Madec) Original code |
7 | !!---------------------------------------------------------------------- |
8 | USE par_oce ! ocean parameters |
9 | |
10 | IMPLICIT NONE |
11 | PRIVATE |
12 | |
13 | !!---------------------------------------------------------------------- |
14 | !! Ocean Surface Boundary Condition fields |
15 | !!---------------------------------------------------------------------- |
16 | REAL(wp), PUBLIC, DIMENSION(jpi,jpj) :: utau !: sea surface i-stress (ocean referential) [N/m2] |
17 | REAL(wp), PUBLIC, DIMENSION(jpi,jpj) :: vtau !: sea surface j-stress (ocean referential) [N/m2] |
18 | REAL(wp), PUBLIC, DIMENSION(jpi,jpj) :: qns !: sea heat flux: non solar [W/m2] |
19 | REAL(wp), PUBLIC, DIMENSION(jpi,jpj) :: qsr !: sea heat flux: solar [W/m2] |
20 | REAL(wp), PUBLIC, DIMENSION(jpi,jpj) :: emp !: freshwater budget: volume flux [Kg/m2/s] |
21 | REAL(wp), PUBLIC, DIMENSION(jpi,jpj) :: emps !: freshwater budget: concentration/dillution [Kg/m2/s] |
22 | |
23 | END MODULE sbc_oce |
Note: See TracBrowser
for help on using the repository browser.