Skip to content

Commit

Permalink
change all-upper case to pascal-case
Browse files Browse the repository at this point in the history
  • Loading branch information
Yujie Xu committed Jul 23, 2024
1 parent cf3b3c5 commit 7dd6720
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Transition/CreateNewIDFUsingRulesV24_2_0.f90
Original file line number Diff line number Diff line change
Expand Up @@ -578,14 +578,14 @@ SUBROUTINE CreateNewIDFUsingRules(EndOfFile,DiffOnly,InLfn,AskForInput,InputFile
OutArgs(1:13) = InArgs(1:13)
IF (SameString(InArgs(14), 'FAN:VARIABLEVOLUME')) THEN
isVariableVolume = .TRUE.
OutArgs(14) = 'FAN:SYSTEMMODEL'
OutArgs(14) = 'Fan:SystemModel'
OutArgs(15) = TRIM(InArgs(15))
sysFanName = TRIM(InArgs(15))
ELSE
OutArgs(14:15) = InArgs(14:15)
ENDIF
OutArgs(16:CurArgs) = InArgs(16:CurArgs)
CALL WriteOutIDFLines(DifLfn, 'ZONEHVAC:TERMINALUNIT:VARIABLEREFRIGERANTFLOW', CurArgs, OutArgs, NwFldNames, NwFldUnits)
CALL WriteOutIDFLines(DifLfn, 'ZoneHVAC:TerminalUnit:VariableRefrigerantFlow', CurArgs, OutArgs, NwFldNames, NwFldUnits)

IF (isVariableVolume) THEN
! create fan system model object
Expand Down

0 comments on commit 7dd6720

Please sign in to comment.