Click or drag to resize
InsulationAlarm Class
Represents an insulation alarm.
Inheritance Hierarchy

Namespace: Flir.Atlas.Image.Alarms
Assembly: Flir.Atlas.Image (in Flir.Atlas.Image.dll) Version: 3.1
Syntax
C#
public class InsulationAlarm : Alarm

The InsulationAlarm type exposes the following members.

Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInsulationLimit
Calculates the alarm insulation limit.
Public methodStatic memberInsulationLimit(Int32, Double, Double)
Calculates the insulations the limit.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyIndoorAirTemperature
Gets or sets the indoor air temperature in kelvin.
Public propertyInsulationFactor
Gets or sets the insulation factor.
Public propertyIsoCoverage
Gets or sets a value indicating whether [iso coverage].
(Inherited from Alarm.)
Public propertyIsoCoverageThreshold
Gets or sets the iso coverage threshold.
Public propertyIsoIndication
Gets or sets a value indicating whether [iso indication].
(Inherited from Alarm.)
Public propertyIsotherm
Gets or sets the isotherm.
(Overrides AlarmIsotherm.)
Public propertyMeasurementRectangle
Gets or sets the measurment rectangle.
Public propertyName
Gets or sets the name.
(Inherited from Alarm.)
Public propertyOutdoorAirTemperature
Gets or sets the outdoor air temperature in kelvin.
Public propertyReserved
Gets or sets the reserved.
Top
Examples
C#
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;
                     }
                 }
See Also