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
… 2 (#2078)
TYPE: bug fix
KEYWORDS: radar DA
DESCRIPTION OF CHANGES:
Problem:
Duplicated allocation of avg_qws when choosing radar_rhv_opt = 2.
da_free_unit instead of da_get_unit for closing a file when radar_rhv_opt is equal to 2.
ISSUE: #2077
LIST OF MODIFIED FILES:
var/da/da_radar/da_get_innov_vector_radar.inc
In the file:
WRF/var/da/da_radar/da_get_innov_vector_radar.inc
line 277 & line 278 are the same (duplicate allocation)
allocate (avg_qws(tot_h_index,tot_z_index))
allocate (avg_qws(tot_h_index,tot_z_index))
When using radar_rhv_opt == 2 this is causes a runtime crash
Steps to reproduce the behavior:
USE_RADAR_RHV = T,
RADAR_RHV_OPT = 2,
Tested with intel classic compiler [ifort (IFORT) 2021.10.0 20230609]
Commenting out the duplicate line and recompiling fixes the problem for me
The text was updated successfully, but these errors were encountered: