Newer
Older
Public Class cEmComp
Public Name As String
'IDstring:
' Def-Komponente: IDstring = sKey (upper case)
' Cstm-Komponente (tMapComp.Undefined): IDstring = Name (upper case)
Public IDstring As String
Public Unit As String
Public IntpolV2 As Boolean
Public PeCorMode As tIntpPeCorMode
Public NormID As tEmNorm
Public MapCompID As tMapComp = tMapComp.Undefined
Public Col As Integer
Public RawVals As System.Collections.Generic.List(Of Single) 'RawVals darf man extern verändern aber nicht mit "New" neu definieren weil sonst stimmt FinalVals-Referenz nicht mehr
Public TCVals As System.Collections.Generic.List(Of Single) 'Werte nach Dyn-Kor
Public ATVals As System.Collections.Generic.List(Of Single) 'Werte nach EXS
Public FinalVals As System.Collections.Generic.List(Of Single) 'Verweist immer auf das letzte Feld (Tailpipe)
'Transient Correction
Private bTCdef As Boolean
Public TCfactors As System.Collections.Generic.Dictionary(Of tMapComp, Double)
'Component is dumped every one second
Public WriteOutput As Boolean
Private bATdef As Boolean
Public FinalAvg As Single 'Durchschnittswert [g/h]
Private FinalSum As Single 'Summe [g]
Private FinalAvgPos As Single 'Durchschnittswert ohne negative Werte [g/h]
Private FinalSumPos As Single 'Summe ohne negative Werte [g]
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
Public Sub New()
RawVals = New System.Collections.Generic.List(Of Single)
FinalVals = RawVals
bTCdef = False
bATdef = False
IntpolV2 = False 'WICHTIG: Beim Einlesen von Map ist das hier der Standard für Nicht-Default-Komponenten!
PeCorMode = tIntpPeCorMode.PeCorOff 'WICHTIG: Beim Einlesen von Map ist das hier der Standard für Nicht-Default-Komponenten!
NormID = tEmNorm.x
WriteOutput = True
End Sub
Public Sub InitTC()
bTCdef = True
TCfactors = New System.Collections.Generic.Dictionary(Of tMapComp, Double)
TCfactors.Add(tMapComp.TCdP2s, 0)
TCfactors.Add(tMapComp.TCPneg3s, 0)
TCfactors.Add(tMapComp.TCPpos3s, 0)
TCfactors.Add(tMapComp.TCAmpl3s, 0)
TCfactors.Add(tMapComp.TCLW3p3s, 0)
TCfactors.Add(tMapComp.TCP40sABS, 0)
TCfactors.Add(tMapComp.TCabsdn2s, 0)
TCfactors.Add(tMapComp.TCP10sn10s3, 0)
TCfactors.Add(tMapComp.TCdynV, 0)
TCfactors.Add(tMapComp.TCdynAV, 0)
TCfactors.Add(tMapComp.TCdynDAV, 0)
End Sub
Public Sub InitAT()
bATdef = True
End Sub
Public ReadOnly Property RawUnit As String
Get
Dim txt As String
txt = Me.Unit
txt = txt.Replace("[", "")
txt = txt.Replace("]", "")
If NormID = tEmNorm.x OrElse Not txt.Contains("/") Then
Return txt
Else
Return Left(txt, txt.IndexOf("/"))
End If
End Get
End Property
Public ReadOnly Property TCdef() As Boolean
Get
Return bTCdef
End Get
End Property
Public ReadOnly Property ATdef() As Boolean
Get
Return bATdef
End Get
End Property
Public Sub SumCalc()
Dim x As Single
Dim sum As Double
Dim sumPos As Double
sum = 0
sumPos = 0
For Each x In FinalVals
sum += x
sumPos += Math.Max(x, 0)
Next
FinalAvg = CSng(sum / FinalVals.Count)
FinalAvgPos = CSng(sumPos / FinalVals.Count)
Select Case NormID
Case tEmNorm.x
FinalSum = sum
FinalSumPos = sumPos
Case Else 'tEmNorm.x_h, tEmNorm.x_hPnenn, tEmNorm.x_kWh
FinalSum = sum / 3600
FinalSumPos = sumPos / 3600
End Select
End Sub