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

From SoftMC-Wiki
Jump to: navigation, search
 
(16 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:axis.SIMULATED}}
 
{{MC-Basic
 
{{MC-Basic
 +
 
|SHORT FORM=
 
|SHORT FORM=
  
  
 
|SYNTAX=
 
|SYNTAX=
''<axis>''.Simulated = ''<expression>''<br>
+
<''axis''>.Simulated = <''expression''><br>
  
?''<axis>''.Simulated
+
?<''axis''>.Simulated
  
 
|AVAILABILITY=
 
|AVAILABILITY=
 
All versions
 
All versions
  
{{Note|With a simulated axis, In case <Ax>.feedback is set to External, then all the position properties (Pfb, Pcmd, Pext) are equal, excluding positionExternalFactor.}}
+
|DESCRIPTION=
 +
This property is used to define the axis mode of operation as simulated or real. In simulated mode, motion commands are not sent to the drives as the axis is not associated with a physical drive. Simulated axes need to be enabled (using <''axis''>.ENABLE=ON) before a motion command is applied.<br>
 +
:0 (Real)<br>
 +
:1 (Simulated)
 +
 
 +
 
 +
{{Note|With a simulated axis, if <''axis''>.feedback is set to external, then all the position properties (Pfb, Pcmd, Pext) are equal, unless positionExternalFactor is not equal to positionFactor.}}
 +
 
  
  
|DESCRIPTION=
 
This property is used to define the axis mode of operation as simulated or real. In simulated mode, motion commands are not sent to the drives as the axis is not associated with a physical drive. Simulated axes need to be enabled (using ''<axis>''.ENABLE=ON) before a motion command is applied.<br>
 
       0 (Real)<br>
 
       1 (Simulated)
 
  
 
|TYPE=
 
|TYPE=
Line 41: Line 46:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:axis.DRIVEADDRESS|axis.DRIVEADDRESS]]
+
* [[MC-Basic:axis.DRIVEADDRESS|axis.DRIVEADDRESS]]
* [[Axystems:AMCS:SimulatedAxes| Simulated Axes]]
+
* [[SimulatedAxes| Simulated Axes]]
  
 
}}
 
}}

Latest revision as of 01:47, 21 April 2017

Language: English  • 中文(简体)‎

This property is used to define the axis mode of operation as simulated or real. In simulated mode, motion commands are not sent to the drives as the axis is not associated with a physical drive. Simulated axes need to be enabled (using <axis>.ENABLE=ON) before a motion command is applied.

0 (Real)
1 (Simulated)


NOTE-Info.svgNOTE
With a simulated axis, if <axis>.feedback is set to external, then all the position properties (Pfb, Pcmd, Pext) are equal, unless positionExternalFactor is not equal to positionFactor.

Syntax

<axis>.Simulated = <expression>

?<axis>.Simulated

Availability

All versions

Type

Long

Range

0 or 1

Default

0

Scope

Configuration, Task or Terminal

Limitations

Can only be set during SERCOS communications phase 0.

Examples

Xaxis.Simulated=1

See Also