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

From SoftMC-Wiki
Jump to: navigation, search
m (Text replace - "''<axis>''" to "<''axis''>")
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{Languages|MC-Basic:axis.VELOCITYEXTERNALFACTOR}}
 
{{MC-Basic
 
{{MC-Basic
 
|SHORT FORM=
 
|SHORT FORM=
Line 4: Line 5:
  
 
|SYNTAX=
 
|SYNTAX=
<''axis''>.VelocityExternalFactor = ''<expression>''<br>
+
<''axis''>.VelocityExternalFactor = <''expression''><br>
 
?<''axis''>.VExtFac
 
?<''axis''>.VExtFac
  
Line 11: Line 12:
  
 
|DESCRIPTION=
 
|DESCRIPTION=
The velocity factor of the external feedback is used to convert that value from counts per msec into physical units.
+
The velocity factor of the external feedback is used to convert that value from counts per millisecond into physical units.
  
 
|TYPE=
 
|TYPE=
Line 32: Line 33:
  
 
|EXAMPLE=
 
|EXAMPLE=
If the feedback resolution is 2000 counts, and you want to work in RPM, the VFAC is set as<br>
+
If the feedback resolution is 2000 counts, and you want to work in RPM, the VFAC is set as:<br>
       Xaxis.vExtFac = 2000/60000<br>
+
::Xaxis.vExtFac = 2000/60000<br>
  
To work in revs per second, the VFAC must be set as<br>
+
To work in revolutions per second, the VFAC must be set as:<br>
       Xaxis.VExtFac = 2000/1000
+
::Xaxis.VExtFac = 2000/1000
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:axis.POSITIONEXTERNAL|axis.POSITIONEXTERNAL]]
+
* [[MC-Basic:axis.POSITIONEXTERNAL|axis.POSITIONEXTERNAL]]
* [[Axystems:MC-Basic:axis.POSITIONEXTERNALFACTOR|axis.POSITIONEXTERNALFACTOR]]
+
* [[MC-Basic:axis.POSITIONEXTERNALFACTOR|axis.POSITIONEXTERNALFACTOR]]
* [[Axystems:MC-Basic:axis.VELOCITYEXTERNAL|axis.VELOCITYEXTERNAL]]
+
* [[MC-Basic:axis.VELOCITYEXTERNAL|axis.VELOCITYEXTERNAL]]
  
  
 
}}
 
}}

Latest revision as of 09:55, 21 April 2017

Language: English  • 中文(简体)‎

The velocity factor of the external feedback is used to convert that value from counts per millisecond into physical units.

Short form

<axis>.VExtFac

Syntax

<axis>.VelocityExternalFactor = <expression>
?<axis>.VExtFac

Availability

All versions

Type

Double

Range

Greater than 0

Default

1

Scope

Configuration, Task or Terminal

Limitations

Cannot be changed while axis is enabled or while axis is set up as a master axis.

Examples

If the feedback resolution is 2000 counts, and you want to work in RPM, the VFAC is set as:

Xaxis.vExtFac = 2000/60000

To work in revolutions per second, the VFAC must be set as:

Xaxis.VExtFac = 2000/1000

See Also