Difference between revisions of "MC-Basic:SineWave"

From SoftMC-Wiki
Jump to: navigation, search
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:
  
 
|DESCRIPTION=
 
|DESCRIPTION=
Performs endless sine-wave motion on the given axis or group, between the start position and the given target position.
+
Performs endless sine-wave motion on the given axis or group, between the start position (StartPosition) and the given target position.
 
The [[MC-Basic:STOP|Stop]] command is used to end the motion.
 
The [[MC-Basic:STOP|Stop]] command is used to end the motion.
 
+
<br>
For the default value Abs = 1, the target position is equal to ''<Amplitude>''. For Abs = 0, the target position is equal to the sum ''<Amplitude>''+StartPosition.  
+
The peak-to-peak amplitude depends on the value of the Abs property. For the default value Abs = 1, the target position is equal to ''<Amplitude>''. For Abs = 0, the target position is equal to the sum ''<Amplitude>''+StartPosition.  
 
+
<br>
 
The desired frequency is set by the [[#See_Also|SineWaveFreq]] property. The default frequency is 1.0 Hz.
 
The desired frequency is set by the [[#See_Also|SineWaveFreq]] property. The default frequency is 1.0 Hz.
 
The actually used frequency is limited by the maximal velocity, acceleration and jerk of each axis.  
 
The actually used frequency is limited by the maximal velocity, acceleration and jerk of each axis.  
 
+
<br>
 
Group motion is performed on axes level, e.g. no coupling is applied.
 
Group motion is performed on axes level, e.g. no coupling is applied.
  
Line 44: Line 44:
 
...<br>
 
...<br>
 
Stop ax2<br>
 
Stop ax2<br>
 +
  
 
SineWave grp2 {100, 75} SineWaveFreq = {0.3, 0.5}<br>
 
SineWave grp2 {100, 75} SineWaveFreq = {0.3, 0.5}<br>

Latest revision as of 12:57, 26 May 2020

Language: English  • 中文(简体)‎

Performs endless sine-wave motion on the given axis or group, between the start position (StartPosition) and the given target position. The Stop command is used to end the motion.
The peak-to-peak amplitude depends on the value of the Abs property. For the default value Abs = 1, the target position is equal to <Amplitude>. For Abs = 0, the target position is equal to the sum <Amplitude>+StartPosition.
The desired frequency is set by the SineWaveFreq property. The default frequency is 1.0 Hz. The actually used frequency is limited by the maximal velocity, acceleration and jerk of each axis.
Group motion is performed on axes level, e.g. no coupling is applied.

Syntax

SineWave <axis>|<group> <Amplitude> {SineWaveFreq = <SWfreq>} {Abs = <1|0>}

Availability

Since Version 4.9.6

Type

<Amplitude>
double for axes
vector of double for groups
<SineWaveFreq>
double for axes
vector of double for groups

Scope

Task or Terminal

Limitations

  • No joints are allowed, only axes and groups.

Examples

SineWave ax2 300 SineWaveFreq = 0.4
...
Stop ax2


SineWave grp2 {100, 75} SineWaveFreq = {0.3, 0.5}
...
Stop grp2

See Also