Skip to content
Snippets Groups Projects
Commit b442352a authored by WAUTELET Philippe's avatar WAUTELET Philippe Committed by VIE Benoît
Browse files

Philippe 20/01/2021: bugfix: condition was wrong if HLES_AVG='H'. Budgets were not written.

(cherry picked from commit cb7345d0e6c373de6b9310858acc39266c4717d4)
parent 95ab2e64
No related branches found
No related tags found
No related merge requests found
......@@ -126,6 +126,12 @@ INTEGER :: IMI ! Current model inde
!
IF (.NOT. LLES) RETURN
!
IF (HLES_AVG=='A' &
.AND. (XLES_TEMP_MEAN_START==XUNDEF .OR. XLES_TEMP_MEAN_END==XUNDEF)) RETURN
IF (HLES_AVG=='E' .AND. CLES_NORM_TYPE=='NONE' ) RETURN
IF ( HLES_AVG == 'H' .AND. ( CLES_NORM_TYPE == 'NONE' &
.OR. XLES_TEMP_MEAN_START == XUNDEF .OR. XLES_TEMP_MEAN_END == XUNDEF ) ) RETURN
!
!* 1. Initializations
! ---------------
!
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment