Difference between revisions of "MC-Basic:axis.TorqueLimit"

From SoftMC-Wiki
Jump to: navigation, search
 
(15 intermediate revisions by 5 users not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:axis.TorqueLimit}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
  
 
|SYNTAX=
 
|SYNTAX=
?''<axis>''.TorqueLimit
+
?<''axis''>.TorqueLimit
  
 
|AVAILABILITY=
 
|AVAILABILITY=
AMCS FW 4.9.10
+
since Version 4.9.10
  
 
|DESCRIPTION=
 
|DESCRIPTION=
Queries the (highest) torque, which can be applied to the motor at current velocity ([[Axystems:MC-Basic:axis.VELOCITYCOMMAND|Vcmd]]) according to the motor torque characteristics.  
+
Queries the (highest) torque, which can be applied to the motor at current velocity ([[MC-Basic:element.VELOCITYCOMMAND|Vcmd]]) according to the motor torque characteristics.  
  
[[File:Axystems;Motor Torque-Velocity Characteristics.png]]
+
[[File:TN.PNG|800 px]]
  
 
|TYPE=
 
|TYPE=
Line 29: Line 30:
  
 
|LIMITATIONS=
 
|LIMITATIONS=
* Read-Only
+
Read only
  
 
|EXAMPLE=
 
|EXAMPLE=
<pre>
 
 
with AX1
 
with AX1
 
Record TrqLimit.rec 1000 RecData = Tfb, TAddCmd, TorqueLimit, -TorqueLimit
 
Record TrqLimit.rec 1000 RecData = Tfb, TAddCmd, TorqueLimit, -TorqueLimit
 
RecordOn  
 
RecordOn  
  Move 100
+
:Move 100
  Move -100
+
:Move -100
  Delay 4
+
:Delay 4
 
RecordOff
 
RecordOff
 
end with
 
end with
</pre>
 
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:axis.TORQUEMAX|axis.TORQUEMAX]]
+
* [[MC-Basic:axis.TORQUETHRESHOLD|axis.TorqueThreshold]]
* [[Axystems:MC-Basic:axis.VelocityLimitTorqueMax|axis.VelocityLimitTorqueMax]]
+
* [[MC-Basic:axis.VelocityLimitTorqueMax|axis.VelocityLimitTorqueMax]]
* [[Axystems:MC-Basic:axis.TorqueLimitVelocityMax|axis.TorqueLimitVelocityMax]]
+
* [[MC-Basic:axis.TorqueLimitVelocityMax|axis.TorqueLimitVelocityMax]]
  
 
}}
 
}}
  
[[Category:Axystems:Motion Dynamics]]
+
[[Category:Motion Dynamics]]

Latest revision as of 10:55, 12 January 2020

Language: English  • 中文(简体)‎

Queries the (highest) torque, which can be applied to the motor at current velocity (Vcmd) according to the motor torque characteristics.

TN.PNG

Syntax

?<axis>.TorqueLimit

Availability

since Version 4.9.10

Type

Double

Units

Nm, N

Scope

Task or Terminal

Limitations

Read only

Examples

with AX1 Record TrqLimit.rec 1000 RecData = Tfb, TAddCmd, TorqueLimit, -TorqueLimit RecordOn

Move 100
Move -100
Delay 4

RecordOff end with

See Also