ece105: add com

This commit is contained in:
eggy 2022-11-02 22:56:14 -04:00
parent c5c465dcce
commit b01082797c

View File

@ -35,3 +35,30 @@ $$\frac{dp}{dt} = \frac{mdv}{dt} + \frac{vdm}{dt}$$
Impulse is actually the change of momentum over time.
$$\vec J = \int^{p_f}_{p_i}d\vec p$$
## Centre of mass
The centre of mass $x$ of a system is equal to the average of the centre of masses of its components relative to a defined origin.
$$x_{cm} = \frac{m_1x_1 + m_2x_2 + ... + m_nx_n}{m_1 + m_2 + ... + m_n}$$
To determine the centre of mass of a system with a hole, the hole should be treated as negative mass. If the geometry of the system is **symmetrical**, the centre of mass is also symmetrical in the x and y dimensions.
For each mass, its surface density $\sigma$ is equal to:
$$
\sigma = \frac{m}{A} \\
m = \sigma A
$$
Holes have negative mass, i.e., $m = -\sigma A$.
For a **one-dimensional** hole, the linear mass density uses a similar formula:
$$
\lambda =\frac{m}{L} \\
\lambda = \frac{dm}{dx}
$$
This means that a hole in a rod can use a different formula:
$$x_{cm} = \frac{1}{M}\int^M_0 xdm$$