subroutine setupq(lunin,mype,bwork,awork,nele,nobs,conv_diagsave) !$$$ subprogram documentation block ! . . . . ! subprogram: setupq compute rhs of oi for moisture observations ! prgmmr: parrish org: np22 date: 1990-10-06 ! ! abstract: For moisture observations, this routine ! a) reads obs assigned to given mpi task (geographic region), ! b) simulates obs from guess, ! c) apply some quality control to obs, ! d) load weight and innovation arrays used in minimization ! e) collects statistics for runtime diagnostic output ! f) writes additional diagnostic information to output file ! ! program history log: ! 1990-10-06 parrish ! 1998-04-10 weiyu yang ! 1999-03-01 wu - ozone processing moved into setuprhs from setupoz ! 1999-08-24 derber, j., treadon, r., yang, w., first frozen mpp version ! 2004-06-17 treadon - update documentation ! 2004-08-02 treadon - add only to module use, add intent in/out ! 2004-10-06 parrish - increase size of qwork array for nonlinear qc ! 2004-11-22 derber - remove weight, add logical for boundary point ! 2004-12-22 treadon - move logical conv_diagsave from obsmod to argument list ! 2005-03-02 dee - remove garbage from diagnostic file ! 2005-03-09 parrish - nonlinear qc change to account for inflated obs error ! 2005-05-27 derber - level output change ! 2005-07-27 derber - add print of monitoring and reject data ! 2005-09-28 derber - combine with prep,spr,remove tran and clean up ! 2005-10-06 treadon - lower huge_error to prevent overflow ! 2005-10-14 derber - input grid location and fix regional lat/lon ! 2005-10-21 su - modify variational qc and diagonose output ! 2005-11-03 treadon - correct error in ilone,ilate data array indices ! 2005-11-21 kleist - change to call to genqsat ! 2005-11-21 derber - correct error in use of qsges ! 2005-11-22 wu - add option to perturb conventional obs ! 2005-11-29 derber - remove psfcg and use ges_lnps instead ! 2006-01-31 todling - storing wgt/wgtlim in diag file instead of wgt only ! 2006-02-02 treadon - rename lnprsl as ges_lnprsl ! 2006-02-03 derber - fix bug in counting rlow and rhgh ! 2006-02-24 derber - modify to take advantage of convinfo module ! 2006-03-21 treadon - modify optional perturbation to observation ! 2006-04-03 derber - eliminate unused arrays ! 2006-05-30 su,derber,treadon - modify diagnostic output ! 2006-06-06 su - move to wgtlim to constants module ! 2006-07-28 derber - modify to use new inner loop obs data structure ! - modify handling of multiple data at same location ! 2006-07-31 kleist - use ges_ps instead of ln(ps) ! 2006-08-28 su - fix a bug in variational qc ! 2007-03-09 su - modify obs perturbation ! ! input argument list: ! lunin - unit from which to read observations ! mype - mpi task id ! nele - number of data elements per observation ! nobs - number of observations ! ! output argument list: ! bwork - array containing information about obs-ges statistics ! awork - array containing information for data counts and gross checks ! ! attributes: ! language: f90 ! machine: ibm RS/6000 SP ! !$$$ use kinds, only: r_kind,r_single,r_double,i_kind use obsmod, only: qtail,qhead,rmiss_single,perturb_obs,perturb_fact,ran01dom use oneobmod, only: oneobtest,maginnov,magoberr use guess_grids, only: ges_lnprsl,ges_q,ges_tv,hrdifsig,nfldsig,ges_ps use gridmod, only: nlat,nlon,lat2,lon2,nsig,rlats,rlons,twodvar_regional use gridmod, only: get_ijk use constants, only: zero,one,eps,epsm1,xb,xbi,xa,xai,tmix,ttp,fv,psatk,r1000 use constants, only: rad2deg,huge_single,wgtlim,izero,r3600 use constants, only: tiny_r_kind,five,half,one_tenth,two,huge_r_kind,cg_term use qcmod, only: npres_print,ptopq,pbotq,dfact,dfact1 use jfunc, only: jiter,first,last,jiterstart,l_foto use convinfo, only: nconvtype,cermin,cermax,cgross,cvar_b,cvar_pg,ictype use convinfo, only: icsubtype use converr, only: ptabl implicit none ! Declare local parameters real(r_kind),parameter:: small1=0.0001_r_kind real(r_kind),parameter:: small2=0.0002_r_kind real(r_kind),parameter:: r8=8.0_r_kind real(r_kind),parameter:: r10=10.0_r_kind real(r_kind),parameter:: r0_01=0.01_r_kind real(r_kind),parameter:: r0_001 = 0.001_r_kind real(r_kind),parameter:: r100=100.0_r_kind real(r_kind),parameter:: r1e16=1.e16_r_kind ! Declare local variables ! Declare passed variables logical,intent(in):: conv_diagsave integer(i_kind),intent(in):: lunin,mype,nele,nobs real(r_kind),dimension(100+7*nsig),intent(inout):: awork real(r_kind),dimension(npres_print,nconvtype,5,3),intent(inout):: bwork ! Declare local variables real(r_double) rstation_id real(r_kind) qob,qges,qmaxerr,qsges real(r_kind) ratio_errors,dlat,dlon,dtime,dpres,rmaxerr,error real(r_kind) rsig,dprpx,rlow,rhgh,presq,tfact real(r_kind) psges,sfcchk,ddiff,errorx,perturbb real(r_kind) cg_q,wgross,wnotgross,wgt,arg,exp_arg,term,rat_err2 real(r_kind) grsmlt,dx,dy,ds,dx1,dy1,ds1,ratio,val2,obserror real(r_kind) obserrlm,residual,ressw2,scale,ress,huge_error real(r_kind) val,valqc,rwgt real(r_kind) errinv_input,errinv_adjst,errinv_final real(r_kind) err_input,err_adjst,err_final real(r_kind),dimension(nele,nobs):: data real(r_kind),dimension(nobs):: dup real(r_kind),dimension(lat2,lon2,nsig,nfldsig):: qg real(r_kind),dimension(lat2,lon2,nsig):: desdt,ddum real(r_kind),dimension(nsig):: prsltmp real(r_single),allocatable,dimension(:,:)::rdiagbuf integer(i_kind) i,nchar,nreal,j,k1,n,it,ii,l,jj,mm1,itemp integer(i_kind) jlat,jlon,jsig,itype,k,nn,ikxx integer(i_kind) ier,ilon,ilat,ipres,iqob,id,itime,ikx,iqmax,iqc integer(i_kind) ier2,iuse,ilate,ilone,istnelv,iobshgt,istat character(8) station_id character(8),allocatable,dimension(:):: cdiagbuf character(8),allocatable,dimension(:):: cprvstg,csprvstg !MPondeca character(8) c_prvstg,c_sprvstg !MPondeca real(r_double) r_prvstg,r_sprvstg !MPondeca logical ice logical,dimension(nobs):: luse,muse equivalence(rstation_id,station_id) equivalence(r_prvstg,c_prvstg) !MPondeca equivalence(r_sprvstg,c_sprvstg) !MPondeca !******************************************************************************* ! Read and reformat observations in work arrays. read(lunin)data,luse ier=1 ! index of obs error ilon=2 ! index of grid relative obs location (x) ilat=3 ! index of grid relative obs location (y) ipres=4 ! index of pressure iqob=5 ! index of q observation id=6 ! index of station id itime=7 ! index of observation time in data array ikxx=8 ! index of ob type iqmax=9 ! index of max error itemp=10 ! index of dry temperature iqc=11 ! index of quality mark ier2=12 ! index of original-original obs error ratio iuse=13 ! index of use parameter ilone=14 ! index of longitude (degrees) ilate=15 ! index of latitude (degrees) istnelv=16 ! index of station elevation (m) iobshgt=17 ! index of observation height (m) do i=1,nobs muse(i)=nint(data(iuse,i)) <= jiter end do dup=one do k=1,nobs do l=k+1,nobs if(data(ilat,k) == data(ilat,l) .and. & data(ilon,k) == data(ilon,l) .and. & data(ipres,k) == data(ipres,l) .and. & data(ier,k) < r1000 .and. data(ier,l) < r1000 .and. & muse(k) .and. muse(l))then tfact=min(one,abs(data(itime,k)-data(itime,l))/dfact1) dup(k)=dup(k)+one-tfact*tfact*(one-dfact) dup(l)=dup(l)+one-tfact*tfact*(one-dfact) end if end do end do ! If requested, save select data for output to diagnostic file if(conv_diagsave)then ii=0 nchar=1 nreal=30! 20 !MPondeca allocate(cdiagbuf(nobs),rdiagbuf(nreal,nobs)) allocate(cprvstg(nobs),csprvstg(nobs)) !MPondeca end if rsig=nsig mm1=mype+1 grsmlt=five ! multiplier factor for gross error check huge_error = huge_r_kind/r1e16 scale=one do k=1,nsig do jj=1,nfldsig do j=1,lon2 do i=1,lat2 qg(i,j,k,jj) = ges_q(i,j,k,jj) if (qg(i,j,k,jj) 179 .and. itype < 190 .and. .not.twodvar_regional)then !MPondeca dprpx=abs(one-exp(dpres-log(psges)))*r10 ! dprpx=abs(presq-r10*psges)*0.0025 end if ! Put obs pressure in correct units to get grid coord. number call grdcrd(dpres,1,prsltmp(1),nsig,-1) ! Get approximate k value of surface by using surface pressure sfcchk=log(psges) call grdcrd(sfcchk,1,prsltmp(1),nsig,-1) ! Check to see if observations is above the top of the model (regional mode) if( dpres>=nsig+1)dprpx=1.e6 if(itype > 179 .and. itype < 186) dpres=one ! Scale errors by guess saturation q call tintrp3(qg,qsges,dlat,dlon,dpres,dtime,hrdifsig,& 1,mype,nfldsig) ! Load obs error and value into local variables obserror = max(cermin(ikx)*r0_01,min(cermax(ikx)*r0_01,data(ier,i))) qob = data(iqob,i) rmaxerr=rmaxerr*qsges rmaxerr=max(small2,rmaxerr) errorx =(data(ier,i)+dprpx)*qsges errorx =max(small1,errorx) ! Adjust observation error to reflect the size of the residual. ! If extrapolation occurred, then further adjust error according to ! amount of extrapolation. rlow=max(sfcchk-dpres,zero) rhgh=max(dpres-r0_001-rsig,zero) if(luse(i))then awork(1) = awork(1) + one if(rlow/=zero) awork(2) = awork(2) + one if(rhgh/=zero) awork(3) = awork(3) + one end if ratio_errors=error*qsges/((errorx+1.0e6_r_kind*rhgh+r8*rlow)*sqrt(dup(i))) ! Check to see if observations is above the top of the model (regional mode) if (dpres > rsig) ratio_errors=zero error=one/(error*qsges) ! Interpolate guess moisture to observation location and time call tintrp3(ges_q,qges,dlat,dlon,dpres,dtime, & hrdifsig,1,mype,nfldsig) ! Compute innovations ddiff=qob-qges ! If requested, setup for single obs test. if (oneobtest) then ddiff=maginnov*1.e-3_r_kind error=one/(magoberr*1.e-3_r_kind) ratio_errors=one end if ! Gross error checks if(abs(ddiff) > grsmlt*data(iqmax,i) .or. & (qges<0.002_r_kind .and. (qges/qob)>3_r_kind ) .or. & !Near dryline: qob is dangerously small to avoid mess due to numerics (qges<0.00011_r_kind .and. (qob/qges) grsmlt*data(iqmax,i)) then error=zero ratio_errors=zero ! Modify for the obs perturbation to adjust the obs err if(perturb_obs .and. jiter == jiterstart ) then data(ier2,i)= huge_r_kind ! Do not use this data next outerloop endif if(luse(i))awork(5)=awork(5)+one end if obserror=min(one/max(ratio_errors*error,tiny_r_kind),huge_error) obserror=obserror*r100/qsges obserrlm=max(cermin(ikx),min(cermax(ikx),obserror)) residual=abs(ddiff*r100/qsges) ratio=residual/obserrlm if(ratio > cgross(ikx) .or. ratio_errors < tiny_r_kind) then if(luse(i))awork(4)=awork(4)+one error=zero ratio_errors=zero ! Modify for the obs perturbation to adjust the obs err if(perturb_obs .and. jiter == jiterstart ) then data(ier2,i)= huge_r_kind ! Do not use this data next outerloop endif end if if (ratio_errors*error <=tiny_r_kind) muse(i)=.false. ! Modify for the obs perturbation to adjust the obs err if( muse(i) .and. perturb_obs) then if(error >1.0e-2*qsges) then perturbb=ran01dom()*perturb_fact/error else perturbb=zero endif if( jiter /= jiterstart ) then ddiff=ddiff+perturbb endif endif ! Compute penalty terms val = error*ddiff if(luse(i))then val2 = val*val exp_arg = -half*val2 rat_err2 = ratio_errors**2 if (cvar_pg(ikx) > tiny_r_kind .and. error >tiny_r_kind) then arg = exp(exp_arg) wnotgross= one-cvar_pg(ikx) cg_q=cvar_b(ikx) wgross = cg_term*cvar_pg(ikx)/(cg_q*wnotgross) term =log((arg+wgross)/(one+wgross)) wgt = one-wgross/(arg+wgross) rwgt = wgt/wgtlim else term = exp_arg wgt = wgtlim rwgt = wgt/wgtlim endif valqc = -two*rat_err2*term ! Accumulate statistics for obs belonging to this task if(muse(i))then if(rwgt < one) awork(21) = awork(21)+one jsig = dpres jsig=max(1,min(jsig,nsig)) awork(jsig+5*nsig+100)=awork(jsig+5*nsig+100)+val2*rat_err2 awork(jsig+6*nsig+100)=awork(jsig+6*nsig+100)+one awork(jsig+3*nsig+100)=awork(jsig+3*nsig+100)+valqc end if ! Loop over pressure level groupings and obs to accumulate statistics ! as a function of observation type. ress = scale*r100*ddiff/qsges ressw2= ress*ress nn=1 if (.not. muse(i)) then nn=2 if(ratio_errors*error >=tiny_r_kind)nn=3 end if do k = 1,npres_print if(presq >= ptopq(k) .and. presq <= pbotq(k))then bwork(k,ikx,1,nn) = bwork(k,ikx,1,nn)+one ! count bwork(k,ikx,2,nn) = bwork(k,ikx,2,nn)+ress ! (o-g) bwork(k,ikx,3,nn) = bwork(k,ikx,3,nn)+ressw2 ! (o-g)**2 bwork(k,ikx,4,nn) = bwork(k,ikx,4,nn)+val2*rat_err2 ! penalty bwork(k,ikx,5,nn) = bwork(k,ikx,5,nn)+valqc ! nonlin qc penalty end if end do end if ! If obs is "acceptable", load array with obs info for use ! in inner loop minimization (int* and stp* routines) if (.not. last .and. muse(i)) then if(.not. associated(qhead))then allocate(qhead,stat=istat) if(istat /= 0)write(6,*)' failure to write qhead ' qtail => qhead else allocate(qtail%llpoint,stat=istat) qtail => qtail%llpoint if(istat /= 0)write(6,*)' failure to write qtail%llpoint ' end if ! Set (i,j,k) indices of guess gridpoint that bound obs location call get_ijk(mm1,dlat,dlon,dpres,qtail%ij(1),qtail%wij(1)) qtail%res = ddiff qtail%err2 = error**2 qtail%raterr2= ratio_errors**2 if(l_foto)then qtail%time = dtime*r3600 else qtail%time = zero end if qtail%b = cvar_b(ikx) qtail%pg = cvar_pg(ikx) qtail%luse = luse(i) if(perturb_obs) then qtail%qpertb=perturbb if(presq >= ptabl(2))then qtail%qk1=1+ictype(ikx)*100 else if( presq < ptabl(33)) then qtail%qk1=33+ictype(ikx)*100 else k_loop: do k=2,32 if(presq >= ptabl(k+1) .and. presq < ptabl(k)) then qtail%qk1=k+ictype(ikx)*100 exit k_loop endif enddo k_loop endif ! write(6,*) 'SETUPQ:',qtail%qk1,qtail%qpertb,data(8,i),itype,& ! presq,k,ptabl(k),ptabl(k+1) else qtail%qpertb=zero qtail%qk1=izero endif endif ! Save select output for diagnostic file if(conv_diagsave .and. luse(i))then ii=ii+1 rstation_id = data(id,i) cdiagbuf(ii) = station_id ! station id rdiagbuf(1,ii) = ictype(ikx) ! observation type rdiagbuf(2,ii) = icsubtype(ikx) ! observation subtype rdiagbuf(3,ii) = data(ilate,i) ! observation latitude (degrees) rdiagbuf(4,ii) = data(ilone,i) ! observation longitude (degrees) rdiagbuf(5,ii) = data(istnelv,i) ! station elevation (meters) rdiagbuf(6,ii) = presq ! observation pressure (hPa) rdiagbuf(7,ii) = data(iobshgt,i) ! observation height (meters) rdiagbuf(8,ii) = dtime ! obs time (hours relative to analysis time) rdiagbuf(9,ii) = data(iqc,i) ! input prepbufr qc or event mark rdiagbuf(10,ii) = rmiss_single ! setup qc or event mark rdiagbuf(11,ii) = data(iuse,i) ! read_prepbufr data usage flag if(muse(i)) then rdiagbuf(12,ii) = one ! analysis usage flag (1=use, -1=not used) if (data(iuse,i).gt.one) rdiagbuf(12,ii) = data(iuse,i) !MPondeca else rdiagbuf(12,ii) = -one if (data(iuse,i).gt.one) rdiagbuf(12,ii) = -data(iuse,i) !MPondeca endif err_input = data(ier2,i)*qsges ! convert rh to q err_adjst = data(ier,i)*qsges ! convert rh to q if (ratio_errors*error>tiny_r_kind) then err_final = one/(ratio_errors*error) else err_final = huge_single endif errinv_input = huge_single errinv_adjst = huge_single errinv_final = huge_single if (err_input>tiny_r_kind) errinv_input = one/err_input if (err_adjst>tiny_r_kind) errinv_adjst = one/err_adjst if (err_final>tiny_r_kind) errinv_final = one/err_final rdiagbuf(13,ii) = rwgt ! nonlinear qc relative weight rdiagbuf(14,ii) = errinv_input ! prepbufr inverse observation error rdiagbuf(15,ii) = errinv_adjst ! read_prepbufr inverse obs error rdiagbuf(16,ii) = errinv_final ! final inverse observation error rdiagbuf(17,ii) = data(iqob,i) ! observation rdiagbuf(18,ii) = ddiff ! obs-ges used in analysis rdiagbuf(19,ii) = qob-qges ! obs-ges w/o bias correction (future slot) rdiagbuf(20,ii) = qsges ! guess saturation specific humidity r_prvstg = data(30,i) !MPondeca cprvstg(ii) = c_prvstg ! provider name !MPondeca r_sprvstg = data(29,i) !MPondeca csprvstg(ii) = c_sprvstg ! subprovider name !MPondeca rdiagbuf(28,ii) = data(28,i) ! model terrain at ob location rdiagbuf(27,ii) = data(27,i) ! model land-sea mask at ob location end if ! End of loop over observations end do ! Write information to diagnostic file if(conv_diagsave)then write(7)' q',nchar,nreal,ii,mype write(7)cdiagbuf(1:ii),rdiagbuf(:,1:ii),cprvstg(1:ii),csprvstg(1:ii) !MPondeca deallocate(cdiagbuf,rdiagbuf) deallocate(cprvstg,csprvstg) !MPondeca end if ! End of routine end subroutine setupq