FE-Project
Loading...
Searching...
No Matches
mod_mktopo_util.F90
Go to the documentation of this file.
1!-------------------------------------------------------------------------------
10!-------------------------------------------------------------------------------
11#include "scalelib.h"
13 !-----------------------------------------------------------------------------
14 !
15 !++ used modules
16 !
17 use scale_precision
18 use scale_io
19 use scale_prc
20
21 use scale_const, only: &
22 pi => const_pi
23
24 !-----------------------------------------------------------------------------
25 implicit none
26 private
27 !-----------------------------------------------------------------------------
28 !
29 !++ Public procedure
30 !
32
33contains
34
35 !-----------------------------------------------------------------------------
41!OCL SERIAL
43 U0, ETA0, lat, Np )
44
45 use scale_const, only: &
46 ohm => const_ohm, &
47 grav => const_grav, &
48 rplanet => const_radius
49
50 implicit none
51
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)
57
58 real(rp) :: sin_lat(np)
59 real(rp) :: sin_lat_pow_6(np)
60 real(rp) :: cos_lat(np)
61
62 real(rp ) :: tmp
63 !-------------------------------------------
64
65 sin_lat(:) = sin(lat(:))
66 sin_lat_pow_6(:) = sin_lat(:)**6
67 cos_lat(:) = cos(lat(:))
68
69 tmp = cos( (1.0_rp - eta0) * 0.5_rp * pi )
70 tmp = u0 * tmp * sqrt(tmp)
71
72 ! Calc horizontal variation of geopotential height
73 topo(:) = 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 ) &
76 ) / grav
77
78 return
80
81end module mod_mktopo_util
module Utility for mktopo
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...