Difference between revisions of "MC-Basic:element.ACCELERATIONFACTOR/zh-hans"

From SoftMC-Wiki
Jump to: navigation, search
(Created page with "{{Languages}} == 缩写 == <''element''>.Afac == 格式 == <''element''>.AccelerationFactor = <''expression''><br> ?<''element''>.AccelerationFactor == 适用版本 == 所...")
 
 
Line 1: Line 1:
{{Languages}}
+
{{Languages|MC-Basic:element.ACCELERATIONFACTOR}}
 
== 缩写 ==
 
== 缩写 ==
 
<''element''>.Afac
 
<''element''>.Afac
Line 12: Line 12:
  
 
== 描述 ==
 
== 描述 ==
This property specifies the conversion factor between the user’s acceleration units and the internal units [counts per msec<sup>2</sup>]. The <''element''>.ACCELERATIONFACTOR must contain the conversion factor for both the position dimension and the time dimension.
+
此属性指定用户的加速度单位和内部单位之间的转换因子 [counts per msec<sup>2</sup>]<''element''>.ACCELERATIONFACTOR必须包含位置维度和时间维度的转换因子。
  
 
== 类型 ==
 
== 类型 ==
Line 18: Line 18:
  
 
== 取值范围 ==
 
== 取值范围 ==
Greater than zero
+
大于0
  
 
== 单位 ==
 
== 单位 ==
Line 24: Line 24:
  
 
== 默认 ==
 
== 默认 ==
'''Axis = 71.5828''' <br> This value is suitable for working in units of RPM/second with resolver feedback.<br>
+
'''Axis = 71.5828''' <br> 该值适用于以RPM /秒为单位的旋变反馈。<br>
  
'''Group = 65536/6e7''' (=1.092e-3). <br>  This value is suitable for working in units of position units per minute per second
+
'''Group = 65536/6e7''' (=1.092e-3). <br>  该值适用于以每分钟或每秒的位置单位的情况
  
  
Line 33: Line 33:
  
 
== 限制 ==
 
== 限制 ==
Cannot be changed while axis is enabled or while axis is set up as a Master axis.<br>
+
在轴使能或轴设置为主轴时无法更改。<br>
  
To set the value within a task, the axis must be attached to that task (using the ATTACH command).
+
要在任务中设置值,元素必须关联到该任务中(使用ATTACH命令)
  
 
== 例子 ==
 
== 例子 ==
 
'''Axis''' <br>  
 
'''Axis''' <br>  
''A1''.Afac = A1.Pfac / (1000 * 1000)                  ‘Position units per second squared<br>
+
''A1''.Afac = A1.Pfac / (1000 * 1000)                  ‘每秒平方位置单位<br>
''A1''.Afac = Xaxis.VelocityFactor / 1000         ‘Velocity units per second <br>
+
''A1''.Afac = Xaxis.VelocityFactor / 1000         ‘每秒速度单位 <br>
  
  
  
 
'''Group''' <br>  
 
'''Group''' <br>  
''G1''.Afac = 1 / (60000 * 1000)                      ‘work in per-minute-per-second<br>
+
''G1''.Afac = 1 / (60000 * 1000)                      ‘以每分钟/秒的速度工作<br>
''G1''.Afac = 1 / (1000 * 1000)                      ‘work in per-second-squared
+
''G1''.Afac = 1 / (1000 * 1000)                      ‘以每秒平方工作
  
 
== 参考 ==
 
== 参考 ==
Line 53: Line 53:
 
* [[MC-Basic:element.VELOCITYFACTOR|element.VELOCITYFACTOR]]
 
* [[MC-Basic:element.VELOCITYFACTOR|element.VELOCITYFACTOR]]
 
* [[MC-Basic:axis.POSITIONFACTOR|axis.POSITIONFACTOR]]
 
* [[MC-Basic:axis.POSITIONFACTOR|axis.POSITIONFACTOR]]
 
 
}}
 

Latest revision as of 02:46, 1 September 2017

语言: English  • 中文(简体)‎

缩写

<element>.Afac

格式

<element>.AccelerationFactor = <expression>

?<element>.AccelerationFactor

适用版本

所有版本

描述

此属性指定用户的加速度单位和内部单位之间的转换因子 [counts per msec2]。<element>.ACCELERATIONFACTOR必须包含位置维度和时间维度的转换因子。

类型

Double

取值范围

大于0

单位

默认

Axis = 71.5828
该值适用于以RPM /秒为单位的旋变反馈。

Group = 65536/6e7 (=1.092e-3).
该值适用于以每分钟或每秒的位置单位的情况


使用范围

Configuration, Task or Terminal.

限制

在轴使能或轴设置为主轴时无法更改。

要在任务中设置值,元素必须关联到该任务中(使用ATTACH命令)

例子

Axis
A1.Afac = A1.Pfac / (1000 * 1000)                  ‘每秒平方位置单位
A1.Afac = Xaxis.VelocityFactor / 1000         ‘每秒速度单位


Group
G1.Afac = 1 / (60000 * 1000) ‘以每分钟/秒的速度工作
G1.Afac = 1 / (1000 * 1000) ‘以每秒平方工作

参考