MC-Basic:element.DECELERATION/zh-hans

From SoftMC-Wiki
< MC-Basic:element.DECELERATION
Revision as of 01:43, 11 September 2017 by Chi (talk | contribs) (Created page with "{{Languages}} == 缩写 == <''element''>.Dec == 格式 == <''element''>.Deceleration = <''expression''><br> ?<''element''>.Deceleration == 适用版本 == 所有版本 == ...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
语言: [[::MC-Basic:element.DECELERATION|English]]  • [[::MC-Basic:element.DECELERATION/zh-hans|中文(简体)‎]]

缩写

<element>.Dec

格式

<element>.Deceleration = <expression>

?<element>.Deceleration

适用版本

所有版本

描述

This property sets the deceleration rate of the motion profile. When executing a motion command, deceleration should be less than or equal to DECELERATIONMAX. If it is greater, the motion is executed at the DECELERATIONMAX value.

This property can be used inside a motion command to override the permanent value.

类型

Double

取值范围

Greater than 0

单位

User axis acceleration units, as given by <axis>.AccelerationFactor

默认

Axis - 1000
Group - 500

使用范围

Configuration, Task or Terminal

限制

The ratio between Jerk and Deceleration is limited by the following relation:
       Jerk/Dec < 0.9 × π/5T

where T is the sample time in seconds.

For a cycle time of 2 ms, this value is 282.74. Use SMOOTHFACTOR to have jerk calculated automatically.

To set the value within a task, the element must be attached to that task (using the ATTACH command).

例子

Axis
A1.deceleration = 1e10
Move A1 100 dec = 2e10


Group
G1.deceleration = 1e10
Move G1 {100, 200} dec = 2e10

参考