33 type(
qg_gom),
intent(in) :: gom
35 real(kind_real),
intent(in) :: bias
41 if (abs(bias)>epsilon(bias))
call abor1_ftn (
'qg_wspeed_equiv: bias not implemented')
45 hofx%values(1,iobs) = sqrt(gom%u(iobs)*gom%u(iobs)+gom%v(iobs)*gom%v(iobs))
56 type(
qg_gom),
intent(in) :: gom
58 type(
qg_gom),
intent(in) :: traj
59 real(kind_real),
intent(in) :: bias
63 real(kind_real) :: zu,zv,zt
69 zt = sqrt(zu**2+zv**2)
70 if (zt>epsilon(zt))
then
71 hofx%values(1,iobs) = (zu*gom%u(iobs)+zv*gom%v(iobs))/zt
73 hofx%values(1,iobs) = 0.0
85 type(
qg_gom),
intent(inout) :: gom
87 type(
qg_gom),
intent(in) :: traj
88 real(kind_real),
intent(inout) :: bias
92 real(kind_real) :: zu,zv,zt
98 zt = sqrt(zu**2+zv**2)
99 if (zt>epsilon(zt))
then
100 gom%u(iobs) = zu*hofx%values(1,iobs)/zt
101 gom%v(iobs) = zv*hofx%values(1,iobs)/zt
116 type(
qg_gom),
intent(in) :: gom
117 type(
qg_gom),
intent(inout) :: traj
124 traj%u(iobs) = gom%u(iobs)
125 traj%v(iobs) = gom%v(iobs)
Fortran interface to Variables.
Fortran module to handle wind speed observations for the QG model.
subroutine, public qg_wspeed_equiv_ad(gom, hofx, traj, bias)
Get equivalent for wind speed - adjoint.
subroutine, public qg_wspeed_equiv(gom, hofx, bias)
Get equivalent for wind speed.
subroutine, public qg_wspeed_settraj(gom, traj)
Set wind speed trajectory.
subroutine, public qg_wspeed_equiv_tl(gom, hofx, traj, bias)
Get equivalent for wind speed - tangent linear.