Diferencia entre revisiones de «La Cicloide (Grupo 49)»
| Línea 4: | Línea 4: | ||
== Introducción == | == Introducción == | ||
| + | Se considera la curva plana dada por la parametrización en coordenadas cartesianas: <br /> | ||
| + | Vector posición: <br /> | ||
| + | <math> γ(t) = (x(t), y(t)) = (3(t-sint),3(1-cost))</math> <br /> | ||
| + | == Representación de la curva == | ||
[[Archivo:Cicloide.jpeg|600px|Figura 1. Representación del cicloide]] | [[Archivo:Cicloide.jpeg|600px|Figura 1. Representación del cicloide]] | ||
| − | |||
{{matlab|codigo= | {{matlab|codigo= | ||
% Datos | % Datos | ||
| Línea 22: | Línea 25: | ||
ylabel('y(t)'); | ylabel('y(t)'); | ||
}} | }} | ||
| − | |||
| − | |||
| − | <br /> | + | == Cálculo de los vectores velocidad y aceleración y su representación == |
| + | Vector velocidad:<br /> | ||
<math> γ'(t)= (x’(t)\vec i + y’ (t)\vec j) = (3 (1-cos t )\vec i + 3 (sin t)\vec j) </math> <br /> | <math> γ'(t)= (x’(t)\vec i + y’ (t)\vec j) = (3 (1-cos t )\vec i + 3 (sin t)\vec j) </math> <br /> | ||
| − | + | Vector aceleración: <br /> | |
| − | <br /> | + | |
<math> γ''(t)= (x’’(t)\vec i + y’’ (t)\vec j) = (3 (sint )\vec i + 3 (cos t)\vec j) </math> <br /> | <math> γ''(t)= (x’’(t)\vec i + y’’ (t)\vec j) = (3 (sint )\vec i + 3 (cos t)\vec j) </math> <br /> | ||
| − | + | Representado de la velocidad en MATLAB:<br /> | |
| − | + | {{matlab|codigo= | |
| − | + | R=3; | |
| + | t=linspace(0,2*pi,100); % dominio | ||
| + | % Ecuaciones parametricas | ||
| + | X=R*(t-sin(t)); | ||
| + | Y=R*(1-cos(t)); | ||
| + | % Vectores de la velocidad | ||
| + | vx=R*(1-cos(t)); | ||
| + | vy=R*(sin(t)); | ||
| + | % Dibujo | ||
| + | figure; | ||
| + | hold on | ||
| + | plot(X,Y,'red','LineWidth',3); | ||
| + | axis equal; | ||
| + | grid on; | ||
| + | title('La Cicloide'); | ||
| + | xlabel('x(t)'); | ||
| + | ylabel('y(t)'); | ||
| + | % Dibujo vectores velocidad | ||
| + | for i=1:3:100 | ||
| + | quiver(X(i),Y(i),vx(i),vy(i),1,'color','green','LineWidth',0.7,'MaxHeadSize',0.3); | ||
| + | end | ||
| + | axis([-1,max(X)+2,-2,max(Y)+2]) | ||
| + | legend('Cicloide','Vectores de velocidad','location','best'); | ||
| + | hold off | ||
| + | }} | ||
[[Archivo:Cicloidevelocidad.jpeg|600px|Figura 1. Representación del cicloide]] | [[Archivo:Cicloidevelocidad.jpeg|600px|Figura 1. Representación del cicloide]] | ||
| + | <br /> | ||
| + | Representación de la aceleración en MATLAB:<br /> | ||
[[Archivo:Cicloideaceleracion.jpeg|600px|Figura 1. Representación del cicloide]] | [[Archivo:Cicloideaceleracion.jpeg|600px|Figura 1. Representación del cicloide]] | ||
| + | |||
| + | Longitud de la curva: <br /> | ||
| + | <math> ℓ(γ) = \int_{a}^{b}|γ′(t)|=\int_{a}^{b}\sqrt {x´(t)^2 +y´(t)^2}dt= \int_{0}^{2π}\sqrt{(3-3cost)^2 +(3sent)^2}dt </math> <br /> | ||
| + | Módulo de la velocidad: <br /> | ||
| + | <math> |γ′(t)|= \sqrt{9((1- cost)^2+sen^2t)} </math> <br /> | ||
| + | Vector tangente: <br /> | ||
| + | <math> \vec t(t) = \frac{γ'(t)}{|γ'(t)|} = \frac{3((1-cost)\vec i + (sint)\vec j)}{3(\sqrt{2-2cost})} = \frac{(1-cost)\vec i + (sint)\vec j}{\sqrt{2-2cost}}</math> <br /> | ||
| + | Vector normal: <br /> | ||
| + | <math> \vec n(t) = \vec b x \vec t=(matriz)= \frac{(-sint)\vec i + (1-cost)\vec j}{\sqrt{2-2cost}} </math> <br /> | ||
Revisión del 12:21 28 nov 2025
| Trabajo realizado por estudiantes | |
|---|---|
| Título | La Cicloide. Grupo 49. |
| Asignatura | Teoría de Campos |
| Curso | 2025-26 |
| Autores | Bruno Goméz Vergara Irene Yuan González Laruas Elisa Amelia Lincango Sarango Belén Mena Velasco Adrián Menéndez Alonso |
| Este artículo ha sido escrito por estudiantes como parte de su evaluación en la asignatura | |
1 Introducción
Se considera la curva plana dada por la parametrización en coordenadas cartesianas:
Vector posición:
[math] γ(t) = (x(t), y(t)) = (3(t-sint),3(1-cost))[/math]
2 Representación de la curva
% Datos
R=3;
t=linspace(0,2*pi,100); %dominio
% Ecuaciones parametricas
X=R*(t-sin(t));
Y=R*(1-cos(t));
%Dibujo
figure;
plot(X,Y,'red','LineWidth',1);
axis equal;
grid on;
title('La Cicloide');
xlabel('x(t)');
ylabel('y(t)');
3 Cálculo de los vectores velocidad y aceleración y su representación
Vector velocidad:
[math] γ'(t)= (x’(t)\vec i + y’ (t)\vec j) = (3 (1-cos t )\vec i + 3 (sin t)\vec j) [/math]
Vector aceleración:
[math] γ''(t)= (x’’(t)\vec i + y’’ (t)\vec j) = (3 (sint )\vec i + 3 (cos t)\vec j) [/math]
Representado de la velocidad en MATLAB:
R=3;
t=linspace(0,2*pi,100); % dominio
% Ecuaciones parametricas
X=R*(t-sin(t));
Y=R*(1-cos(t));
% Vectores de la velocidad
vx=R*(1-cos(t));
vy=R*(sin(t));
% Dibujo
figure;
hold on
plot(X,Y,'red','LineWidth',3);
axis equal;
grid on;
title('La Cicloide');
xlabel('x(t)');
ylabel('y(t)');
% Dibujo vectores velocidad
for i=1:3:100
quiver(X(i),Y(i),vx(i),vy(i),1,'color','green','LineWidth',0.7,'MaxHeadSize',0.3);
end
axis([-1,max(X)+2,-2,max(Y)+2])
legend('Cicloide','Vectores de velocidad','location','best');
hold off
Representación de la aceleración en MATLAB:
Longitud de la curva:
[math] ℓ(γ) = \int_{a}^{b}|γ′(t)|=\int_{a}^{b}\sqrt {x´(t)^2 +y´(t)^2}dt= \int_{0}^{2π}\sqrt{(3-3cost)^2 +(3sent)^2}dt [/math]
Módulo de la velocidad:
[math] |γ′(t)|= \sqrt{9((1- cost)^2+sen^2t)} [/math]
Vector tangente:
[math] \vec t(t) = \frac{γ'(t)}{|γ'(t)|} = \frac{3((1-cost)\vec i + (sint)\vec j)}{3(\sqrt{2-2cost})} = \frac{(1-cost)\vec i + (sint)\vec j}{\sqrt{2-2cost}}[/math]
Vector normal:
[math] \vec n(t) = \vec b x \vec t=(matriz)= \frac{(-sint)\vec i + (1-cost)\vec j}{\sqrt{2-2cost}} [/math]