Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions Source/read.f90
Original file line number Diff line number Diff line change
Expand Up @@ -14923,6 +14923,12 @@ SUBROUTINE PROC_DEVC
WRITE(MESSAGE,'(4A)') 'ERROR(899): DEVC ',TRIM(DV%ID),' should not contain a ',SEPARATOR
CALL SHUTDOWN(MESSAGE) ; RETURN
ENDIF

COMMA_POSITION = INDEX(DV%ID,'+')
IF (COMMA_POSITION>0) THEN
WRITE(MESSAGE,'(3A)') 'ERROR(899): DEVC ',TRIM(DV%ID),' should not contain a + sign.'
CALL SHUTDOWN(MESSAGE) ; RETURN
ENDIF

! Check for HVAC outputs with no HVAC inputs

Expand Down
Loading