/[MITgcm]/MITgcm/pkg/exf/exf_set_obcs.F
ViewVC logotype

Contents of /MITgcm/pkg/exf/exf_set_obcs.F

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


Revision 1.5 - (show annotations) (download)
Tue Jun 24 16:07:32 2003 UTC (21 years ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint51, checkpoint51f_post, checkpoint51d_post, checkpoint51j_post, checkpoint51b_pre, checkpoint51h_pre, branchpoint-genmake2, checkpoint51b_post, checkpoint51c_post, checkpoint51i_pre, checkpoint51e_post, checkpoint51f_pre, checkpoint51g_post, checkpoint51a_post
Branch point for: branch-genmake2
Changes since 1.4: +25 -23 lines
Merging for c51 vs. e34

1 #include "EXF_CPPOPTIONS.h"
2
3 subroutine exf_set_obcs_xz (
4 & obcs_fld_xz, obcs_xz_0, obcs_xz_1
5 I , obcs_file, obcsmask
6 I , fac, first, changed, count0, count1
7 I , mycurrenttime, mycurrentiter, mythid
8 & )
9
10 c ==================================================================
11 c SUBROUTINE exf_set_obcs_xz
12 c ==================================================================
13 c
14 c o set open boundary conditions
15 c
16 c started: heimbach@mit.edu 01-May-2001
17 c mods for pkg/seaice: menemenlis@jpl.nasa.gov 20-Dec-2002
18
19 c ==================================================================
20 c SUBROUTINE exf_set_obcs_xz
21 c ==================================================================
22
23 implicit none
24
25 c == global variables ==
26
27 #include "EEPARAMS.h"
28 #include "SIZE.h"
29 #include "GRID.h"
30 #include "exf_param.h"
31 #include "exf_constants.h"
32
33 c == routine arguments ==
34
35 _RL obcs_fld_xz(1-olx:snx+olx,Nr,nsx,nsy)
36 _RL obcs_xz_0(1-olx:snx+olx,Nr,nsx,nsy)
37 _RL obcs_xz_1(1-olx:snx+olx,Nr,nsx,nsy)
38
39 character*(128) obcs_file
40 character*1 obcsmask
41 logical first, changed
42 integer count0, count1
43 _RL fac
44 _RL mycurrenttime
45 integer mycurrentiter
46 integer mythid
47
48 #ifdef ALLOW_OBCS
49
50 c == local variables ==
51
52 integer bi, bj
53 integer i, k
54
55 c == end of interface ==
56
57 if ( obcs_file .NE. ' ' ) then
58
59 if ( first ) then
60 call mdsreadfieldxz( obcs_file, exf_iprec, exf_yftype, Nr
61 & , obcs_xz_1, count0, mythid
62 & )
63 endif
64
65 if (( first ) .or. ( changed )) then
66 call exf_swapffields_xz( obcs_xz_0, obcs_xz_1, mythid )
67
68 call mdsreadfieldxz( obcs_file, exf_iprec, exf_yftype, Nr
69 & , obcs_xz_1, count1, mythid
70 & )
71 endif
72
73 do bj = mybylo(mythid),mybyhi(mythid)
74 do bi = mybxlo(mythid),mybxhi(mythid)
75 do k = 1,Nr
76 do i = 1,snx
77 obcs_fld_xz(i,k,bi,bj) =
78 & fac * obcs_xz_0(i,k,bi,bj) +
79 & (exf_one - fac) * obcs_xz_1(i,k,bi,bj)
80 enddo
81 enddo
82 enddo
83 enddo
84
85 endif
86
87 #endif
88
89 end
90
91 subroutine exf_set_obcs_yz (
92 & obcs_fld_yz, obcs_yz_0, obcs_yz_1
93 I , obcs_file, obcsmask
94 I , fac, first, changed, count0, count1
95 I , mycurrenttime, mycurrentiter, mythid
96 & )
97
98 c ==================================================================
99 c SUBROUTINE exf_set_obcs_yz
100 c ==================================================================
101 c
102 c o set open boundary conditions
103 c
104 c started: heimbach@mit.edu 01-May-2001
105
106 c ==================================================================
107 c SUBROUTINE exf_set_obcs_yz
108 c ==================================================================
109
110 implicit none
111
112 c == global variables ==
113
114 #include "EEPARAMS.h"
115 #include "SIZE.h"
116 #include "GRID.h"
117 #include "exf_param.h"
118 #include "exf_constants.h"
119
120 c == routine arguments ==
121
122 _RL obcs_fld_yz(1-oly:sny+oly,Nr,nsx,nsy)
123 _RL obcs_yz_0(1-oly:sny+oly,Nr,nsx,nsy)
124 _RL obcs_yz_1(1-oly:sny+oly,Nr,nsx,nsy)
125 character*(MAX_LEN_FNAM) obcs_file
126 character*1 obcsmask
127 logical first, changed
128 integer count0, count1
129 _RL fac
130 _RL mycurrenttime
131 integer mycurrentiter
132 integer mythid
133
134 #ifdef ALLOW_OBCS
135
136 c == local variables ==
137
138 integer bi, bj
139 integer j, k
140
141 c == end of interface ==
142
143 if ( obcs_file .NE. ' ' ) then
144
145 if ( first ) then
146 call mdsreadfieldyz( obcs_file, exf_iprec, exf_yftype, Nr
147 & , obcs_yz_1, count0, mythid
148 & )
149 endif
150
151 if (( first ) .or. ( changed )) then
152 call exf_swapffields_yz( obcs_yz_0, obcs_yz_1, mythid )
153
154 call mdsreadfieldyz( obcs_file, exf_iprec, exf_yftype, Nr
155 & , obcs_yz_1, count1, mythid
156 & )
157 endif
158
159 do bj = mybylo(mythid),mybyhi(mythid)
160 do bi = mybxlo(mythid),mybxhi(mythid)
161 do k = 1,Nr
162 do j = 1,sny
163 obcs_fld_yz(j,k,bi,bj) =
164 & fac *obcs_yz_0(j,k,bi,bj) +
165 & (exf_one - fac) *obcs_yz_1(j,k,bi,bj)
166 enddo
167 enddo
168 enddo
169 enddo
170
171 endif
172
173 #endif
174
175 end

  ViewVC Help
Powered by ViewVC 1.1.22