Skip to content
Closed
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/LK1/L1A/LOADB.f90
Original file line number Diff line number Diff line change
Expand Up @@ -1174,6 +1174,12 @@ SUBROUTINE READ_BDF_LINE(IN1, IOCHK, LINE)
TRIM_LINE = TRIM(LINE)
ENDDO

! Skip capitalizing OUTPUT4 and PARTN, which are executive control commands
! because matrix names like "KRRcb" in their fields are case sensitive.
IF ((LINE(1: 7) == 'OUTPUT4') .OR. (LINE(1: 5) == 'PARTN' )) THEN
RETURN
ENDIF

DO I = 1,256
! remove $
IF (LINE(I:I) == '$') THEN
Expand Down
Loading