MC-Basic:SineWave

From SoftMC-Wiki
Revision as of 12:38, 26 May 2020 by Hallel (talk | contribs)
Jump to: navigation, search
Language: English  • 中文(简体)‎

Performs endless sine-wave motion on the given axis or group, between the start position and the given target position. The Stop command is used to end the motion.

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