File indexing completed on 2023-05-28 05:11:06 UTC
view on githubraw file Latest commit b4daa243 on 2023-05-28 03:53:22 UTC
b4daa24319 Shre*0001 #include "COST_OPTIONS.h"
0002
0003 subroutine cost_test( myThid )
0004
0005
0006
0007
0008
0009
0010
0011 IMPLICIT NONE
0012
0013
0014 #include "SIZE.h"
0015 #include "EEPARAMS.h"
0016 #include "PARAMS.h"
0017 #include "DYNVARS.h"
0018 #include "GRID.h"
0019
0020 #include "cost.h"
0021
0022
0023
0024 integer myThid
0025
0026 #ifdef ALLOW_COST_TEST
0027
0028 integer bi, bj
0029 _RL thetaRef
0030 integer i, j, k
0031 integer ig, jg
0032 integer itlo,ithi
0033 integer jtlo,jthi
0034 _RL thetaLev(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
0035
0036 jtlo = mybylo(mythid)
0037 jthi = mybyhi(mythid)
0038 itlo = mybxlo(mythid)
0039 ithi = mybxhi(mythid)
0040
0041 if ( useCubedSphereExchange) then
0042 iLocOut = 7
0043 jLocOut = 28
0044 kLocOut = 1
0045 else
0046 iLocOut = 80
0047 jLocOut = 30
0048 kLocOut = 1
0049 endif
0050
0051 CALL READ_FLD_XYZ_RL( hydrogThetaFile, ' ', thetaLev, 0, myThid )
0052
0053
0054 thetaRef = 24.0 _d 0
0055
0056
0057 k=1
0058
0059
0060 do bj = jtlo,jthi
0061 do bi = itlo,ithi
0062 do j=1,sNy
0063 jg = myYGlobalLo-1+(bj-1)*sNy+j
0064 do i=1,sNx
0065 ig = myXGlobalLo-1+(bi-1)*sNx+i
0066
0067 #ifndef ALLOW_COST_TSQUARED
0068 if ((ig .eq. iLocOut) .and. (jg .eq. jLocOut)) then
0069 write(*,'(a,3(x,i4),a,4(x,i4))')
0070 & 'COST ',ig,jg,kLocOut,' TILE ',i,j,bi,bj
0071 objf_test(bi,bj) = theta(i,j,kLocOut,bi,bj)
0072
0073 print *, 'ph-cost ', ig, jg, kLocOut,
0074 & theta(i,j,kLocOut,bi,bj)
0075
0076 endif
0077 #else
0078 do k=1,nr
0079 if (maskC(i,j,k,bi,bj).NE.0.) then
0080 objf_test(bi,bj) = objf_test(bi,bj) +
0081 & (theta(i,j,k,bi,bj)-thetaLev(i,j,k,bi,bj))**2
0082 endif
0083 enddo
0084 #endif
0085
0086 enddo
0087 enddo
0088 enddo
0089 enddo
0090
0091 #endif /* ALLOW_COST_TEST */
0092
0093 RETURN
0094 END