Skip to content

Commit

Permalink
Merge pull request NOAA-EMC#355 from XuLi-NOAA/feature/GSI_coast
Browse files Browse the repository at this point in the history
GitHub Issue NOAA-EMC#339. The inclusion of the mixed surface type in situ observations and looser QC for in situ observations
  • Loading branch information
MichaelLueken committed Apr 25, 2022
2 parents 0c6548e + 0d62fb5 commit f631e5b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion scripts/exglobal_atmos_analysis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@ cat > gsiparm.anl << EOF
$OBSQC
/
&OBS_INPUT
dmesh(1)=145.0,dmesh(2)=150.0,dmesh(3)=100.0,dmesh(4)=70.0,time_window_max=3.0,
dmesh(1)=145.0,dmesh(2)=150.0,dmesh(3)=100.0,dmesh(4)=25.0,time_window_max=3.0,
$OBSINPUT
/
OBS_INPUT::
Expand Down
4 changes: 3 additions & 1 deletion src/gsi/setupsst.f90
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ subroutine setupsst(obsLL,odiagLL,lunin,mype,bwork,awork,nele,nobs,is,conv_diags
! 2017-02-09 guo - Remove m_alloc, n_alloc.
! . Remove my_node with corrected typecast().
! 2019-11-12 li - add 4 nsst variables to netcdf sst diag file
! 2022-04-04 li - modify to use mixed surface in situ observations
! if ( isli == 0 ) then => if ( owpct > 0.05_r_kind ) then
!
! input argument list:
! lunin - unit from which to read observations
Expand Down Expand Up @@ -309,7 +311,7 @@ subroutine setupsst(obsLL,odiagLL,lunin,mype,bwork,awork,nele,nobs,is,conv_diags
if(.not.in_curbin) cycle

! Interpolate to get sst at obs location/time
if ( isli == 0 ) then
if ( owpct > 0.05_r_kind ) then
nobs_qc = nobs_qc + 1
call intrp2a11(dsfct(1,1,ntguessfc),dsfct_obx,dlat,dlon,mype)
else
Expand Down

0 comments on commit f631e5b

Please sign in to comment.