Skip to content

Commit

Permalink
Added FORTRAN transition rules
Browse files Browse the repository at this point in the history
  • Loading branch information
nigusse committed Feb 19, 2021
1 parent c384022 commit 518be1d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/Transition/CreateNewIDFUsingRulesV9_5_0.f90
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,7 @@ SUBROUTINE CreateNewIDFUsingRules(EndOfFile,DiffOnly,InLfn,AskForInput,InputFile
! If your original object starts with A, insert the rules here

! If your original object starts with C, insert the rules here

CASE('CONSTRUCTION:AIRBOUNDARY')
CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits)
nodiff=.false.
Expand Down Expand Up @@ -630,6 +631,17 @@ SUBROUTINE CreateNewIDFUsingRules(EndOfFile,DiffOnly,InLfn,AskForInput,InputFile

! If your original object starts with Z, insert the rules here

CASE('ZONEAIRMASSFLOWCONSERVATION')
CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits)
nodiff=.false.
OutArgs(1:CurArgs)=InArgs(1:CurArgs)
IF (OutArgs(1) == "YES" .OR. OutArgs(1) == "Yes" .OR. OutArgs(1) == "yes") THEN
OutArgs(1) = "AdjustMixingOnly"
END IF
IF (OutArgs(1) == "NO" .OR. OutArgs(1) == "No" .OR. OutArgs(1) == "no") THEN
OutArgs(1) = "None"
END IF

CASE('ZONEHVAC:LOWTEMPERATURERADIANT:VARIABLEFLOW')
CALL GetNewObjectDefInIDD(ObjectName,NwNumArgs,NwAorN,NwReqFld,NwObjMinFlds,NwFldNames,NwFldDefaults,NwFldUnits)
OutArgs(1)=InArgs(1)
Expand Down

1 comment on commit 518be1d

@nrel-bot-3
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

176230951_AirTransferModel (Unknown) - x86_64-MacOS-10.15-clang-11.0.0: Tests Failed (2453 of 3038 tests passed, 133 test warnings)

Messages:\n

  • 718 tests had: EIO diffs.
  • 585 tests had: Table big diffs.

Failures:\n

regression Test Summary

  • Passed: 134
  • Failed: 585

Build Badge Test Badge

Please sign in to comment.