Administrator Guide
[Description("Percentage of time the fan speed was between 3100 and 3500 RPMs.")]
sint16 RPM_3100_3500_Pct;
[Description("Percentage of time the fan speed was between 3500 and 4000 RPMs.")]
sint16 RPM_3500_4000_Pct;
[Description("Percentage of time the fan speed was between 4000 and 4500 RPMs.")]
sint16 RPM_4000_4500_Pct;
[Description("Percentage of time the fan speed was between 4500 and 5000 RPMs.")]
sint16 RPM_4500_5000_Pct;
[Description("Percentage of time the fan speed was between 5000 and 5500 RPMs.")]
sint16 RPM_5000_5500_Pct;
[Description("Percentage of time the fan speed was between 5500 and 6000 RPMs.")]
sint16 RPM_5500_6000_Pct;
[Description("Percentage of time the fan speed was more than 6000 RPMs.")]
sint16 RPM_GT6000_Pct;
};
/**************************************************************
* DPO_HardwareInfoToDTFan
* This class associates DPO_DTFan instance(s) with an
* instance of DPO_HardwareInfo.
**************************************************************/ [Association : ToInstance,
Description("This class associates DPO_DTFan instance(s) with " " an instance of
DPO_HardwareInfo"),
dynamic:ToInstance, PROVIDER("DPOProv"):ToInstance
]
class DPO_HardwareInfoToDTFan
{
[key] DPO_HardwareInfo REF Antecedent;
[key] DPO_DTFan REF Dependent;
};
/**************************************************************
* DPO_Thermistor
* This has the thermal information from a summary log. There
* may be multiple instances of this class for each summary file.
**************************************************************/
[Description("Thermal data from the hardware or BIOS."), Dynamic,Provider("DPOProv") ]
class DPO_Thermistor
{
[
Description("Unique ID from the summary file."),
Key
] string HardwareInfoGUID;
[
Description("Thermistor index number starting from 0."),
Key
] sint16 Index;
[Description("Thermistor location eg CPU, Memory etc.")]
string Location;
[Description("Temperature read from the thermistor when the summary log was generated.")]
sint16 Temp;
[Description("Maximum temperature read from the thermistor.")]
sint16 Peak_Temp;
[Description("Average temperature read from the thermistor.")]
real32 Avg_Temp;
[Description("Minimum temperature read from the thermistor.")]
sint16 Min_Temp;
[Description("Standard deviation of temperature read from the thermistor.")]
real32 Std_Dev_Temp;
付録 B - WMI クラス定義ファイル 39