Tres masas en un triángulo (CMR)
De Laplace
(→Por el teorema de König) |
|||
(Una edición intermedia no se muestra.) | |||
Línea 3: | Línea 3: | ||
# ¿En qué posición se encuentra el centro de masas del sistema? | # ¿En qué posición se encuentra el centro de masas del sistema? | ||
# ¿Cuánto vale el tensor de inercia de este sólido respecto a unos ejes paralelos a OX, OY y OZ, por el centro de masas? | # ¿Cuánto vale el tensor de inercia de este sólido respecto a unos ejes paralelos a OX, OY y OZ, por el centro de masas? | ||
- | # Si el sólido está girando en torno a un eje que pasa por el CM y con velocidad angular | + | # Si el sólido está girando en torno a un eje que pasa por el CM y con velocidad angular <math>\vec{\omega}=\Omega(\vec{\imath}+\vec{\jmath}+\vec{k})</math>, calcule cuánto valen |
## su momento cinético respecto a G. | ## su momento cinético respecto a G. | ||
## su momento cinético respecto a O. | ## su momento cinético respecto a O. | ||
## su energía cinética. | ## su energía cinética. | ||
+ | |||
==Nota== | ==Nota== | ||
Todas las velocidades se refieren al movimiento {21}, por lo que se omiten los subíndices. | Todas las velocidades se refieren al movimiento {21}, por lo que se omiten los subíndices. | ||
Línea 200: | Línea 201: | ||
lo que da el total | lo que da el total | ||
- | <center><math>T= 12mb^2\Omega^2+72mb^2\Omega^2 = 84mb^2\Omega^2</math></center> | + | <center><math>T= 12mb^2\Omega^2+72mb^2\Omega^2 = 84mb^2\Omega^2\,</math></center> |
última version al 00:00 12 ene 2021
Contenido |
1 Tres masas en un triángulo
Un sólido rígido está formado por tres masas: una 5m, situada en O(0,0,0), una 4m, en A(3b,0,0) y una 3m, en B(0,4b,0).
- ¿En qué posición se encuentra el centro de masas del sistema?
- ¿Cuánto vale el tensor de inercia de este sólido respecto a unos ejes paralelos a OX, OY y OZ, por el centro de masas?
- Si el sólido está girando en torno a un eje que pasa por el CM y con velocidad angular
, calcule cuánto valen
- su momento cinético respecto a G.
- su momento cinético respecto a O.
- su energía cinética.
2 Nota
Todas las velocidades se refieren al movimiento {21}, por lo que se omiten los subíndices.
3 Centro de masas
La posición del CM es la media ponderada de las posiciones de las tres masas
![\overrightarrow{OG}=\frac{5m\vec{0}+4m(3b\vec{\imath})+3m(4b\vec{\jmath})}{5m+4m+3m}=b(\vec{\imath}+\vec{\jmath})](/wiki/images/math/e/e/7/ee70b8808aed56d50be4a356e1ca5803.png)
4 Tensor de inercia
Para hallar el tensor de inercia tenemos dos caminos.
- Directamente mediante las posiciones de las tres partículas respecto a los nuevos ejes.
- Hallando primero el tensor respecto a unos ejes por O y posteriormente aplicar el teorema de Steiner.
Veámoslo de las dos formas.
4.1 Directamente
La posición de las tres masas respecto al CM es, para O
![\overrightarrow{GO}=-\overrightarrow{OG}= -b(\vec{\imath}+\vec{\jmath})](/wiki/images/math/3/b/1/3b1f5964788208cf7466f130d272d6d8.png)
para A
![\overrightarrow{GA}=\overrightarrow{OA}-\overrightarrow{OG}=b(2\vec{\imath})-\vec{\jmath})](/wiki/images/math/4/7/5/475689bbaa597dc91a86b24c2879cb93.png)
y para B
![\overrightarrow{GB}=\overrightarrow{OB}-\overrightarrow{OG}=b(-\vec{\imath})+3\vec{\jmath})](/wiki/images/math/f/f/f/ffface478cf12d3f3b98715ecde1fdd6.png)
Aplicamos ahora la definición de tensor de inercia
![\bar{\bar{I}}=\sum_P m_P\begin{pmatrix}y_P^2+z_P^2& -x_Py_P & -x_Pz_P\\ -x_Py_P & x_P^2+z_P^2 & -y_Pz_P \\ -x_P z_P & -y_Pz_P & x_P^2+y_P^2\end{pmatrix}](/wiki/images/math/3/9/f/39f1c6c28cd4e8c21479680468d2be08.png)
queda para la masa de O, de valor 5m
![\bar{\bar{I}}_1 = mb^2\begin{pmatrix}5& -5 & 0\\ -5 &5 & 0 \\ 0 & 0 & 10\end{pmatrix}](/wiki/images/math/9/3/6/93681b6d51dde1e6de1a9f83146fa524.png)
Para la de A, de valor 4m
![\bar{\bar{I}}_2 = mb^2\begin{pmatrix}4& 12 & 0\\ 12 &16 & 0 \\ 0 & 0 & 20\end{pmatrix}](/wiki/images/math/3/f/4/3f4333ad816df06aabaddc30b32f05f1.png)
y para la de C, de valor 3m
![\bar{\bar{I}}_3=mb^2\begin{pmatrix}27& 9 & 0\\ 9 & 3 & 0 \\ 0 & 0 & 30\end{pmatrix}](/wiki/images/math/e/d/a/eda3486509413e480842dd58cfff2ebd.png)
Sumando los tres tensores
![\bar{\bar{I}}_G=mb^2\begin{pmatrix}36& 16 & 0\\ 16 & 24 & 0 \\ 0 & 0 & 60\end{pmatrix}](/wiki/images/math/1/5/2/152ea56bbbf320f441266463272fe653.png)
Este sería el código que lo hace en Mathematica (muy poco optimizado, pero para que se entienda mejor)
J[m_, P_] := m (P . P IdentityMatrix[3] - KroneckerProduct[P, P])
lm = {5 m, 4 m, 3 m}
mT = Sum[lm[[i]], {i, 3}]
OP = {{0, 0, 0}, {3 b, 0, 0}, {0, 4 b, 0}}
OG = Sum[lm[[i]] OP[[i]], {i, 3}]/mT
GP = Table[OP[[i]] - OG, {i, 3}]
IG = Sum[J[lm[[i]], GP[[i]]], {i, 3}]
MatrixForm[IG]
5 Mediante el teorema de Steiner
Si consideramos las posiciones respecto a los ejes de la figura, los tensores de inercia de cada masa resultan mucho más simples, por estar sobre los ejes.
Para la masa de O, de valor 5m
![\bar{\bar{I}}_1 = mb^2\begin{pmatrix}0& 0 & 0\\ 0 &0 & 0 \\ 0 & 0 & 0\end{pmatrix}](/wiki/images/math/0/4/6/0467178811e584f410e4a15e42f76249.png)
Para la de A, de valor 4m
![\bar{\bar{I}}_2 = mb^2\begin{pmatrix}0& 0 & 0\\ 0 &36 & 0 \\ 0 & 0 & 36\end{pmatrix}](/wiki/images/math/c/f/2/cf2215387493425249314d8d080d68df.png)
y para la de C, de valor 3m
![\bar{\bar{I}}_3=mb^2\begin{pmatrix}48& 0 & 0\\ 0 & 0 & 0 \\ 0 & 0 & 48\end{pmatrix}](/wiki/images/math/8/d/a/8dae3833a0f244dda6c9898f9817f3dd.png)
Sumando los tres tensores
![\bar{\bar{I}}_O=mb^2\begin{pmatrix}48& 0 & 0\\ 0 & 36 & 0 \\ 0 & 0 & 84\end{pmatrix}](/wiki/images/math/a/1/9/a1949a9fd23377d329ba2b2dd03964c8.png)
Por el teorema de Steiner, este tensor cumple
![\bar{\bar{I}}_O= \bar{\bar{I}}_G+m_T\begin{pmatrix}y_G^2+z_G^2& -x_Gy_G & -x_Gz_G\\ -x_Gy_G & x_G^2+z_G^2 & -y_Gz_G \\ -x_G z_G & -y_Gz_G & x_G^2+y_G^2\end{pmatrix}](/wiki/images/math/a/e/a/aea109f66738073958b8ca6bc3f8fcaf.png)
lo que nos da
![mb^2\begin{pmatrix}48& 0 & 0\\ 0 & 36 & 0 \\ 0 & 0 & 84\end{pmatrix}=\bar{\bar{I}}_G+mb^2\begin{pmatrix}12& -12 & 0\\ -12 & 12 & 0 \\ 0 & 0 & 24\end{pmatrix}](/wiki/images/math/2/b/1/2b13c52d3462fc1f77335ca970f5e007.png)
Despejamos y queda
![\bar{\bar{I}}_G=mb^2\begin{pmatrix}36& 12 & 0\\ 12 & 24 & 0 \\ 0 & 0 & 60\end{pmatrix}](/wiki/images/math/7/f/2/7f2cd056eac3dd12cb0d858dc47fc17c.png)
El código para este cálculo sería
J[m_, P_] := m (P . P IdentityMatrix[3] - KroneckerProduct[P, P])
lm = {5 m, 4 m, 3 m}
mT = Sum[lm[[i]], {i, 3}]
OP = {{0, 0, 0}, {3 b, 0, 0}, {0, 4 b, 0}}
OG = Sum[lm[[i]] OP[[i]], {i, 3}]/mT
IO = Sum[J[lm[[i]], OP[[i]]], {i, 3}]
IG = IO - J[mT, OG]
MatrixForm[IG]
6 Estado de rotación
6.1 Momento cinético respecto a G
El momento cinético se calcula como
![\vec{L}_G=\bar{\bar{I}}_G \cdot\vec{\omega}](/wiki/images/math/0/0/8/008a11288deeae3b2abe0d2d90ebd3d3.png)
lo que nos da
![\vec{L}_G=mb^2\begin{pmatrix}36& 12 & 0\\ 12 & 24 & 0 \\ 0 & 0 & 60\end{pmatrix}\cdot \Omega \begin{pmatrix}1 \\ 1\\ 1 \end{pmatrix}=mb^2\Omega \begin{pmatrix}48 \\ 36\\ 60 \end{pmatrix}](/wiki/images/math/e/2/2/e228c6ae2ee43b082fb015fe6eb46d4d.png)
o en forma vectorial
![\vec{L}_G=12mb^2\Omega(4\vec{\imath}+3\vec{\jmath}+5\vec{k})](/wiki/images/math/8/7/4/8744638f1ecf07a6352bc2f94eec1520.png)
6.2 Momento cinético respecto a O
6.2.1 Por el teorema de König
Una forma de hallar el momento cinético respecto a O es mediante el teorema de König
![\vec{L}_O=m_T \overrightarrow{OG}\times \vec{v}_G + \vec{L}_G](/wiki/images/math/0/8/f/08f0e04768436c3fd8f36f938c9256d6.png)
siendo la velocidad del CM
![\vec{v}_G=\vec{\omega}\times\overrightarrow{OG}=\Omega (\vec{\imath}+\vec{\jmath}+\vec{k})\times b(\vec{\imath}+\vec{\jmath})=\Omega b(-\vec{\imath}+\vec{\jmath})](/wiki/images/math/5/2/8/52830ade3f3bbdffc0fecb5c4c1a1356.png)
Por tanto, vale
![\vec{L}_O=12m b(\vec{\imath}+\vec{\jmath})\times \Omega b(-\vec{\imath}+\vec{\jmath})+12mb^2\Omega(4\vec{\imath}+3\vec{\jmath}+5\vec{k})=12mb^2\Omega(4\vec{\imath}+3\vec{\jmath}+7\vec{k})](/wiki/images/math/4/f/f/4ffb610a83396c4a5756db22c66121a6.png)
El código correspondería a añadir, tras las líneas de códigon anteriores
ω = Ω {1, 1, 1}
LG = IG . ω
vG = ω × OG
LO = mT OG × vG + LG
6.2.2 Directamente
En este caso, el punto O es fijo por hallarse en el eje de rotación. Por tanto, es mucho más fácil hallar el momento cinético directamente como
![\vec{L}_O=\bar{\bar{I}}_O\cdot\vec{\omega}](/wiki/images/math/a/7/5/a75204c887db41b22fd2eae6ca0d539a.png)
lo que nos da
![\vec{L}_O=mb^2\begin{pmatrix}48& 0 & 0\\ 0 & 36 & 0 \\ 0 & 0 & 84\end{pmatrix}\cdot \Omega \begin{pmatrix}1 \\ 1\\ 1 \end{pmatrix}=mb^2\Omega \begin{pmatrix}48 \\ 36\\ 84 \end{pmatrix}](/wiki/images/math/8/8/c/88c09f1d5b4d8f29fbe3416ebdfd2f45.png)
que queda, en forma vectorial
![\vec{L}_O=12mb^2\Omega(4\vec{\imath}+3\vec{\jmath}+7\vec{k})](/wiki/images/math/9/c/d/9cd100029d2eeb9fdf64ee1720a541e8.png)
6.3 Energía cinética
6.3.1 Directamente
De nuevo, por ser O un punto fijo
![T=\frac{1}{2}\vec{\omega}\cdot\vec{L}_O=\frac{1}{2}\vec{\omega}\cdot\bar{\bar{I}}_O\cdot\vec{\omega}](/wiki/images/math/1/4/0/140fbe8f6c42621cdf7a2addc2470264.png)
lo que nos da
![T=\frac{1}{2}\Omega(\vec{\imath}+\vec{\jmath}+\vec{k})\cdot 12mb^2\Omega(4\vec{\imath}+3\vec{\jmath}+7\vec{k})=84mb^2\Omega^2](/wiki/images/math/8/1/f/81fc7f2e0c01c44f49bac61b65b18fa9.png)
6.3.2 Por el teorema de König
En general, tanto si O es fijo como si no podemos recurrir al teorema de König
![T=\frac{1}{2}mT |\vec{v}_G|^2 + \frac{1}{2}\vec{\omega}\cdot\bar{\bar{I}}_G\cdot\vec{\omega}](/wiki/images/math/2/2/4/22490cecfd9f3e8a952a8fa084d8cdce.png)
siendo la energía cinética de traslación
![T_T=\frac{1}{2}mT |\vec{v}_G|^2 = 6m(\Omega b)^2(1+1) =12mb^2\Omega^2](/wiki/images/math/f/e/7/fe766ff09d7844083d1568d1e1d7dbb2.png)
y la de rotación
![T_R=\frac{1}{2}\vec{\omega}\cdot\bar{\bar{I}}_G\cdot\vec{\omega} = \frac{1}{2}\vec{\omega}\cdot\vec{L}_G=72mb^2\Omega^2](/wiki/images/math/8/0/7/8076595ad9cf9c804258ba29b23437e4.png)
lo que da el total
![T= 12mb^2\Omega^2+72mb^2\Omega^2 = 84mb^2\Omega^2\,](/wiki/images/math/e/b/7/eb730e9979d6f29f05786b1404471008.png)