?? dynconst.f90
字號:
module dynconst!! Constants used in dynamics! use precision, only: r8 use shr_const_mod, only: shr_const_omega, shr_const_rearth implicit none private public dynconsti real(r8), public, parameter :: omega = shr_const_omega ! Angular velocity of Earth's rotation real(r8), public, parameter :: rearth = shr_const_rearth ! Radius of the earth real(r8), public, parameter :: ra = 1.0 / rearth ! Reciprocal of earth radius real(r8), public, save :: ez ! Coriolis expansion coeff -> omega/sqrt(0.375)containssubroutine dynconsti ez = omega / sqrt(0.375)end subroutine dynconstiend module dynconst
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -