QueryType类型
主要是对功率和温度的查询
?
A query can be for the minimum, maximum or average temperature or power usage over the sample period. Each query can be for either a single node or a group of nodes.
PmaxN, PavgN, and PminN represent one power measurement of node N over the sample period.
Similarly, TmaxN, TavgN, and TminN represent one temperature measurement of node N over the sample period.
?
分类:MAX_PWR?,AVG_PWR和MIN_PWR是一批;
MAX_AVG_PWR和MIN_AVG_PWR?是一批;
TOTAL_MAX_PWR,TOTAL_AVG_PWR和TOTAL_MIN_PWR是一批;
MAX_INLET_TEMP,AVG_INLET_TEMP和MIN_INLET_TEMP是一批。
<!-- doxytag: member="MAX_PWR" ref="ggabfbb64a2ec7afa6cbb18aa171775c9ec" args="" -->MAX_PWR?The maximum power consumed by any single node within the specified entity:
Max(Pmax1, Pmax2, "...", PmaxN)
.
先分别对N个node取得各自最大功率,再求出N个值中的最大值。
?
<!-- doxytag: member="AVG_PWR" ref="ggabfbb64a2ec7afa6cbb18aa171775c9ec" args="" -->AVG_PWR?The average power consumption across all nodes within the specified entity:
Avg(Pavg1, Pavg2, "...", PavgN)
.
先分别对N个node取得各自平均功率,再求出N个值的平均值。
?
<!-- doxytag: member="MIN_PWR" ref="ggabfbb64a2ec7afa6cbb18aa171775c9ec" args="" -->MIN_PWR?The minimum power consumed by any single node within the specified entity:
Min(Pmin1, Pmin2, "..." , PminN)
.
先分别对N个node取得各自最小功率,再求出N个值中的最小值。
?
<!-- doxytag: member="MAX_AVG_PWR" ref="ggabfbb64a2ec7afa6cbb18aa171775c9ec" args="" -->MAX_AVG_PWR?The maximum group sampling (in a monitoring cycle) power in specified aggregation period for the sum of average power measurement in a group of nodes within the specified entity.
Since: DCM SDK 1.5The maximum group sampling (in a monitoring cycle) power in specified aggregation period for sum of maximum power measurement in a group of nodes within the specified entity.
Redefined in DCM SDK 1.5
entity: Max(Sum_t1(Pmax1, Pmax2, ... , PmaxN),
Sum_t2(Pmax1, Pmax2, ... , PmaxN),
...
Sum_tn(Pmax1, Pmax2, ... , PmaxN))
?
The average (in specified aggregation period) group power for sum of average power measurement in a group of nodes within the specified entity.
Redefined in DCM SDK 1.5(same result as DCM 1.0)
entity: AVG(Sum_t1(Pavg1, Pavg2, ... , PavgN),
Sum_t2(Pavg1, Pavg2, ... , PavgN),
...
Sum_tn(Pavg1, Pavg2, ... , PavgN))
?
The minimal group sampling (in a monitoring cycle) power in specified aggregation period for sum of minimum power measurement in a group of nodes within the specified entity.
Redefined in DCM SDK 1.5
entity: Min(Sum_t1(Pmin1, Pmin2, ... , PminN),
Sum_t2(Pmin1, Pmin2, ... , PminN),
...
Sum_tn(Pmin1, Pmin2, ... , PminN))
先对各个时间段内,各个node的最小功率值求和;再求出各个时间段功率最小值中的最小值。
?
The minimal group sampling (in a monitoring cycle) power in specified aggregation period for sum of average power measurement in a group of nodes within the specified entity.
Since: DCM SDK 1.5The maximum temperature for any single node within the specified entity:
Max(Tmax1, Tmax2, "..." , TmaxN)
.
先分别对N个node取得各自最大温度,再求出N个值中的最大值。
?
<!-- doxytag: member="AVG_INLET_TEMP" ref="ggabfbb64a2ec7afa6cbb18aa171775c9ec" args="" -->AVG_INLET_TEMP?The average temperature for any single node within the specified entity:
Avg(Tavg1, Tavg2, "..." , TavgN)
.
先分别对N个node取得各自平均温度,再求出N个值中的平均值。
?
<!-- doxytag: member="MIN_INLET_TEMP" ref="ggabfbb64a2ec7afa6cbb18aa171775c9ec" args="" -->MIN_INLET_TEMP?The minimum temperature for any single node within the specified entity:
Min(Tmin1, Tmin2, "..." , TminN)
先分别对N个node取得各自最小温度,再求出N个值中的最小值。
?
?
?
?