InsulationAlarm Class |
Namespace: Flir.Atlas.Image.Alarms
public class InsulationAlarm : Alarm
The InsulationAlarm type exposes the following members.
Name | Description | |
---|---|---|
Equals | (Inherited from Object.) | |
GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
InsulationLimit |
Calculates the alarm insulation limit.
| |
InsulationLimit(Int32, Double, Double) |
Calculates the insulations the limit.
| |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
Name | Description | |
---|---|---|
IndoorAirTemperature |
Gets or sets the indoor air temperature in kelvin.
| |
InsulationFactor |
Gets or sets the insulation factor.
| |
IsoCoverage |
Gets or sets a value indicating whether [iso coverage].
(Inherited from Alarm.) | |
IsoCoverageThreshold |
Gets or sets the iso coverage threshold.
| |
IsoIndication |
Gets or sets a value indicating whether [iso indication].
(Inherited from Alarm.) | |
Isotherm |
Gets or sets the isotherm.
(Overrides AlarmIsotherm.) | |
MeasurementRectangle |
Gets or sets the measurment rectangle.
| |
Name |
Gets or sets the name.
(Inherited from Alarm.) | |
OutdoorAirTemperature |
Gets or sets the outdoor air temperature in kelvin.
| |
Reserved |
Gets or sets the reserved.
|
using Flir.Atlas.Image; using (ThermalImageFile image = new ThermalImageFile()) { if (image.Alarms.Count > 0) { InsulationAlarm alarm = image.Alarms[0] as InsulationAlarm; alarm.IndoorAirTemperature = TemperatureConverter.CelsiusToKelvin(20); alarm.OutdoorAirTemperature = TemperatureConverter.CelsiusToKelvin(10); alarm.InsulationFactor = 0.70; } }