#include "CTRL_CPPOPTIONS.h"
subroutine CTRL_SET_PACK_XYZ(
& cunit, ivartype, fname, masktype, weighttype,
& weightfld, lxxadxx, mythid)
c ==================================================================
c SUBROUTINE ctrl_set_pack_xyz
c ==================================================================
c
c o Compress the control vector such that only ocean points are
c written to file.
c
c o Use a more precise nondimensionalization that depends on (x,y)
c Added weighttype to the argument list so that I can geographically
c vary the nondimensionalization.
c gebbie@mit.edu, 18-Mar-2003
c
c ==================================================================
implicit none
c == global variables ==
#include "EEPARAMS.h"
#include "SIZE.h"
#include "PARAMS.h"
#include "GRID.h"
#include "ctrl.h"
#include "optim.h"
c == routine arguments ==
integer cunit
integer ivartype
character*( 80) fname
character*( 9) masktype
character*( 80) weighttype
_RL weightfld( nr,nsx,nsy )
logical lxxadxx
integer mythid
c == local variables ==
integer bi,bj
integer ip,jp
integer i,j,k
integer ii
integer il
integer irec
integer itlo,ithi
integer jtlo,jthi
integer jmin,jmax
integer imin,imax
integer cbuffindex
_RL globmsk ( snx,nsx,npx,sny,nsy,npy,nr )
_RL globfld3d( snx,nsx,npx,sny,nsy,npy,nr )
#ifdef CTRL_PACK_PRECISE
_RL weightfld3d( snx,nsx,npx,sny,nsy,npy,nr )
#endif
real*4 cbuff ( snx*nsx*npx*sny*nsy*npy )
real*4 globfldtmp2( snx,nsx,npx,sny,nsy,npy )
real*4 globfldtmp3( snx,nsx,npx,sny,nsy,npy )
character*(80) weightname
_RL delZnorm
integer reclen, irectrue
integer cunit2, cunit3
character*(80) cfile2, cfile3
c == external ==
integer ilnblnk
external
c == end of interface ==
jtlo = 1
jthi = nsy
itlo = 1
ithi = nsx
jmin = 1
jmax = sny
imin = 1
imax = snx
#ifdef CTRL_DELZNORM
delZnorm = 0.
do k = 1, Nr
delZnorm = delZnorm + delR(k)/FLOAT(Nr)
enddo
#endif
c Initialise temporary file
do k = 1,nr
do jp = 1,nPy
do bj = jtlo,jthi
do j = jmin,jmax
do ip = 1,nPx
do bi = itlo,ithi
do i = imin,imax
globfld3d (i,bi,ip,j,bj,jp,k) = 0. _d 0
globmsk (i,bi,ip,j,bj,jp,k) = 0. _d 0
globfldtmp2(i,bi,ip,j,bj,jp) = 0.
globfldtmp3(i,bi,ip,j,bj,jp) = 0.
enddo
enddo
enddo
enddo
enddo
enddo
enddo
c-- Only the master thread will do I/O.
_BEGIN_MASTER( mythid )
if ( doPackDiag ) then
write(cfile2(1:80),'(80a)') ' '
write(cfile3(1:80),'(80a)') ' '
if ( lxxadxx ) then
write(cfile2(1:80),'(a,I2.2,a,I4.4,a)')
& 'diag_pack_nonout_ctrl_',
& ivartype, '_', optimcycle, '.bin'
write(cfile3(1:80),'(a,I2.2,a,I4.4,a)')
& 'diag_pack_dimout_ctrl_',
& ivartype, '_', optimcycle, '.bin'
else
write(cfile2(1:80),'(a,I2.2,a,I4.4,a)')
& 'diag_pack_nonout_grad_',
& ivartype, '_', optimcycle, '.bin'
write(cfile3(1:80),'(a,I2.2,a,I4.4,a)')
& 'diag_pack_dimout_grad_',
& ivartype, '_', optimcycle, '.bin'
endif
reclen = FLOAT(snx*nsx*npx*sny*nsy*npy*4)
call MDSFINDUNIT( cunit2, mythid )
open( cunit2, file=cfile2, status='unknown',
& access='direct', recl=reclen )
call MDSFINDUNIT( cunit3, mythid )
open( cunit3, file=cfile3, status='unknown',
& access='direct', recl=reclen )
endif
#ifdef CTRL_PACK_PRECISE
il=ilnblnk( weighttype)
write(weightname(1:80),'(80a)') ' '
write(weightname(1:80),'(a)') weighttype(1:il)
call MDSREADFIELD_3D_GL(
& weightname, ctrlprec, 'RL',
& Nr, weightfld3d, 1, mythid)
#endif
call MDSREADFIELD_3D_GL(
& masktype, ctrlprec, 'RL',
& Nr, globmsk, 1, mythid)
do irec = 1, ncvarrecs(ivartype)
call MDSREADFIELD_3D_GL( fname, ctrlprec, 'RL',
& Nr, globfld3d, irec, mythid)
write(cunit) ncvarindex(ivartype)
write(cunit) 1
write(cunit) 1
do k = 1, nr
irectrue = (irec-1)*nr + k
if ( doZscalePack ) then
cph delZnorm = SQRT(delR(1)/delR(k))
delZnorm = delR(1)/delR(k)
else
delZnorm = 1. _d 0
endif
cbuffindex = 0
do jp = 1,nPy
do bj = jtlo,jthi
do j = jmin,jmax
do ip = 1,nPx
do bi = itlo,ithi
do i = imin,imax
if (globmsk(i,bi,ip,j,bj,jp,k) .ne. 0. ) then
cbuffindex = cbuffindex + 1
cph(
globfldtmp3(i,bi,ip,j,bj,jp) =
& globfld3d(i,bi,ip,j,bj,jp,k)
cph)
#ifdef ALLOW_NONDIMENSIONAL_CONTROL_IO
if (lxxadxx) then
cbuff(cbuffindex) = delZnorm
& * globfld3d(i,bi,ip,j,bj,jp,k)
# ifdef CTRL_PACK_PRECISE
& * sqrt(weightfld3d(i,bi,ip,j,bj,jp,k))
else
& * sqrt(weightfld(k,bi,bj))
# endif
else
cbuff(cbuffindex) = delZnorm
& * globfld3d(i,bi,ip,j,bj,jp,k)
# ifdef CTRL_PACK_PRECISE
& / sqrt(weightfld3d(i,bi,ip,j,bj,jp,k))
else
& / sqrt(weightfld(k,bi,bj))
# endif
endif
cph(
globfldtmp2(i,bi,ip,j,bj,jp) = cbuff(cbuffindex)
cph)
#else /* ALLOW_NONDIMENSIONAL_CONTROL_IO undef */
cbuff(cbuffindex) = globfld3d(i,bi,ip,j,bj,jp,k)
#endif /* ALLOW_NONDIMENSIONAL_CONTROL_IO */
endif
enddo
enddo
enddo
enddo
enddo
enddo
c --> check cbuffindex.
if ( cbuffindex .gt. 0) then
write(cunit) cbuffindex
write(cunit) k
write(cunit) (cbuff(ii), ii=1,cbuffindex)
endif
c
if ( doPackDiag ) then
write(cunit2,rec=irectrue) globfldtmp2
write(cunit3,rec=irectrue) globfldtmp3
endif
c
enddo
c
c -- end of irec loop --
enddo
if ( doPackDiag ) then
close ( cunit2 )
close ( cunit3 )
endif
_END_MASTER( mythid )
return
end