`
kang
  • 浏览: 464639 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

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.

Enumerator:

 

分类: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.5
entity: Max(Sum_t1(Pavg1, Pavg2, ... , PavgN),
Sum_t2(Pavg1, Pavg2, ... , PavgN),
...
Sum_tn(Pavg1, Pavg2, ... , PavgN))
先对各个时间段内,各个node的平均功率值求和;再求出各个时间段功率平均值中的最大值。
<!-- doxytag: member="TOTAL_MAX_PWR" ref="ggabfbb64a2ec7afa6cbb18aa171775c9ec" args="" -->TOTAL_MAX_PWR 

The 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))

先对各个时间段内,各个node的最大功率值求和;再求出各个时间段功率最大值中的最大值。


 

<!-- doxytag: member="TOTAL_AVG_PWR" ref="ggabfbb64a2ec7afa6cbb18aa171775c9ec" args="" -->TOTAL_AVG_PWR 

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))

先对各个时间段内,各个node的平均功率值求和;再求出各个时间段功率平均值的平均值。


 

<!-- doxytag: member="TOTAL_MIN_PWR" ref="ggabfbb64a2ec7afa6cbb18aa171775c9ec" args="" -->TOTAL_MIN_PWR 

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的最小功率值求和;再求出各个时间段功率最小值中的最小值。


 

<!-- doxytag: member="MIN_AVG_PWR" ref="ggabfbb64a2ec7afa6cbb18aa171775c9ec" args="" -->MIN_AVG_PWR 

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.5
entity: Min(Sum_t1(Pavg1, Pavg2, ... , PavgN),
Sum_t2(Pavg1, Pavg2, ... , PavgN),
...
Sum_tn(Pavg1, Pavg2, ... , PavgN))
先对各个时间段内,各个node的平均功率值求和;再求出各个时间段功率平均值中的最小值。

 
<!-- doxytag: member="MAX_INLET_TEMP" ref="ggabfbb64a2ec7afa6cbb18aa171775c9ec" args="" -->MAX_INLET_TEMP 

The 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个值中的最小值。

 

 

 

 

分享到:
评论

相关推荐

    giraphql:GiraphQL是用于使用强类型代码优先方法在打字稿中创建GraphQL模式的库

    GiraphQL SchemaBuilder GiraphQL是用于使用强类型代码优先方法在Typescript中创建GraphQL模式的库。 GiraphQL模式构建器通过提供具有... queryType ( { fields : ( t ) =&gt; ( { hello : t . string ( { args : {

    网上商店 java 源代码

    querytype 查询类型 0 根据商品名查询 1 详细查询 productype 查询的商品类别 querycondition 查询条件 其他 根据不同类型的查询字段与数据表字段同 4、购物车结算 productcookie 5、订单修改 ...

    query-types:处理Express req.query对象的数字和布尔值

    查询类型处理Express req.query对象的数字和布尔值。设置 $ npm install --save query-types用法 var queryType = require ( 'query-types' ) ;var express = require ( 'express' ) ;app . use ( queryType . ...

    多功能.NET代码自动生成器(含存储过程)

    注:json数据源中totalProperty属性为数据源总记录条数,root属性下是具体数据表记录信息,数据表记录信息中各key为小写字段名称,值均为字符串类型。 示例: { 'totalProperty':10, 'root':[ {'id':'001','name'...

    多功能.NET代码自动生成器2.0版(2010年最新修改)

    注:json数据源中totalProperty属性为数据源总记录条数,root属性下是具体数据表记录信息,数据表记录信息中各key为小写字段名称,值均为字符串类型。 示例: { 'totalProperty':10, 'root':[ {'id':'001','name':'...

    reel-search::magnifying_glass_tilted_left:RAMReel是一个UI控制器,允许您从列表中选择选项。 @Ramotion制作的Swift UI库

    DataSource :您的类型必须实现协议,其中QueryType为String , ResultType为和 。 或者,您可以只使用我们的预定义类 ,其ResultType设置为String 。 现在,您可以将这些类型用作RAMReel的类型声明的通用参数: ...

    自定义时间组件.zip

    v-if="this.tableParam.queryType == 1" style="display: inline-block" width="120px" title="日期筛选" ref="cleartime" v-on:timeConb="timeConb" &gt; 获取的时间戳 timeConb(val) { console.log(val); ...

    EasyASP 2.1 UTF-8.rar

    [db]新增Easp.db.QueryType属性,可设置用ADO的RecordSet还是Command方式获取记录集。 [db]新增Easp.db.GetRandRecord方法,用于取得指定数量的随机记录集。 [db]新增Easp.db.Exec方法,用于执行SQL语句或者返回...

    硬盘保养的几点注意事项

    硬盘保养的几点注意事项 硬盘是电脑中较容易损坏的配件,但其中有...http://aura.taobao.com/?spm=a1z10.1.3-3229885294.2.s4gxyv&search=y&scid=213833153&scname=vMbL47v6yO28/sDg&checkedRange=true&queryType=cat

    GraphQL的Java实现graphql-java.zip

     GraphQLObjectType queryType = newObject()  .name("helloWorldQuery")  .field(newFieldDefinition()  .type(GraphQLString)  .name("hello")  .staticValue("world")  .build())  .build(); ...

    EasyAsp v2.1 beta EasyAsp.rar

    新增Easp.db.QueryType属性,可设置用RecordSet还是Command方式获取记录集。 新增Easp.db.GetRandRecord方法,用于取得随机数量的记录集。 新增Easp.db.Exec方法,用于执行SQL语句或者返回Command方式查询的记录集...

    graphql-batch:创建批处理GraphQL解析器

    GraphQL批处理 该库是使用与和一起使用的批处理的替代...const QueryType = new GraphQLObjectType ( { name : 'Query' , fields : { user : { type : UserType , resolve : createBatchResolver ( async ( sourc

    EasyASP 2.1 GB2312

    [db]新增Easp.db.QueryType属性,可设置用ADO的RecordSet还是Command方式获取记录集。 [db]新增Easp.db.GetRandRecord方法,用于取得指定数量的随机记录集。 [db]新增Easp.db.Exec方法,用于执行SQL语句或者返回...

    lighthouse-sanctum:Laravel Sanctum支持Laravel灯塔

    ./graphql/schema.graphql ) type Querytype Mutation#import sanctum.grapqhl用法登记电子邮件验证 登录认证用户以接收承载令牌。 mutation Login { login ( input : { email : " john.doe@gmail....

    app

    根据实体生成queryType 根据实体生成rootQueryType 根据实体生成数据库建表语句及docker配置 根据实体自动生成对应的微服务项目及docker配置 目录介绍 公共代码:各个模块都会使用跟具体业务无关的代码 实体:模型...

    graphql-disable-introspection:使用简单的验证规则在GraphQL-JS中禁用自省

    queryType { name } } } query { __type ( name : " Query " ) { description fields { name } } } 用法 该软件包可以从npm安装 npm install -save graphql-disable-introspection 它导出单个验证规则,...

    graphql-spqr-samples:用于graphql-spqr的最小演示应用

    GraphQL-SPQR Spring Boot样本 简单的Spring Boot应用程序,用于演示GraphQL SPQR lib的功能。 在我们的演讲中,这主要是用于进行... queryType { name } mutationType { name } subscriptionType { name } types {

    graphql-guard:GraphQL的简单授权gem

    class QueryType &lt; GraphQL :: Schema :: Object field :posts , [ PostType ] , null : false do argument :user_id , ID , required : true end def posts ( user_id : ) Post . where ( user_id : user_...

    exonerate-gff3:通过添加 gff3 支持免除 fork

    示例命令: exonerate -q protein.fa -t genome.fa --model protein2genome --querytype protein --targettype dna --showvulgar no --softmaskquery yes --softmasktarget yes --minintron 20 --maxintron 3000 --...

    InfluxDB_WDC:Tableau Web数据连接器(WDC),用于从InfluxDB中提取数据

    2.0.2 添加了针对使用键盘时对QueryType按钮的关注的修复程序 2.0.1 添加了对的修复。 (点)特殊字符 2.0- 添加了自定义SQL-有关更多详细信息,请参见下文 改进的用户界面 删除了https + influxdb:\; 它仅适用于...

Global site tag (gtag.js) - Google Analytics