45 use scale_const,
only: &
48 rplanet => const_radius
52 integer,
intent(in) :: np
53 real(rp),
intent(out) :: topo(np)
54 real(rp),
intent(in) :: u0
55 real(rp),
intent(in) :: eta0
56 real(rp),
intent(in) :: lat(np)
58 real(rp) :: sin_lat(np)
59 real(rp) :: sin_lat_pow_6(np)
60 real(rp) :: cos_lat(np)
65 sin_lat(:) = sin(lat(:))
66 sin_lat_pow_6(:) = sin_lat(:)**6
67 cos_lat(:) = cos(lat(:))
69 tmp = cos( (1.0_rp - eta0) * 0.5_rp * pi )
70 tmp = u0 * tmp * sqrt(tmp)
74 ( tmp * ( - 2.0_rp * sin_lat_pow_6(:) * ( cos_lat(:)**2 + 1.0_rp / 3.0_rp ) + 10.0_rp / 63.0_rp ) &
75 + rplanet * ohm * ( 8.0_rp / 5.0_rp * cos_lat(:)**3 * ( sin_lat(:)**2 + 2.0_rp / 3.0_rp ) - 0.25_rp * pi ) &
subroutine, public mktopoutil_barocwave_global_jw2006_calc_topo(topo, u0, eta0, lat, np)
Calculate a topography for a global test case of idealized baroclinic wave in Jablonowski and William...