Difference between revisions of "Adding a computed measurement/zh-cn"
From Senfi Docs
(Created page with "# 登录[https://ems.senfi.io/cms 内容管理系统]。 # 转到'''计算的测量'''的选项卡。 # 单击 '''+''' 按钮添加新的计算的测量。 # 为测量指定...") |
(Created page with "<div class="important">注意:计算的测量将被实例化,并在保存后立即运行。</div>") |
||
Line 26: | Line 26: | ||
# 完成后保存。 | # 完成后保存。 | ||
− | <div class="important"> | + | <div class="important">注意:计算的测量将被实例化,并在保存后立即运行。</div> |
=== Writing the Computed Measurement Script === | === Writing the Computed Measurement Script === |
Revision as of 11:32, 6 November 2019
Contents
先决条件
计算的测量是需要进行设计和逻辑编程,才能使其正常运作。如果这是您第一次创建计算的测量,请先阅读本指南。
你应该
- 记下输入测量值。
- 记下要输出的参数。
- 确定要使用或重复使用的一组标签。确保有一个标签组合,可以唯一地标识输出这些参数的单元/仪器/设备。
- 准备好计算的测量的脚本。
- (可选)为您的计算的测量提供一组测试数据
添加新的计算的测量
- 登录内容管理系统。
- 转到计算的测量的选项卡。
- 单击 + 按钮添加新的计算的测量。
- 为测量指定一个描述性名称。这将显示给仪表板的用户。
- 指定测量码。
- 选择您的输入测量。
- 添加标签。
- 添加参数并指定每个参数的类型。
- 编写计算的测量的脚本。有关更多详细信息,请参考“编写计算的测量的脚本” 。
- (可选)测试计算的测量。有关更多详细信息,请参考“测试计算的测量”。
- 完成后保存。
注意:计算的测量将被实例化,并在保存后立即运行。
Writing the Computed Measurement Script
Fill in the script of your computed measurement in the Script editor. When you add a new computed measurement, a template script will be pre-filled for you.
- Fill in init(), the initialization function
- Fill in compute(), the computation function
- Declare any global variables, if your script requires them
Note: You should not modify the function signatures of the initialization or computation functions.
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.