/[MITgcm]/MITgcm/pkg/bulk_force/BULKF.h
ViewVC logotype

Annotation of /MITgcm/pkg/bulk_force/BULKF.h

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.4 - (hide annotations) (download)
Sun Nov 23 01:36:55 2003 UTC (20 years, 7 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint57m_post, checkpoint52l_pre, hrcube4, hrcube5, checkpoint57g_pre, checkpoint57s_post, checkpoint57b_post, checkpoint52d_pre, checkpoint57g_post, checkpoint56b_post, checkpoint57y_post, checkpoint52j_pre, checkpoint54d_post, checkpoint54e_post, checkpoint57r_post, checkpoint57d_post, checkpoint57i_post, checkpoint52k_post, checkpoint58, checkpoint55, checkpoint54, checkpoint57, checkpoint56, checkpoint53, checkpoint52f_post, checkpoint57n_post, checkpoint57z_post, checkpoint54f_post, checkpoint55i_post, checkpoint57l_post, checkpoint52i_pre, hrcube_1, hrcube_2, hrcube_3, checkpoint57t_post, checkpoint55c_post, checkpoint52e_pre, checkpoint57v_post, checkpoint57f_post, checkpoint52e_post, checkpoint53d_post, checkpoint57a_post, checkpoint57h_pre, checkpoint54b_post, checkpoint57h_post, checkpoint52m_post, checkpoint57y_pre, checkpoint55g_post, checkpoint52b_post, checkpoint52c_post, checkpoint57c_post, checkpoint52f_pre, checkpoint55d_post, checkpoint54a_pre, checkpoint53c_post, checkpoint55d_pre, checkpoint57c_pre, checkpoint55j_post, checkpoint54a_post, checkpoint55h_post, checkpoint57e_post, checkpoint55b_post, checkpoint53a_post, checkpoint55f_post, checkpoint52d_post, checkpoint53g_post, checkpoint57p_post, checkpint57u_post, checkpoint57q_post, eckpoint57e_pre, checkpoint52i_post, checkpoint52h_pre, checkpoint56a_post, checkpoint53f_post, checkpoint57h_done, checkpoint52j_post, checkpoint57j_post, checkpoint57f_pre, branch-netcdf, checkpoint52l_post, checkpoint52n_post, checkpoint53b_pre, checkpoint56c_post, checkpoint57a_pre, checkpoint55a_post, checkpoint57o_post, checkpoint57k_post, checkpoint53b_post, checkpoint57w_post, checkpoint57x_post, checkpoint53d_pre, checkpoint55e_post, checkpoint54c_post
Branch point for: netcdf-sm0
Changes since 1.3: +11 -6 lines
File MIME type: text/plain
light cleaning to make it work with new thSIce pkg.

1 jmc 1.4 C $Header: $
2     C $Name: $
3    
4 cheisey 1.1 #ifdef ALLOW_BULK_FORCE
5     cswdblk
6     c !ROUTINE: BULKF.h
7     c -------------------------------
8     c BULKF.h
9     C variable for forcing using bulk
10     c formula
11     c -------------------------------
12     c FORCING VARIABLES
13 cheisey 1.3 C Mandatory:
14     c tair - air temperature (K)
15     c qair - specific humidity at surface (Kg/Kg)
16 jmc 1.4 c rain - precipitation, which may become snow (m/s), (>0: rain)
17     c solar - downward shortwave radiation (W/m^2), (>0: downward)
18     c flw - downward longwave radiation (W/m^2), (>0: downward)
19     c (jmc: flwdwn would be a better name)
20 cheisey 1.3 c wspeed - wind speed (m/s)
21     C
22     C Optional:
23     c uwind - zonal wind speed (m/s)
24     c vwind - meridional wind speed (m/s)
25 cheisey 1.1 c runoff - freshwater runoff
26     c qnetch - net heat flux (cheating)
27     c empch - E-P (cheating)
28     c cloud - fraction sky covered in cloud
29     c
30     COMMON /BULKF_FFIELDS_PARMS/
31     & Tair, Qair, Rain, Solar, flw,
32     & uwind, vwind, runoff, wspeed,
33 jmc 1.4 & qnetch, empch, cloud,
34 cheisey 1.1 & AirTempFile, AirHumidityFile, RainFile,
35     & SolarFile, LongwaveFile, UWindFile, VWindFile,
36     & RunoffFile, WSpeedFile, readwindstress,
37     & readsurface,
38     & QnetFile,EmPFile, CloudFile, SnowFile
39 jmc 1.4 c & ,evapora
40 cheisey 1.1
41     _RL Tair (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
42     _RL Qair (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
43     _RL Rain (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
44     _RL Solar (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
45     _RL flw (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
46     _RL uwind (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
47     _RL vwind (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
48     _RL runoff (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
49     _RL wspeed (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
50     _RL qnetch (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
51     _RL empch (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
52     _RL cloud (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
53 jmc 1.4 c _RL evapora (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
54 cheisey 1.1 CHARACTER*(MAX_LEN_FNAM) AirTempFile
55     CHARACTER*(MAX_LEN_FNAM) AirHumidityFile
56     CHARACTER*(MAX_LEN_FNAM) RainFile
57     CHARACTER*(MAX_LEN_FNAM) SolarFile
58     CHARACTER*(MAX_LEN_FNAM) LongwaveFile
59     CHARACTER*(MAX_LEN_FNAM) UWindFile
60     CHARACTER*(MAX_LEN_FNAM) VWindFile
61     CHARACTER*(MAX_LEN_FNAM) RunoffFile
62     CHARACTER*(MAX_LEN_FNAM) WSpeedFile
63     CHARACTER*(MAX_LEN_FNAM) QnetFile
64     CHARACTER*(MAX_LEN_FNAM) EmPFile
65     CHARACTER*(MAX_LEN_FNAM) CloudFile
66     CHARACTER*(MAX_LEN_FNAM) SnowFile
67     LOGICAL readwindstress
68     LOGICAL readsurface
69 cheisey 1.2
70 jmc 1.4 #endif /* ALLOW_BULK_FORCE */

  ViewVC Help
Powered by ViewVC 1.1.22