Skip to content

Commit 348e3c4

Browse files
committed
Make math proper with subscripts
1 parent 115d5ce commit 348e3c4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

source/docs/software/advanced-controls/system-identification/introduction.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -40,25 +40,25 @@ Several of these options use nearly identical robot-side code, and differ only i
4040

4141
The simple motor identification tool determines the best-fit parameters for the equation:
4242

43-
.. math:: V = kS \cdot sgn(\dot{d}) + kV \cdot \dot{d} + kA \cdot \ddot{d}
43+
.. math:: V = K_s \cdot sgn(\dot{d}) + K_v \cdot \dot{d} + K_a \cdot \ddot{d}
4444

4545
where :math:`V` is the applied voltage, :math:`d` is the displacement (position) of the drive, :math:`\dot{d}` is its velocity, and :math:`\ddot{d}` is its acceleration. This is the model for a permanent-magnet dc motor with no loading other than friction and inertia, as mentioned above, and is an accurate model for flywheels, turrets, and horizontal linear sliders.
4646

4747
#### Elevator Identification
4848

4949
The elevator identification tool determines the best-fit parameters for the equation:
5050

51-
.. math:: V = kG + kS \cdot sgn(\dot{d}) + kV \cdot \dot{d} + kA \cdot \ddot{d}
51+
.. math:: V = K_g + K_s \cdot sgn(\dot{d}) + K_v \cdot \dot{d} + K_a \cdot \ddot{d}
5252

53-
where :math:`V` is the applied voltage, :math:`d` is the displacement (position) of the elevator, :math:`\dot{d}` is its velocity, and :math:`\ddot{d}` is its acceleration. The constant term (:math:`kG`) is added to correctly account for the effect of gravity.
53+
where :math:`V` is the applied voltage, :math:`d` is the displacement (position) of the elevator, :math:`\dot{d}` is its velocity, and :math:`\ddot{d}` is its acceleration. The constant term (:math:`K_g`) is added to correctly account for the effect of gravity.
5454

5555
#### Arm Identification
5656

5757
The arm identification tool determines the best-fit parameters for the equation:
5858

59-
.. math:: V = kG \cdot cos(\theta) + kS \cdot sgn(\dot{\theta}) + kV \cdot \dot{\theta} + kA \cdot \ddot{\theta}
59+
.. math:: V = K_g \cdot cos(\theta) + K_s \cdot sgn(\dot{\theta}) + K_v \cdot \dot{\theta} + K_a \cdot \ddot{\theta}
6060

61-
where :math:`V` is the applied voltage, :math:`\theta` is the angular displacement (position) of the arm, :math:`\dot{\theta}` is its angular velocity, and :math:`\ddot{\theta}` is its angular acceleration. The cosine term (:math:`kG`) is added to correctly account for the effect of gravity.
61+
where :math:`V` is the applied voltage, :math:`\theta` is the angular displacement (position) of the arm, :math:`\dot{\theta}` is its angular velocity, and :math:`\ddot{\theta}` is its angular acceleration. The cosine term (:math:`K_g`) is added to correctly account for the effect of gravity.
6262

6363
## Installing SysId
6464

0 commit comments

Comments
 (0)