# Mobility

Every FRC robot is a controlled power system.&#x20;

All mechanisms follow this flow chart:

> **Motor → Transmission → Output**

The quality of your design depends on how well you control:

* Torque (force)
* Speed
* Efficiency
* Reliability

All transmission systems fundamentally trade speed for torque or vice versa.

***

## Motors

Motors define the raw performance limits of the system.

* High speed → low torque
* High torque → low speed

This relationship is fixed by physics. You cannot get both at the same time amd must transform it mechanically.

#### Motor Curves

A motor curve is a graph that shows Speed (RPM) on the x-axis and Torque (force) on the y-axis. It describes how fast a motor spins at different loads.

Every motor curve is defined by two endpoints.

1\. Stall torque

* Maximum torque
* Speed = 0 (not moving)

2\. Free speed (no-load speed)

* Maximum speed
* Torque = 0 (no load)

All real operating points lie between these two.

<figure><img src="/files/1JgjBh0kxe1WC8iQ1sVj" alt="" width="555"><figcaption></figcaption></figure>

***

## Power Transmission

Power transmission systems do three jobs:

1. Relocate power (motor isn’t always at the mechanism)
2. Modify torque and speed
3. Maintain synchronization between parts

The three primary systems are used in FRC:

* Gears
* Belts (pulleys)
* Chain (sprockets)

***

### Gears

Gears transfer motion through direct tooth engagement, resulting in very little slip, high efficiency, and precise motion. When two gears mesh, they rotate in opposite directions, and teeth enforce a fixed velocity ratio.

#### Gear Ratios&#x20;

<figure><img src="/files/XQfYCBcZEDfhD1NlIo70" alt=""><figcaption></figcaption></figure>

Example:

* 12T → 84T = 7:1
  * Torque ×7
  * Speed ÷7

Multiple gear stages multiply:

* 3:1 × 4:1 = 12:1 total

This is how gearboxes achieve large reductions in compact space.

#### Design implications

* Larger ratios = more torque but slower response
* More stages = more friction and backlash
* Gear spacing must be precise&#x20;

<figure><img src="/files/BdGAj4kOuwlDNlEXnicN" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
The Powered Elevator uses a set of gears to transmit power
{% endhint %}

{% embed url="<https://andymark.com/collections/gears>" %}

***

### Pulleys & Belts

Belts use a flexible loop to transfer motion between pulleys. Unlike gears, shafts can be far apart and rotation stays in the same direction. Ratio is determined by pulley tooth count the same as gears. There is also compliance in the system.&#x20;

Advantages:

* Lightweight
* Quiet
* Absorb shock (protects motors)

Limitations:

* Teeth can skip under high load
* Lower maximum torque than chain

#### Where belts are best used

* Intakes and conveyors
* Systems where weight matters
* Mechanisms where you would rather the motor slip rather than stall

<figure><img src="/files/7N3tFF5WNIH9ByZXh0LD" alt=""><figcaption></figcaption></figure>

{% hint style="info" %}
The 2026 kitbot uses pulleys and belts to transfer power from the motor to the launcher and intake.
{% endhint %}

{% embed url="<https://andymark.com/collections/belts>" %}

{% embed url="<https://andymark.com/collections/pulleys>" %}

***

### Sprockets & Chain

Chain systems use rigid links engaging with sprockets.&#x20;

Advantages:

* Chain has very little slip (like gears) and can span long distances (like belts).
* Sprockets will rotate in the same direction.&#x20;
* Chain also has a high load capacity.

Limitations:

* Chain physically elongates over time, requiring tensioning.

For Competition Robotics AndyMark recommends [#25 Chain Roller Chain](https://andymark.com/products/25-single-strand-riveted-roller-chain-10) for lighter duty applications or [#35 Roller Chain](https://andymark.com/products/35-single-strand-riveted-roller-chain-10) for heavier duty applications. Although this industrial roller chain may look similar to bicycle chain, the pitch - or distance between the pins - is different and likely will not be compatible with bicycle chain links and sprockets.

Chain can be attached and broken using a few different types of tools. AndyMark recommends the [“Dark Soul” chain break tool](https://andymark.com/products/25-chain-break) for #25 chain and the [ARC tool](https://andymark.com/products/35-chain-break) for #35 chain. These tools push in and out individual link pins for a clean break and reattachment point.

[Connecting Links:](https://andymark.com/collections/chain/products/chain-connecting-links) Standard connection links pin two ends of chain together to make a loop. Each end of the chain needs to end with a “narrow” link section. The link is held together by a clip that sits in a groove on the two connector pins.

[Half Links:](https://andymark.com/collections/chain/products/roller-chain-half-link) Also called an Offset Link, is for applications where one more link is too long, and one fewer link is too short. A half link connects a “narrow” link section to a “wide” link section. The link is secured with a cotter pin.

[1.5 Links:](https://andymark.com/collections/chain/products/chain-1-5-links) This connects to two “narrow” link sections using two connecting links, but adds an additional half link section to the overall length. Use this to eliminate the potential failure point of a cotter pin connection.

[Chain Attachment Links:](https://andymark.com/collections/chain/products/chain-attachment-link) These are useful links to add mounting points to your chain. Add the K-link to your chain path and bolt or rivet the link to the element you want to move to create an elevator or conveyor.

{% embed url="<https://andymark.com/collections/sprockets>" %}

{% embed url="<https://andymark.com/collections/chain>" %}

***

## Sport Gearboxes

A sport gearbox is a multi-stage gear reduction system packaged for easy use. The Sport Gearbox is a competition tested high-performance line of planetary gearboxes from AndyMark and BaneBots that iterates on years of previous planetary gearboxes used in FIRST Robotics Competition. It has been optimized for strength and volume with durable steel gears and a single piece aluminum housing, ensuring that there is no possibility for misalignment of the stages.

It includes:

* Motor interface
* Internal gear train
* Output shaft

This allows large reductions in a small space and high torque output with a manageable size.

<figure><img src="/files/30WgnWYe3VX7ppeIAs6l" alt="" width="350"><figcaption></figcaption></figure>

{% embed url="<https://andymark.com/products/sport-gearbox>" %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.andymark.com/frc-build/getting-started/mobility.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
