Skip to main content

Mach 4 Screw Mapping

Screw Mapping in Mach 4

Mach 4 (after build 2107, 2014-11-17) implements symmetric, bidirectional mapping (i.e. one map that applies to both directions of travel). Builds after 4780 (2021-11-29) implement asymmetric bidirectional screw mapping (separate maps for positive and negative travel).

What is Screw Mapping?

Screw mapping refers to the means by which the CNC compensates for wear, stretch, or other inaccuracies in the mechanical means by which the motors move an axis. It is sometimes called "screw mapping" because CNC machines frequently use screws to mechanically link the motor and the axis. The compensation we're discussing works for any kind of mechanical linkage.

The relationship between motor position and axis position is theoretically a linear relationship. In reality, It is not (sufficiently) precisely linear. When the CNC commands the motor to go to position X, we expect that the corresponding axis position, Y. We expect that as X increases, Y will increase in direct proportion (by the encoder counts per unit parameter).

There can be many sources of error that cause this non-linearity.

  • wear on the screw (making the threads slightly farther apart)
  • thread pitch is inaccurate over longer distances
  • any mechanical reality that would result in backlash

Mapping the Axis

Machine Calibration

The Machine Calibration plugin has a conversational configuration dialog to configure the mapping. (Configure / Plugins / Machine Calibration, Linear Compensation)

dukMachineCalibration_LinearCompensation_ConfigureAxis.png

Typical Configuration
  1. Select an axis/motor. Move that motor to either of the two limits of travel that you intend to map.
    1. This move is usually done with G code/MDI to go to a specific position.
  2. Click Modify Inputs.
  3. Click Capture Start
  4. Move to the other limit of travel that you intend to map.
  5. Click Capture Length.
  6. Enter the number of points along the distance of travel that will be measured (by some external means).
  7. Click Submit Inputs.
  8. Start entering the error measurements.
    1. Choose the way that the tool will interpret the measurements you enter.
      1. Depending on the measurement means, you will have a list of commanded positions and some measured value. The value could be an amount of error (expected position - actual position) or the actual position.
    2. Toggle between the positive and negative map to select which map you will be defining.
    3. The tool expects you to enter measurements starting with the start point and proceeding in the positive direction.
      1. Enter the measured value.
      2. Type ENTER or click Submit Measurement.
        1. The tool will update the error value for that point and select the next measurement point.
      3. Continue entering measured values for the other points.
  9. To enable Mach 4 using the now defined motor map, click Turn Motor Map On.
  10. Configure the map transfer rate parameter.
    1. Enter a length of time (in milliseconds) for Mach 4 to use to switch between one map and the other.
    2. Click Apply to set the parameter.

Map Points and Error

Mach 4 expects that mapping is done at even intervals along the length of travel for an axis. It expects parameters to be inĀ 

  • Start Point
    • This is the smallest (most negative) position of the motor on the axis.
  • Length
    • This is the (positive) amount of travel in the positive direction from the start point along the axis.
  • Number of Points
    • The number of (evenly-spaced) points between (and including) the start point and (start point + length).
    • This number is one more than the number of "regions" over which you want to measure (e.g. measuring every inch over a 100 inch distance would need 101 points).
  • Error at Each Point
    • The difference between the expected position and the actual position
Exceeding the Mapped Region

If you command a position outside the mapped region, Mach will assume that the amount of error is zero and smoothly transition over the course of the distance between the map points to that error amount.

Other Parameters

Map Transition Rate (VAL_SCREWMAP_PERCENT_PER)

Mach 4 employs this parameter to determine how quickly the planner transitions from one map to the other (usually when changing directions).

When this value is too small, the resulting motion commanded from Mach 4 will exceed the configured motor velocity/acceleration parameters.

The value the reciprocal of the number of time slices over which the planner should gradually apply more and more of the target map. If you wanted the transition from one map to another to take 50 ms (and your time slice is 1 ms), you would set this parameter to 1 / 50 = 0.02.

Transition Time (ms) Transition Rate Comment
100 .01 (Mach 4 default)
20 .05
50 .02
200 .005

ScrewMap__ConstantErorr_X-100ms_Overview-annotated.png

ScrewMap__SimulatedWear_X-20ms_Detail-02-annotated.png

The worst case time to transition (to ensure that the transition will not violate the motor velocity/acceleration parameters) can be calculated.

VAL_SCREWMAP_PERCENT_PER__worst_case_formula.pngIf you use this formula, make sure that you use consistent units for time, and then convert the time to milliseconds.

Comparison of Values

Consider what happens when the CNC changes direction and has to switch between two different maps. The G code for this example would look something like

G1 F300
X49
X50
X49

The graphs show motor position (red: no mapping; blue: mapping enabled) as well as velocity, acceleration, and the correction amount applied.

Transition Time: 100 ms (Value: 0.01)

ScrewMap__Change-Directions__100ms.png

Transition Time: 10 ms (Value: 0.1)

ScrewMap__Change-Directions__10ms.png

Note: the acceleration of the commanded move is quite high. This would probably cause a noticeable thump in the motion.

Transition Time: 200 ms (Value 0.005)

ScrewMap__Change-Directions__200ms.png

Note: the acceleration is lower, but it takes longer to transition to the negative map.