📄 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 + -