Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix NREL#10895 - Use unique TableLookup names to avoid duplicates
```bash diff -u testfiles/HVACTemplate-5ZonePTAC-DOAS-TwoHX-ori/eplusout.expidf testfiles/HVACTemplate-5ZonePTAC-DOAS-TwoHX/eplusout.expidf ``` ```diff --- testfiles/HVACTemplate-5ZonePTAC-DOAS-TwoHX-ori/eplusout.expidf 2025-01-23 10:15:14.389466278 +0100 +++ testfiles/HVACTemplate-5ZonePTAC-DOAS-TwoHX/eplusout.expidf 2025-01-23 10:17:46.386621036 +0100 @@ -3469,13 +3469,13 @@ , !- Initial Defrost Time Fraction {dimensionless} , !- Rate of Defrost Time Fraction Increase {1/K} No, !- Economizer Lockout - DOAS SenEffectivenessTable, !- Sensible Effectiveness of Heating Air Flow Curve Name + DOAS Cooling Coil Heat Exchanger SenEffectivenessTable, !- Sensible Effectiveness of Heating Air Flow Curve Name , !- Latent Effectiveness of Heating Air Flow Curve Name - DOAS SenEffectivenessTable, !- Sensible Effectiveness of Cooling Air Flow Curve Name + DOAS Cooling Coil Heat Exchanger SenEffectivenessTable, !- Sensible Effectiveness of Cooling Air Flow Curve Name ; !- Latent Effectiveness of Cooling Air Flow Curve Name Table:IndependentVariable, - DOAS airFlowRatio, !- Name + DOAS Cooling Coil Heat Exchanger airFlowRatio, !- Name Linear, !- Interpolation Method Linear, !- Extrapolation Method 0.0, !- Minimum Value @@ -3489,12 +3489,12 @@ 1.0; !- Value 2 Table:IndependentVariableList, - DOAS effIndVarList, !- Name - DOAS airFlowRatio; !- Independent Variable 1 Name + DOAS Cooling Coil Heat Exchanger effIndVarList, !- Name + DOAS Cooling Coil Heat Exchanger airFlowRatio; !- Independent Variable 1 Name Table:Lookup, - DOAS SenEffectivenessTable, !- Name - DOAS effIndVarList, !- Independent Variable List Name + DOAS Cooling Coil Heat Exchanger SenEffectivenessTable, !- Name + DOAS Cooling Coil Heat Exchanger effIndVarList, !- Independent Variable List Name DivisorOnly, !- Normalization Method 0.699999988, !- Normalization Divisor 0.0, !- Minimum Output @@ -3719,13 +3719,13 @@ 0.083, !- Initial Defrost Time Fraction 0.012, !- Rate of Defrost Time Fraction Increase Yes, !- Economizer Lockout - DOAS SenEffectivenessTable, !- Sensible Effectiveness of Heating Air Flow Curve Name - DOAS LatEffectivenessTable, !- Latent Effectiveness of Heating Air Flow Curve Name - DOAS SenEffectivenessTable, !- Sensible Effectiveness of Cooling Air Flow Curve Name - DOAS LatEffectivenessTable; !- Latent Effectiveness of Cooling Air Flow Curve Name + DOAS Heat Recovery SenEffectivenessTable, !- Sensible Effectiveness of Heating Air Flow Curve Name + DOAS Heat Recovery LatEffectivenessTable, !- Latent Effectiveness of Heating Air Flow Curve Name + DOAS Heat Recovery SenEffectivenessTable, !- Sensible Effectiveness of Cooling Air Flow Curve Name + DOAS Heat Recovery LatEffectivenessTable; !- Latent Effectiveness of Cooling Air Flow Curve Name Table:IndependentVariable, - DOAS airFlowRatio, !- Name + DOAS Heat Recovery airFlowRatio, !- Name Linear, !- Interpolation Method Linear, !- Extrapolation Method 0.0, !- Minimum Value @@ -3739,12 +3739,12 @@ 1.0; !- Value 2 Table:IndependentVariableList, - DOAS effIndVarList, !- Name - DOAS airFlowRatio; !- Independent Variable 1 Name + DOAS Heat Recovery effIndVarList, !- Name + DOAS Heat Recovery airFlowRatio; !- Independent Variable 1 Name Table:Lookup, - DOAS SenEffectivenessTable, !- Name - DOAS effIndVarList, !- Independent Variable List Name + DOAS Heat Recovery SenEffectivenessTable, !- Name + DOAS Heat Recovery effIndVarList, !- Independent Variable List Name DivisorOnly, !- Normalization Method 0.699999988, !- Normalization Divisor 0.0, !- Minimum Output @@ -3757,8 +3757,8 @@ 0.699999988; !- Value 2 Table:Lookup, - DOAS LatEffectivenessTable, !- Name - DOAS effIndVarList, !- Independent Variable List Name + DOAS Heat Recovery LatEffectivenessTable, !- Name + DOAS Heat Recovery effIndVarList, !- Independent Variable List Name DivisorOnly, !- Normalization Method 0.649999976, !- Normalization Divisor 0.0, !- Minimum Output ```
- Loading branch information