C $Header: /home/ubuntu/mnt/e9_copy/MITgcm/pkg/ecco/Attic/cost_kapredi.F,v 1.3 2010/03/22 02:19:35 jmc Exp $ C $Name: $ #include "COST_CPPOPTIONS.h" subroutine cost_kapredi( I myiter, I mytime, I mythid & ) C o==========================================================o C | subroutine cost_kapredi | C | o REDI coefficient adjustment penalization | C o==========================================================o implicit none c == global variables == #include "EEPARAMS.h" #include "SIZE.h" #include "GRID.h" #include "DYNVARS.h" #ifdef ALLOW_REDIREDI # include "REDIREDI.h" #endif #include "ecco_cost.h" #include "ctrl.h" #include "ctrl_dummy.h" #include "optim.h" c == routine arguments == integer myiter _RL mytime integer mythid c == local variables == integer bi,bj integer i,j,k integer itlo,ithi integer jtlo,jthi integer jmin,jmax integer imin,imax integer nrec integer irec integer ilfld _RL fctile _RL fcthread _RL tmpx logical doglobalread logical ladinit character*(80) fnamefld character*(MAX_LEN_MBUF) msgbuf c == external functions == integer ilnblnk external ilnblnk c == end of interface == jtlo = mybylo(mythid) jthi = mybyhi(mythid) itlo = mybxlo(mythid) ithi = mybxhi(mythid) jmin = 1 jmax = sny imin = 1 imax = snx c-- Read state record from global file. doglobalread = .false. ladinit = .false. irec = 1 #ifdef ALLOW_KAPREDI_COST_CONTRIBUTION if (optimcycle .ge. 0) then ilfld = ilnblnk( xx_kapredi_file ) write(fnamefld(1:80),'(2a,i10.10)') & xx_kapredi_file(1:ilfld),'.',optimcycle endif fcthread = 0. _d 0 call active_read_xyz( fnamefld, tmpfld3d, irec, doglobalread, & ladinit, optimcycle, mythid & , xx_kapredi_dummy ) c-- Loop over this thread tiles. do bj = jtlo,jthi do bi = itlo,ithi c-- Determine the weights to be used. fctile = 0. _d 0 do k = 1,nr do j = jmin,jmax do i = imin,imax if (_hFacC(i,j,k,bi,bj) .ne. 0.) then c tmpx = (tmpfld3d(i,j,k,bi,bj)-GM_isopycK) tmpx = tmpfld3d(i,j,k,bi,bj) #ifndef ALLOW_SMOOTH_CORREL3D fctile = fctile & + wkaprediFld(i,j,k,bi,bj)*cosphi(i,j,bi,bj) & *tmpx*tmpx #else fctile = fctile + tmpx*tmpx #endif endif enddo enddo enddo objf_kapredi(bi,bj) = objf_kapredi(bi,bj) + fctile fcthread = fcthread + fctile #ifdef ECCO_VERBOSE c-- Print cost function for each tile in each thread. write(msgbuf,'(a)') ' ' call print_message( msgbuf, standardmessageunit, & SQUEEZE_RIGHT , mythid) write(msgbuf,'(a,i8.8,1x,i3.3,1x,i3.3)') & ' cost_kapredi: irec,bi,bj = ',irec,bi,bj call print_message( msgbuf, standardmessageunit, & SQUEEZE_RIGHT , mythid) write(msgbuf,'(a,d22.15)') & ' cost function (dT(0)) = ', & fctile call print_message( msgbuf, standardmessageunit, & SQUEEZE_RIGHT , mythid) #endif enddo enddo #ifdef ECCO_VERBOSE c-- Print cost function for all tiles. _GLOBAL_SUM_RL( fcthread , myThid ) write(msgbuf,'(a)') ' ' call print_message( msgbuf, standardmessageunit, & SQUEEZE_RIGHT , mythid) write(msgbuf,'(a,i8.8)') & ' cost_kapredi: irec = ',irec call print_message( msgbuf, standardmessageunit, & SQUEEZE_RIGHT , mythid) write(msgbuf,'(a,d22.15)') & ' global cost function value = ', & fcthread call print_message( msgbuf, standardmessageunit, & SQUEEZE_RIGHT , mythid) write(msgbuf,'(a)') ' ' call print_message( msgbuf, standardmessageunit, & SQUEEZE_RIGHT , mythid) #endif #else fctile = 0. _d 0 fcthread = 0. _d 0 #ifdef ECCO_VERBOSE _BEGIN_MASTER( mythid ) write(msgbuf,'(a)') ' ' call print_message( msgbuf, standardmessageunit, & SQUEEZE_RIGHT , mythid) write(msgbuf,'(a)') & ' cost_kapredi : no contribution to cost function' call print_message( msgbuf, standardmessageunit, & SQUEEZE_RIGHT , mythid) write(msgbuf,'(a)') ' ' call print_message( msgbuf, standardmessageunit, & SQUEEZE_RIGHT , mythid) _END_MASTER( mythid ) #endif #endif return end