updated top-level README and version_decl for V4.5 (#1847)
[WRF.git] / var / da / da_test / da_check_xtoy_adjoint_sound.inc
blobb085f7aa357cd47b053e7931a54d8812a973bc11
1 subroutine da_check_xtoy_adjoint_sound (iv, y, adjtest_lhs, pertile_lhs)
3    !-----------------------------------------------------------------------
4    ! Purpose: TBD
5    !-----------------------------------------------------------------------
7    implicit none
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, k          ! Loop counter.
15    if (trace_use_dull) call da_trace_entry("da_check_xtoy_adjoint_sound")
17    do n=iv%info(sound)%n1, iv%info(sound)%n2
18       do k=1, iv%info(sound)%levels(n)
19          if (iv%info(sound)%proc_domain(k,n)) then
20             adjtest_lhs = adjtest_lhs + &
21                           (y%sound(n)%u(k)/typical_u_rms)**2 + &
22                           (y%sound(n)%v(k)/typical_v_rms)**2 + &
23                           (y%sound(n)%t(k)/typical_t_rms)**2 + &
24                           (y%sound(n)%q(k)/typical_q_rms)**2
25          end if
26       end do
28       do k=1, iv%info(sound)%levels(n)
29          pertile_lhs = pertile_lhs + &
30                        (y%sound(n)%u(k)/typical_u_rms)**2 + &
31                        (y%sound(n)%v(k)/typical_v_rms)**2 + &
32                        (y%sound(n)%t(k)/typical_t_rms)**2 + &
33                        (y%sound(n)%q(k)/typical_q_rms)**2
35          y%sound(n)%u(k) = y%sound(n)%u(k) / typical_u_rms ** 2
36          y%sound(n)%v(k) = y%sound(n)%v(k) / typical_v_rms ** 2
37          y%sound(n)%t(k) = y%sound(n)%t(k) / typical_t_rms ** 2
38          y%sound(n)%q(k) = y%sound(n)%q(k) / typical_q_rms ** 2
39       end do
40    end do
42    if (trace_use_dull) call da_trace_exit("da_check_xtoy_adjoint_sound")
44 end subroutine da_check_xtoy_adjoint_sound