Difference between revisions of "Adding a computed measurement/zh-cn"
From Senfi Docs
(Created page with "# 在'''init()'''填写初始化函数。 # 在'''compute()'''填写计算函数。 # 声明任何全局变量(如果您的脚本需要它们)。") |
(Created page with "<div class="important">注意:请勿修改初始化或计算函数的函数签名。</div>") |
||
Line 36: | Line 36: | ||
# 声明任何全局变量(如果您的脚本需要它们)。 | # 声明任何全局变量(如果您的脚本需要它们)。 | ||
− | <div class="important"> | + | <div class="important">注意:请勿修改初始化或计算函数的函数签名。</div> |
<div class="important">Tip: The script editor will interactively notify you of any syntax errors in your script.</div> | <div class="important">Tip: The script editor will interactively notify you of any syntax errors in your script.</div> |
Revision as of 11:52, 6 November 2019
先决条件
计算的测量是需要进行设计和逻辑编程,才能使其正常运作。如果这是您第一次创建计算的测量,请先阅读本指南。
你应该
- 记下输入测量值。
- 记下要输出的参数。
- 确定要使用或重复使用的一组标签。确保有一个标签组合,可以唯一地标识输出这些参数的单元/仪器/设备。
- 准备好计算的测量的脚本。
- (可选)为您的计算的测量提供一组测试数据
添加新的计算的测量
- 登录内容管理系统。
- 转到计算的测量的选项卡。
- 单击 + 按钮添加新的计算的测量。
- 为测量指定一个描述性名称。这将显示给仪表板的用户。
- 指定测量码。
- 选择您的输入测量。
- 添加标签。
- 添加参数并指定每个参数的类型。
- 编写计算的测量的脚本。有关更多详细信息,请参考“编写计算的测量的脚本” 。
- (可选)测试计算的测量。有关更多详细信息,请参考“测试计算的测量”。
- 完成后保存。
注意:计算的测量将被实例化,并在保存后立即运行。
编写计算的测量的脚本
在脚本编辑器中填写您计算的测量的脚本 。当您添加新的计算的测量时,系统将为您预先填写模板脚本。
- 在init()填写初始化函数。
- 在compute()填写计算函数。
- 声明任何全局变量(如果您的脚本需要它们)。
注意:请勿修改初始化或计算函数的函数签名。
Tip: The script editor will interactively notify you of any syntax errors in your script.
Testing the Computed Measurement
- Enter sample measurement data in the Testing Value editor
- Click the TEST button
- After 5 seconds, review the test output in the Testing Output panel and any console messages in the Testing Console panel.