FE-Project
Loading...
Searching...
No Matches
Functions/Subroutines
scale_coriolis_param Module Reference

module common / Coriolis parameter More...

Functions/Subroutines

subroutine, public get_coriolis_parameter (coriolis, colioris_type, np, y, f0, beta, y0, lat)
 

Detailed Description

module common / Coriolis parameter

Description
Setup coriolis parameter (for regional model)
Reference
Author
Yuta Kawai, Team SCALE

Function/Subroutine Documentation

◆ get_coriolis_parameter()

subroutine, public scale_coriolis_param::get_coriolis_parameter ( real(rp), dimension(np), intent(out) coriolis,
character(*), intent(in) colioris_type,
integer, intent(in) np,
real(rp), dimension(np), intent(in), optional y,
real(rp), intent(in), optional f0,
real(rp), intent(in), optional beta,
real(rp), intent(in), optional y0,
real(rp), dimension(np), intent(in), optional lat )

Definition at line 38 of file scale_coriolis_param.F90.

43
44 implicit none
45
46 integer, intent(in) :: Np
47 real(RP), intent(out) :: coriolis(Np)
48 character(*), intent(in) :: COLIORIS_type
49 real(RP), intent(in), optional :: y(Np)
50 real(RP), intent(in), optional :: f0
51 real(RP), intent(in), optional :: beta
52 real(RP), intent(in), optional :: y0
53 real(RP), intent(in), optional :: lat(Np)
54
55 integer :: i
56 !------------------------------------------
57
58 if ( trim(colioris_type) == 'PLANE' ) then
59 if ( ( .not. present(f0) ) .or. ( .not. present(beta) ) &
60 .or. ( .not. present(y) ) .or. ( .not. present(y0) ) ) then
61 log_error('get_coriolis_parameter',*) 'If COLIORIS_type is set to PLANE, f0 and beta must be passed. Check!'
62 call prc_abort
63 end if
64 !$omp parallel do
65 do i=1, np
66 coriolis(i) = f0 + beta * ( y(i) - y0 )
67 end do
68 else if ( trim(colioris_type) == 'SPHERE' ) then
69 if ( .not. present(lat) ) then
70 log_error('get_coriolis_parameter',*) 'If COLIORIS_type is set to SPHERE, lat must be passed. Check!'
71 call prc_abort
72 end if
73 !$omp parallel do
74 do i=1, np
75 coriolis(i) = 2.0_rp * ohm * sin( lat(i) )
76 end do
77 else if ( trim(colioris_type) == 'NONE' ) then
78 !$omp parallel do
79 do i=1, np
80 coriolis(i) = 0.0_rp
81 end do
82 else
83 log_error('get_coriolis_parameter',*) 'Unexpected COLIORIS_type is specified. Check! COLIORIS_type=', colioris_type
84 call prc_abort
85 end if
86
87 return

Referenced by mod_atmos_dyn::atmosdyn_setup().