/[MITgcm]/MITgcm/model/src/dynamics.F
ViewVC logotype

Diff of /MITgcm/model/src/dynamics.F

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

revision 1.15 by adcroft, Tue Jun 9 15:58:36 1998 UTC revision 1.26 by cnh, Wed Aug 19 16:20:49 1998 UTC
# Line 1  Line 1 
1  C $Header$  C $Header$
2    
3  #include "CPP_EEOPTIONS.h"  #include "CPP_OPTIONS.h"
4    
5        SUBROUTINE DYNAMICS(myTime, myIter, myThid)        SUBROUTINE DYNAMICS(myTime, myIter, myThid)
6  C     /==========================================================\  C     /==========================================================\
# Line 59  C                              o fVer: V Line 59  C                              o fVer: V
59  C                                      is "pipelined" in the vertical  C                                      is "pipelined" in the vertical
60  C                                      so we need an fVer for each  C                                      so we need an fVer for each
61  C                                      variable.  C                                      variable.
62    C     rhoK, rhoKM1   - Density at current level, level above and level below.
63    C     rhoKP1                                                                  
64    C     buoyK, buoyKM1 - Buoyancy at current level and level above.
65    C     phiHyd         - Hydrostatic part of the potential phi.
66    C                      In z coords phiHyd is the hydrostatic pressure anomaly
67    C                      In p coords phiHyd is the geopotential surface height anomaly.
68  C     iMin, iMax - Ranges and sub-block indices on which calculations  C     iMin, iMax - Ranges and sub-block indices on which calculations
69  C     jMin, jMax   are applied.  C     jMin, jMax   are applied.
70  C     bi, bj  C     bi, bj
# Line 84  C                          into fVerTerm Line 90  C                          into fVerTerm
90        _RL fVerS (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerS (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
91        _RL fVerU (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerU (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
92        _RL fVerV (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)        _RL fVerV (1-OLx:sNx+OLx,1-OLy:sNy+OLy,2)
93        _RL pH    (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)        _RL phiHyd(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)
94        _RL rhokm1(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL rhokm1(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
95        _RL rhokp1(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL rhokp1(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
96          _RL rhok  (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
97          _RL buoyKM1(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
98          _RL buoyK (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
99        _RL rhotmp(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL rhotmp(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
100        _RL pSurfX(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL pSurfX(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
101        _RL pSurfY(1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL pSurfY(1-OLx:sNx+OLx,1-OLy:sNy+OLy)
# Line 95  C                          into fVerTerm Line 104  C                          into fVerTerm
104        _RL K33   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)        _RL K33   (1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nz)
105        _RL KapGM (1-OLx:sNx+OLx,1-OLy:sNy+OLy)        _RL KapGM (1-OLx:sNx+OLx,1-OLy:sNy+OLy)
106        _RL KappaZT(1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nz)        _RL KappaZT(1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nz)
107          _RL KappaZS(1-Olx:sNx+Olx,1-Oly:sNy+Oly,Nz)
108    
109        INTEGER iMin, iMax        INTEGER iMin, iMax
110        INTEGER jMin, jMax        INTEGER jMin, jMax
111        INTEGER bi, bj        INTEGER bi, bj
112        INTEGER i, j        INTEGER i, j
113        INTEGER k, kM1, kUp, kDown        INTEGER k, kM1, kUp, kDown
114          LOGICAL BOTTOM_LAYER
115    
116  C---    The algorithm...  C---    The algorithm...
117  C  C
# Line 172  C     uninitialised but inert locations. Line 183  C     uninitialised but inert locations.
183           KappaZT(i,j,k) = 0. _d 0           KappaZT(i,j,k) = 0. _d 0
184          ENDDO          ENDDO
185          rhokm1(i,j)  = 0. _d 0          rhokm1(i,j)  = 0. _d 0
186            rhok  (i,j)  = 0. _d 0
187          rhokp1(i,j)  = 0. _d 0          rhokp1(i,j)  = 0. _d 0
188          rhotmp(i,j)  = 0. _d 0          rhotmp(i,j)  = 0. _d 0
189            buoyKM1(i,j) = 0. _d 0
190            buoyK  (i,j) = 0. _d 0
191            maskC (i,j)  = 0. _d 0
192         ENDDO         ENDDO
193        ENDDO        ENDDO
194    
# Line 198  C--     Set up work arrays that need val Line 213  C--     Set up work arrays that need val
213            K13(i,j,1) = 0. _d 0            K13(i,j,1) = 0. _d 0
214            K23(i,j,1) = 0. _d 0            K23(i,j,1) = 0. _d 0
215            K33(i,j,1) = 0. _d 0            K33(i,j,1) = 0. _d 0
216            KapGM(i,j) = 0. _d 0            KapGM(i,j) = GMkbackground
217           ENDDO           ENDDO
218          ENDDO          ENDDO
219    
# Line 207  C--     Set up work arrays that need val Line 222  C--     Set up work arrays that need val
222          jMin = 1-OLy+1          jMin = 1-OLy+1
223          jMax = sNy+OLy          jMax = sNy+OLy
224    
225            K = 1
226            BOTTOM_LAYER = K .EQ. Nz
227    
228  C--     Calculate gradient of surface pressure  C--     Calculate gradient of surface pressure
229          CALL GRAD_PSURF(          CALL GRAD_PSURF(
230       I       bi,bj,iMin,iMax,jMin,jMax,       I       bi,bj,iMin,iMax,jMin,jMax,
# Line 215  C--     Calculate gradient of surface pr Line 233  C--     Calculate gradient of surface pr
233    
234  C--     Update fields in top level according to tendency terms  C--     Update fields in top level according to tendency terms
235          CALL CORRECTION_STEP(          CALL CORRECTION_STEP(
236       I       bi,bj,iMin,iMax,jMin,jMax,1,pSurfX,pSurfY,myThid)       I       bi,bj,iMin,iMax,jMin,jMax,K,pSurfX,pSurfY,myTime,myThid)
237    
238            IF ( .NOT. BOTTOM_LAYER ) THEN
239    C--      Update fields in layer below according to tendency terms
240             CALL CORRECTION_STEP(
241         I        bi,bj,iMin,iMax,jMin,jMax,K+1,pSurfX,pSurfY,myTime,myThid)
242            ENDIF
243  C--     Density of 1st level (below W(1)) reference to level 1  C--     Density of 1st level (below W(1)) reference to level 1
244          CALL FIND_RHO(          CALL FIND_RHO(
245       I     bi, bj, iMin, iMax, jMin, jMax, 1, 1, eosType,       I     bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,
246       O     rhoKm1,       O     rhoKm1,
247       I     myThid )       I     myThid )
248  C--     Integrate hydrostatic balance for pH with BC of pH(z=0)=0  
249          CALL CALC_PH(          IF ( .NOT. BOTTOM_LAYER ) THEN
250       I      bi,bj,iMin,iMax,jMin,jMax,1,rhoKm1,rhoKm1,  
251       U      pH,  C--      Check static stability with layer below
252    C        and mix as needed.
253             CALL FIND_RHO(
254         I      bi, bj, iMin, iMax, jMin, jMax, K+1, K, eosType,
255         O      rhoKp1,
256         I      myThid )
257             CALL CONVECT(
258         I       bi,bj,iMin,iMax,jMin,jMax,K+1,rhoKm1,rhoKp1,
259         I       myTime,myIter,myThid)
260    C--      Recompute density after mixing
261             CALL FIND_RHO(
262         I      bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,
263         O      rhoKm1,
264         I      myThid )
265            ENDIF
266    
267    C--     Calculate buoyancy
268            CALL CALC_BUOY(
269         I      bi,bj,iMin,iMax,jMin,jMax,K,rhoKm1,
270         O      buoyKm1,
271       I      myThid )       I      myThid )
         DO J=jMin,jMax  
          DO I=iMin,iMax  
           rhoKp1(I,J)=rhoKm1(I,J)  
          ENDDO  
         ENDDO  
272    
         DO K=2,Nz  
 C--     Update fields in Kth level according to tendency terms  
         CALL CORRECTION_STEP(  
      I       bi,bj,iMin,iMax,jMin,jMax,K,pSurfX,pSurfY,myThid)  
 C--     Density of K-1 level (above W(K)) reference to K-1 level  
 copt    CALL FIND_RHO(  
 copt I     bi, bj, iMin, iMax, jMin, jMax,  K-1, K-1, eosType,  
 copt O     rhoKm1,  
 copt I     myThid )  
 C       rhoKm1=rhoKp1  
         DO J=jMin,jMax  
          DO I=iMin,iMax  
           rhoKm1(I,J)=rhoKp1(I,J)  
          ENDDO  
         ENDDO  
 C--     Density of K level (below W(K)) reference to K level  
         CALL FIND_RHO(  
      I     bi, bj, iMin, iMax, jMin, jMax,  K, K, eosType,  
      O     rhoKp1,  
      I     myThid )  
 C--     Density of K-1 level (above W(K)) reference to K level  
         CALL FIND_RHO(  
      I     bi, bj, iMin, iMax, jMin, jMax,  K-1, K, eosType,  
      O     rhotmp,  
      I     myThid )  
 C--     Calculate iso-neutral slopes for the GM/Redi parameterisation  
         CALL CALC_ISOSLOPES(  
      I            bi, bj, iMin, iMax, jMin, jMax, K,  
      I            rhoKm1, rhoKp1, rhotmp,  
      O            K13, K23, K33, KapGM,  
      I            myThid )  
 C--     Calculate static stability and mix where convectively unstable  
         CALL CONVECT(  
      I      bi,bj,iMin,iMax,jMin,jMax,K,rhotmp,rhoKp1,  
      I      myTime,myIter,myThid)  
 C--     Density of K-1 level (above W(K)) reference to K-1 level  
         CALL FIND_RHO(  
      I     bi, bj, iMin, iMax, jMin, jMax,  K-1, K-1, eosType,  
      O     rhoKm1,  
      I     myThid )  
 C--     Density of K level (below W(K)) referenced to K level  
         CALL FIND_RHO(  
      I     bi, bj, iMin, iMax, jMin, jMax,  K, K, eosType,  
      O     rhoKp1,  
      I     myThid )  
273  C--     Integrate hydrostatic balance for pH with BC of pH(z=0)=0  C--     Integrate hydrostatic balance for pH with BC of pH(z=0)=0
274          CALL CALC_PH(          CALL CALC_PHI_HYD(
275       I      bi,bj,iMin,iMax,jMin,jMax,K,rhoKm1,rhoKp1,       I      bi,bj,iMin,iMax,jMin,jMax,K,buoyKm1,buoyKm1,
276       U      pH,       U      phiHyd,
277       I      myThid )       I      myThid )
278    
279          ENDDO ! K          DO K=2,Nz
280    
281  C--     Initial boundary condition on barotropic divergence integral           BOTTOM_LAYER = K .EQ. Nz
282          DO j=1-OLy,sNy+OLy           IF ( .NOT. BOTTOM_LAYER ) THEN
283           DO i=1-OLx,sNx+OLx  C--       Update fields in layer below according to tendency terms
284            cg2d_b(i,j,bi,bj) = 0. _d 0            CALL CORRECTION_STEP(
285         I         bi,bj,iMin,iMax,jMin,jMax,K+1,pSurfX,pSurfY,myTime,myThid)
286             ENDIF
287    C--      Density of K level (below W(K)) reference to K level
288             CALL FIND_RHO(
289         I      bi, bj, iMin, iMax, jMin, jMax,  K, K, eosType,
290         O      rhoK,
291         I      myThid )
292             IF ( .NOT. BOTTOM_LAYER ) THEN
293    C--       Check static stability with layer below
294    C         and mix as needed.
295    C--       Density of K+1 level (below W(K+1)) reference to K level
296              CALL FIND_RHO(
297         I       bi, bj, iMin, iMax, jMin, jMax,  K+1, K, eosType,
298         O       rhoKp1,
299         I       myThid )
300              CALL CONVECT(
301         I        bi,bj,iMin,iMax,jMin,jMax,K+1,rhoK,rhoKp1,
302         I        myTime,myIter,myThid)
303    C--       Recompute density after mixing
304              CALL FIND_RHO(
305         I       bi, bj, iMin, iMax, jMin, jMax, K, K, eosType,
306         O       rhoK,
307         I       myThid )
308             ENDIF
309    
310    C--      Calculate buoyancy
311             CALL CALC_BUOY(
312         I       bi,bj,iMin,iMax,jMin,jMax,K,rhoK,
313         O       buoyK,
314         I       myThid )
315    
316    C--      Integrate hydrostatic balance for pH with BC of pH(z=0)=0
317             CALL CALC_PHI_HYD(
318         I       bi,bj,iMin,iMax,jMin,jMax,K,buoyKm1,buoyK,
319         U       phiHyd,
320         I       myThid )
321    C--      Calculate iso-neutral slopes for the GM/Redi parameterisation
322             CALL FIND_RHO(
323         I      bi, bj, iMin, iMax, jMin, jMax, K-1, K, eosType,
324         O      rhoTmp,
325         I      myThid )
326             CALL CALC_ISOSLOPES(
327         I             bi, bj, iMin, iMax, jMin, jMax, K,
328         I             rhoKm1, rhoK, rhotmp,
329         O             K13, K23, K33, KapGM,
330         I             myThid )
331             DO J=jMin,jMax
332              DO I=iMin,iMax
333               rhoKm1(I,J) =rhoK(I,J)
334               buoyKm1(I,J)=buoyK(I,J)
335              ENDDO
336           ENDDO           ENDDO
337          ENDDO  
338            ENDDO ! K
339    
340          DO K = Nz, 1, -1          DO K = Nz, 1, -1
341           kM1  =max(1,k-1)   ! Points to level above k (=k-1)           kM1  =max(1,k-1)   ! Points to level above k (=k-1)
# Line 312  C--      Calculate the total vertical di Line 356  C--      Calculate the total vertical di
356           CALL CALC_DIFFUSIVITY(           CALL CALC_DIFFUSIVITY(
357       I        bi,bj,iMin,iMax,jMin,jMax,K,       I        bi,bj,iMin,iMax,jMin,jMax,K,
358       I        maskC,maskUp,KapGM,K33,       I        maskC,maskUp,KapGM,K33,
359       O        KappaZT,       O        KappaZT,KappaZS,
360       I        myThid)       I        myThid)
361    
362  C--      Calculate accelerations in the momentum equations  C--      Calculate accelerations in the momentum equations
# Line 320  C--      Calculate accelerations in the Line 364  C--      Calculate accelerations in the
364            CALL CALC_MOM_RHS(            CALL CALC_MOM_RHS(
365       I         bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,       I         bi,bj,iMin,iMax,jMin,jMax,k,kM1,kUp,kDown,
366       I         xA,yA,uTrans,vTrans,wTrans,wVel,maskC,       I         xA,yA,uTrans,vTrans,wTrans,wVel,maskC,
367       I         pH,       I         phiHyd,
368       U         aTerm,xTerm,cTerm,mTerm,pTerm,       U         aTerm,xTerm,cTerm,mTerm,pTerm,
369       U         fZon, fMer, fVerU, fVerV,       U         fZon, fMer, fVerU, fVerV,
370       I         myThid)       I         myThid)
# Line 330  C--      Calculate active tracer tendenc Line 374  C--      Calculate active tracer tendenc
374           IF ( tempStepping ) THEN           IF ( tempStepping ) THEN
375            CALL CALC_GT(            CALL CALC_GT(
376       I         bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,       I         bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,
377       I         xA,yA,uTrans,vTrans,wTrans,maskUp,       I         xA,yA,uTrans,vTrans,wTrans,maskUp,maskC,
378       I         K13,K23,KappaZT,KapGM,       I         K13,K23,KappaZT,KapGM,
379       U         aTerm,xTerm,fZon,fMer,fVerT,       U         aTerm,xTerm,fZon,fMer,fVerT,
380       I         myThid)       I         myThid)
381           ENDIF           ENDIF
382  Cdbg     CALL CALC_GS(           IF ( saltStepping ) THEN
383  Cdbg I        bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,            CALL CALC_GS(
384  Cdbg I        xA,yA,uTrans,vTrans,wTrans,maskUp,       I         bi,bj,iMin,iMax,jMin,jMax, k,kM1,kUp,kDown,
385  Cdbg I        K13,K23,K33,KapGM,       I         xA,yA,uTrans,vTrans,wTrans,maskUp,maskC,
386  Cdbg U        aTerm,xTerm,fZon,fMer,fVerS,       I         K13,K23,KappaZS,KapGM,
387  Cdbg I        myThid)       U         aTerm,xTerm,fZon,fMer,fVerS,
388         I         myThid)
389             ENDIF
390    
391  C--      Prediction step (step forward all model variables)  C--      Prediction step (step forward all model variables)
392           CALL TIMESTEP(           CALL TIMESTEP(
# Line 353  C--      Diagnose barotropic divergence Line 399  C--      Diagnose barotropic divergence
399       I       xA,yA,       I       xA,yA,
400       I       myThid)       I       myThid)
401    
402    C--      Cumulative diagnostic calculations (ie. time-averaging)
403    #ifdef ALLOW_DIAGNOSTICS
404             IF (taveFreq.GT.0.) THEN
405              CALL DO_TIME_AVERAGES(
406         I                           myTime, myIter, bi, bj, K, kUp, kDown,
407         I                           K13, K23, wVel, KapGM,
408         I                           myThid )
409             ENDIF
410    #endif
411    
412          ENDDO ! K          ENDDO ! K
413    
414  C--     Implicit diffusion  C--     Implicit diffusion
415          IF (implicitDiffusion) THEN          IF (implicitDiffusion) THEN
416           CALL IMPLDIFF( bi, bj, iMin, iMax, jMin, jMax,           CALL IMPLDIFF( bi, bj, iMin, iMax, jMin, jMax,
417       I                  KappaZT,       I                  KappaZT,KappaZS,
418       I                  myThid )       I                  myThid )
419          ENDIF          ENDIF
420    
421         ENDDO         ENDDO
422        ENDDO        ENDDO
423    
424        write(0,*) 'dynamics: pS ',minval(cg2d_x(1:sNx,1:sNy,:,:)),  C     write(0,*) 'dynamics: pS ',minval(cg2d_x(1:sNx,1:sNy,:,:)),
425       &                           maxval(cg2d_x(1:sNx,1:sNy,:,:))  C    &                           maxval(cg2d_x(1:sNx,1:sNy,:,:))
426        write(0,*) 'dynamics: U  ',minval(uVel(1:sNx,1:sNy,:,:,:)),  C     write(0,*) 'dynamics: U  ',minval(uVel(1:sNx,1:sNy,1,:,:),mask=uVel(1:sNx,1:sNy,1,:,:).NE.0.),
427       &                           maxval(uVel(1:sNx,1:sNy,:,:,:))  C    &                           maxval(uVel(1:sNx,1:sNy,1,:,:),mask=uVel(1:sNx,1:sNy,1,:,:).NE.0.)
428        write(0,*) 'dynamics: V  ',minval(vVel(1:sNx,1:sNy,:,:,:)),  C     write(0,*) 'dynamics: V  ',minval(vVel(1:sNx,1:sNy,1,:,:),mask=vVel(1:sNx,1:sNy,1,:,:).NE.0.),
429       &                           maxval(vVel(1:sNx,1:sNy,:,:,:))  C    &                           maxval(vVel(1:sNx,1:sNy,1,:,:),mask=vVel(1:sNx,1:sNy,1,:,:).NE.0.)
430    C     write(0,*) 'dynamics: wVel(1) ',
431    C    &            minval(wVel(1:sNx,1:sNy,1),mask=wVel(1:sNx,1:sNy,1).NE.0.),
432    C    &            maxval(wVel(1:sNx,1:sNy,1),mask=wVel(1:sNx,1:sNy,1).NE.0.)
433    C     write(0,*) 'dynamics: wVel(2) ',
434    C    &            minval(wVel(1:sNx,1:sNy,2),mask=wVel(1:sNx,1:sNy,2).NE.0.),
435    C    &            maxval(wVel(1:sNx,1:sNy,2),mask=wVel(1:sNx,1:sNy,2).NE.0.)
436  cblk  write(0,*) 'dynamics: K13',minval(K13(1:sNx,1:sNy,:)),  cblk  write(0,*) 'dynamics: K13',minval(K13(1:sNx,1:sNy,:)),
437  cblk &                           maxval(K13(1:sNx,1:sNy,:))  cblk &                           maxval(K13(1:sNx,1:sNy,:))
438  cblk  write(0,*) 'dynamics: K23',minval(K23(1:sNx,1:sNy,:)),  cblk  write(0,*) 'dynamics: K23',minval(K23(1:sNx,1:sNy,:)),
439  cblk &                           maxval(K23(1:sNx,1:sNy,:))  cblk &                           maxval(K23(1:sNx,1:sNy,:))
440  cblk  write(0,*) 'dynamics: K33',minval(K33(1:sNx,1:sNy,:)),  cblk  write(0,*) 'dynamics: K33',minval(K33(1:sNx,1:sNy,:)),
441  cblk &                           maxval(K33(1:sNx,1:sNy,:))  cblk &                           maxval(K33(1:sNx,1:sNy,:))
442        write(0,*) 'dynamics: gT ',minval(gT(1:sNx,1:sNy,:,:,:)),  C     write(0,*) 'dynamics: gT ',minval(gT(1:sNx,1:sNy,:,:,:)),
443       &                           maxval(gT(1:sNx,1:sNy,:,:,:))  C    &                           maxval(gT(1:sNx,1:sNy,:,:,:))
444        write(0,*) 'dynamics: T  ',minval(Theta(1:sNx,1:sNy,:,:,:)),  C     write(0,*) 'dynamics: T  ',minval(Theta(1:sNx,1:sNy,:,:,:)),
445       &                           maxval(Theta(1:sNx,1:sNy,:,:,:))  C    &                           maxval(Theta(1:sNx,1:sNy,:,:,:))
446  cblk  write(0,*) 'dynamics: pH ',minval(pH/(Gravity*Rhonil)),  C     write(0,*) 'dynamics: gS ',minval(gS(1:sNx,1:sNy,:,:,:)),
447  cblk &                           maxval(pH/(Gravity*Rhonil))  C    &                           maxval(gS(1:sNx,1:sNy,:,:,:))
448    C     write(0,*) 'dynamics: S  ',minval(salt(1:sNx,1:sNy,:,:,:)),
449    C    &                           maxval(salt(1:sNx,1:sNy,:,:,:))
450    C     write(0,*) 'dynamics: pH ',minval(pH/(Gravity*Rhonil),mask=ph.NE.0.),
451    C    &                           maxval(pH/(Gravity*Rhonil))
452    
453        RETURN        RETURN
454        END        END

Legend:
Removed from v.1.15  
changed lines
  Added in v.1.26

  ViewVC Help
Powered by ViewVC 1.1.22