Skip to content

Commit

Permalink
update frequency grid in IDF
Browse files Browse the repository at this point in the history
atcFrequencyGridSource: not to round return period into whole number
clsIDFplugin: add constituent to trend attribute list
  • Loading branch information
TongZhai committed Jun 14, 2017
1 parent a04e572 commit 7b119d9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion atcIntegratedDesignFlow/atcFrequencyGridSource.vb
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ Public Class atcFrequencyGridSource
For Each lNYears As Double In aNyears
lKey = Format(lNYears, lKeyFmt)
If Not pRecurrence.ContainsKey(lKey) Then
pRecurrence.Add(lKey, Format(lNYears, "0"))
'pRecurrence.Add(lKey, Format(lNYears, "0"))
pRecurrence.Add(lKey, lNYears)
End If
Next
End If
Expand Down
1 change: 1 addition & 0 deletions atcIntegratedDesignFlow/clsIDFPlugin.vb
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ Public Class clsIDFPlugin
.Add("Not Used")
.Add("Min")
.Add("Max")
.Add("Constituent")
End With
Return lTrendAttributes
End Function
Expand Down

0 comments on commit 7b119d9

Please sign in to comment.