1 subroutine da_check_xtoy_adjoint_sonde_sfc(iv, y, adjtest_lhs, pertile_lhs)
3 !-----------------------------------------------------------------------
5 !-----------------------------------------------------------------------
9 type (iv_type), intent(in) :: iv ! obs. inc. vector (o-b).
10 type (y_type) , intent(inout) :: y ! y = h (xa)
11 real , intent(inout) :: adjtest_lhs, pertile_lhs
13 integer :: n ! Loop counter.
15 if (trace_use_dull) call da_trace_entry("da_check_xtoy_adjoint_sonde_sfc")
17 do n=iv%info(sound)%n1, iv%info(sound)%n2
18 if (iv%info(sound)%zk(1,n) < 1.0 .and. sfc_assi_options /= 2) then
19 y%sonde_sfc(n)%u = 0.0
20 y%sonde_sfc(n)%v = 0.0
21 y%sonde_sfc(n)%t = 0.0
22 y%sonde_sfc(n)%p = 0.0
23 y%sonde_sfc(n)%q = 0.0
28 if ( sfc_assi_options == 2 ) then
29 if (iv%sonde_sfc(n)%u%qc < 0) y%sonde_sfc(n)%u = 0.0
30 if (iv%sonde_sfc(n)%v%qc < 0) y%sonde_sfc(n)%v = 0.0
31 if (iv%sonde_sfc(n)%t%qc < 0) y%sonde_sfc(n)%t = 0.0
32 if (iv%sonde_sfc(n)%p%qc < 0) y%sonde_sfc(n)%p = 0.0
33 if (iv%sonde_sfc(n)%q%qc < 0) y%sonde_sfc(n)%q = 0.0
36 y%sonde_sfc(n)%u = y%sonde_sfc(n)%u/typical_u_rms
37 y%sonde_sfc(n)%v = y%sonde_sfc(n)%v/typical_v_rms
38 y%sonde_sfc(n)%t = y%sonde_sfc(n)%t/typical_t_rms
39 y%sonde_sfc(n)%p = y%sonde_sfc(n)%p/typical_p_rms
40 y%sonde_sfc(n)%q = y%sonde_sfc(n)%q/typical_q_rms
42 if (iv%info(sound)%proc_domain(1,n)) then
43 adjtest_lhs = adjtest_lhs &
44 + (y%sonde_sfc(n)%u)**2 &
45 + (y%sonde_sfc(n)%v)**2 &
46 + (y%sonde_sfc(n)%t)**2 &
47 + (y%sonde_sfc(n)%p)**2 &
48 + (y%sonde_sfc(n)%q)**2
51 pertile_lhs = pertile_lhs &
52 + (y%sonde_sfc(n)%u)**2 &
53 + (y%sonde_sfc(n)%v)**2 &
54 + (y%sonde_sfc(n)%t)**2 &
55 + (y%sonde_sfc(n)%p)**2 &
56 + (y%sonde_sfc(n)%q)**2
58 y%sonde_sfc(n)%u = y%sonde_sfc(n)%u/typical_u_rms
59 y%sonde_sfc(n)%v = y%sonde_sfc(n)%v/typical_v_rms
60 y%sonde_sfc(n)%t = y%sonde_sfc(n)%t/typical_t_rms
61 y%sonde_sfc(n)%p = y%sonde_sfc(n)%p/typical_p_rms
62 y%sonde_sfc(n)%q = y%sonde_sfc(n)%q/typical_q_rms
65 if (trace_use_dull) call da_trace_exit("da_check_xtoy_adjoint_sonde_sfc")
67 end subroutine da_check_xtoy_adjoint_sonde_sfc