`
kang
  • 浏览: 472496 次
  • 性别: 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个值中的最小值。

 

 

 

 

分享到:
评论

相关推荐

    使用Oracle Spatial对ArcSDE中的SDO_GEOMETRY类型数据进行空间操作

    WHERE sdo_filter(t.f_shape,(SELECT shape FROM prjsde.prov WHERE XZQMC='青海省'),'querytype=window')='TRUE'; 本文介绍了如何使用 Oracle Spatial 对 ArcSDE 中的 SDO_GEOMETRY 类型数据进行空间操作,包括...

    Oracle Spatial 9i常用分析语句解析.doc

    'querytype=WINDOW'通常用于窗口查询,而'querytype=ANYINTERACT'则用于查找任何类型的交互。根据不同的查询需求,选择合适的querytype是非常关键的。 总结来说,Oracle Spatial 9i提供的这些分析语句和函数,使得...

    用户安装了何种类型的驱动器.rar_驱动安装

    Query.QueryType = PropertyStandardQuery Call DeviceIoControl(hDevice, IOCTL_STORAGE_QUERY_PROPERTY, Query, LenB(Query), PropertyBuffer, 1024, BytesReturned, 0) ' 在这里解析PropertyBuffer以获取驱动...

    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、订单修改 ...

    西门子_B.Data中如何利用Option选项进行系统参数配置?.pdf

    用户还可以管理哪些QueryType(查询类型)和Module类型(模块类型)是可用的。这包括对软件内各模块和查询功能的开启与关闭,以优化资源利用和提高系统性能。 4. 数据库参数配置 数据库配置包括密码格式、数据...

    presto on yarn安装部署.docx

    Presto on YARN 的 queryType 用于标识查询类型,包括: * DATA_DEFINITION:alter/create/drop schemas/tables/views 的元数据和权限、会话、事物相关的任务。 * DELETE:删除数据的任务。 * DESCRIBE:DESCRIBE, ...

    Laravel开发-graphql-laravel-query-debug

    总结,`Laravel开发-graphql-laravel-query-debug`涵盖了在Laravel项目中集成GraphQL的整个流程,包括安装、配置、类型和查询定义,以及使用`rebing/graphql-laravel`包提供的查询调试器进行测试。这使得开发者能够...

    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':'...

    Linux基础课件网络测试命令nslookup命令共9页

    6. **查找反向解析**:`nslookup -querytype=ptr IP地址`可以查询IP对应的域名。 学习`nslookup`命令对于任何涉及网络配置、故障排查或网络安全的人员都至关重要。了解如何有效使用这个工具可以帮助快速定位域名...

    练习一 线路系统数据库设计1

    - `QUERYTYPE`(NUMBER(2),可空):单位查询类别。 - `PARENTNUM`(VARCHAR2(14),可空):父单位结点编号。 4. **G_DICINFO**(字典表) - `DICNAME`(VARCHAR2(20),非空):字典名称,主键。 - `CODE`...

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

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

    nslookup技术

    - **querytype=TYPE**: 指定查询类型,例如 `querytype=A` 查询A记录。 #### 三、nslookup的高级用法 除了基础查询之外,nslookup还支持一些高级用法,例如: - **指定DNS服务器进行查询**: ``` nslookup ...

    EasyASP 2.1 UTF-8.rar

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

    如何在Oracle816 Spatial上编程(PPT 18).pptx

    - **SDO_RELATE** 函数同样用于相交查询,但提供了更多的关系类型,如 'ANYINTERACT',可以检查更复杂的空间关系。示例: ```sql SELECT A.gid FROM Polygons A, query_polys B WHERE B.gid = 1 AND SDO_RELATE...

    vue 根据选择条件显示指定参数的例子

    最后,文章提到了在Vue中展示不同参数类型的例子,包括字符串(string)类型和布尔(bool)类型的参数。这些类型的展示是通过不同表单控件(如输入框和单选按钮)来实现的。 总结来说,文章通过一个具体的Vue例子向我们...

    php+mysql+ajax实现单表多字段多关键词查询的方法

    在PHP后端脚本queryInIndex.php中,会接收从前端发送过来的查询类型和关键词,并构建SQL查询语句。例如: ```php $queryType = $_POST['queryType']; $queryKeywords = $_POST['queryKeywords']; // 构建SQL查询...

Global site tag (gtag.js) - Google Analytics