You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In cmn_met.f90:
!// Winds(U & V), water(Q), temperature(T), surf press(P)
real(r8), dimension(IPAR,JPAR,LPAR) :: U, V, Q, T
BUT
!// 3D fields set up for column treatment (LPAR,IPAR,JPAR)
real(r8), dimension(LPAR,IPAR,JPAR) :: &
PVU, & !// Potential vorticity
UMS, & !// Winds [m/s] (used in physics routines, not in transport)
VMS !// Winds [m/s] (used in physics routines, not in transport)
real(r8), dimension(LPAR+1,IPAR,JPAR) :: ZOFLE
This is really dangerous and could lead to wrong assessments. Should be changed in the future.
The text was updated successfully, but these errors were encountered:
In cmn_met.f90:
!// Winds(U & V), water(Q), temperature(T), surf press(P)
real(r8), dimension(IPAR,JPAR,LPAR) :: U, V, Q, T
BUT
!// 3D fields set up for column treatment (LPAR,IPAR,JPAR)
real(r8), dimension(LPAR,IPAR,JPAR) :: &
PVU, & !// Potential vorticity
UMS, & !// Winds [m/s] (used in physics routines, not in transport)
VMS !// Winds [m/s] (used in physics routines, not in transport)
real(r8), dimension(LPAR+1,IPAR,JPAR) :: ZOFLE
This is really dangerous and could lead to wrong assessments. Should be changed in the future.
The text was updated successfully, but these errors were encountered: