Difference between revisions of "Adding a computed measurement/zh-cn"

From Senfi Docs
Jump to: navigation, search
(Created page with "# 登录[https://ems.senfi.io/cms 内容管理系统]。 # 转到'''计算的测量'''的选项卡。 # 单击 '''+''' 按钮添加新的计算的测量。 # 为测量指定...")
(Created page with "<div class="important">注意:计算的测量将被实例化,并在保存后立即运行。</div>")
Line 26: Line 26:
 
# 完成后保存。
 
# 完成后保存。
  
<div class="important">Note: The computed measurement will be instantiated and run immediately upon saving.</div>
+
<div class="important">注意:计算的测量将被实例化,并在保存后立即运行。</div>
  
 
=== Writing the Computed Measurement Script ===
 
=== Writing the Computed Measurement Script ===

Revision as of 11:32, 6 November 2019

先决条件

计算的测量是需要进行设计和逻辑编程,才能使其正常运作。如果这是您第一次创建计算的测量,请先阅读本指南

您还应该熟悉基本测量及其概念。如果需要复习,请阅读本节

你应该

  • 记下输入测量值。
  • 记下要输出的参数。
  • 确定要使用或重复使用的一组标签。确保有一个标签组合,可以唯一地标识输出这些参数的单元/仪器/设备。
  • 准备好计算的测量的脚本。
  • (可选)为您的计算的测量提供一组测试数据

添加新的计算的测量

  1. 登录内容管理系统
  2. 转到计算的测量的选项卡。
  3. 单击 + 按钮添加新的计算的测量。
  4. 为测量指定一个描述性名称。这将显示给仪表板的用户。
  5. 指定测量码
  6. 选择您的输入测量。
  7. 添加标签。
  8. 添加参数并指定每个参数的类型。
  9. 编写计算的测量的脚本。有关更多详细信息,请参考“编写计算的测量的脚本”
  10. (可选)测试计算的测量。有关更多详细信息,请参考“测试计算的测量”
  11. 完成后保存。
注意:计算的测量将被实例化,并在保存后立即运行。

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.

  1. Fill in init(), the initialization function
  2. Fill in compute(), the computation function
  3. 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

  1. Enter sample measurement data in the Testing Value editor
  2. Click the TEST button
  3. After 5 seconds, review the test output in the Testing Output panel and any console messages in the Testing Console panel.