-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathPhasorValue.cs
187 lines (162 loc) · 7.52 KB
/
PhasorValue.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
//******************************************************************************************************
// PhasorValue.cs - Gbtc
//
// Copyright © 2012, Grid Protection Alliance. All Rights Reserved.
//
// Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See
// the NOTICE file distributed with this work for additional information regarding copyright ownership.
// The GPA licenses this file to you under the MIT License (MIT), the "License"; you may
// not use this file except in compliance with the License. You may obtain a copy of the License at:
//
// http://www.opensource.org/licenses/MIT
//
// Unless agreed to in writing, the subject software distributed under the License is distributed on an
// "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Refer to the
// License for the specific language governing permissions and limitations.
//
// Code Modification History:
// ----------------------------------------------------------------------------------------------------
// 11/12/2004 - J. Ritchie Carroll
// Generated original version of source code.
// 09/15/2009 - Stephen C. Wills
// Added new header and license agreement.
// 12/17/2012 - Starlynn Danyelle Gilliam
// Modified Header.
//
//******************************************************************************************************
using System;
using System.Collections.Generic;
using System.Runtime.Serialization;
using GSF.Units;
namespace GSF.PhasorProtocols.IEEEC37_118
{
/// <summary>
/// Represents the IEEE C37.118 implementation of a <see cref="IPhasorValue"/>.
/// </summary>
[Serializable]
public class PhasorValue : PhasorValueBase
{
#region [ Constructors ]
/// <summary>
/// Creates a new <see cref="PhasorValue"/>.
/// </summary>
/// <param name="parent">The <see cref="IDataCell"/> parent of this <see cref="PhasorValue"/>.</param>
/// <param name="phasorDefinition">The <see cref="IPhasorDefinition"/> associated with this <see cref="PhasorValue"/>.</param>
public PhasorValue(IDataCell parent, IPhasorDefinition phasorDefinition)
: base(parent, phasorDefinition)
{
}
/// <summary>
/// Creates a new <see cref="PhasorValue"/> from specified parameters.
/// </summary>
/// <param name="parent">The <see cref="DataCell"/> parent of this <see cref="PhasorValue"/>.</param>
/// <param name="phasorDefinition">The <see cref="PhasorDefinition"/> associated with this <see cref="PhasorValue"/>.</param>
/// <param name="real">The real value of this <see cref="PhasorValue"/>.</param>
/// <param name="imaginary">The imaginary value of this <see cref="PhasorValue"/>.</param>
public PhasorValue(DataCell parent, PhasorDefinition phasorDefinition, double real, double imaginary)
: base(parent, phasorDefinition, real, imaginary)
{
}
/// <summary>
/// Creates a new <see cref="PhasorValue"/> from specified parameters.
/// </summary>
/// <param name="parent">The <see cref="DataCell"/> parent of this <see cref="PhasorValue"/>.</param>
/// <param name="phasorDefinition">The <see cref="PhasorDefinition"/> associated with this <see cref="PhasorValue"/>.</param>
/// <param name="angle">The <see cref="Angle"/> value (a.k.a., the argument) of this <see cref="PhasorValue"/>, in radians.</param>
/// <param name="magnitude">The magnitude value (a.k.a., the absolute value or modulus) of this <see cref="PhasorValue"/>.</param>
public PhasorValue(DataCell parent, PhasorDefinition phasorDefinition, Angle angle, double magnitude)
: base(parent, phasorDefinition, angle, magnitude)
{
}
/// <summary>
/// Creates a new <see cref="PhasorValue"/> from serialization parameters.
/// </summary>
/// <param name="info">The <see cref="SerializationInfo"/> with populated with data.</param>
/// <param name="context">The source <see cref="StreamingContext"/> for this deserialization.</param>
protected PhasorValue(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
#endregion
#region [ Properties ]
/// <summary>
/// Gets or sets the <see cref="DataCell"/> parent of this <see cref="PhasorValue"/>.
/// </summary>
public new virtual DataCell Parent
{
get => base.Parent as DataCell;
set => base.Parent = value;
}
/// <summary>
/// Gets or sets the <see cref="PhasorDefinition"/> associated with this <see cref="PhasorValue"/>.
/// </summary>
public new virtual PhasorDefinition Definition
{
get => base.Definition as PhasorDefinition;
set => base.Definition = value;
}
/// <summary>
/// Gets or sets the <see cref="PhasorDefinition3"/> associated with this <see cref="PhasorValue"/>.
/// </summary>
public virtual PhasorDefinition3 Definition3
{
get => base.Definition as PhasorDefinition3;
set => base.Definition = value;
}
/// <summary>
/// Gets or sets the unscaled integer representation of the real value of this <see cref="PhasorValue"/>.
/// </summary>
public override int UnscaledReal
{
get => double.IsNaN(Real) ? short.MinValue : base.UnscaledReal;
set
{
if (value <= short.MinValue)
Real = double.NaN;
else
base.UnscaledReal = value;
}
}
/// <summary>
/// Gets or sets the unscaled integer representation of the imaginary value of this <see cref="PhasorValue"/>.
/// </summary>
public override int UnscaledImaginary
{
get => double.IsNaN(Imaginary) ? short.MinValue : base.UnscaledImaginary;
set
{
if (value <= short.MinValue)
Imaginary = double.NaN;
else
base.UnscaledImaginary = value;
}
}
/// <summary>
/// <see cref="Dictionary{TKey,TValue}"/> of string based property names and values for the <see cref="AnalogValueBase"/> object.
/// </summary>
public override Dictionary<string, string> Attributes
{
get
{
PhasorDefinition3 definition3 = Definition3;
if (definition3 is null)
return base.Attributes;
Dictionary<string, string> baseAttributes = base.Attributes;
baseAttributes.Add("Angle Value Scaled", $"{Angle.ToDegrees() + definition3.AngleAdder}°");
baseAttributes.Add("Magnitude Value Scaled", $"{Magnitude * definition3.MagnitudeMultiplier}");
return baseAttributes;
}
}
#endregion
#region [ Static ]
// Static Methods
// Delegate handler to create a new IEEE C37.118 phasor value
internal static IPhasorValue CreateNewValue(IDataCell parent, IPhasorDefinition definition, byte[] buffer, int startIndex, out int parsedLength)
{
IPhasorValue phasor = new PhasorValue(parent, definition);
parsedLength = phasor.ParseBinaryImage(buffer, startIndex, 0);
return phasor;
}
#endregion
}
}