Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Elongation of a cone (replaced by n circular cylinders)
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Spencer
ha marcado con alerta este/a pregunta
I have this problem which asks to find the elongation of a cone given by the equation, but replaced with n circular cylinders.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1145470/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1145475/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/1145480/image.png)
I have this for the code but I don't know how to incorperate the n ciruclar cylinders part, I was wondering if someone could help me. Also, how would I go about finding the % error and graphing the results? Thank you in advance.
%Load P applied at a certain distance. Also define other variables
p=40;
d=0:1:50;
L = 1
c = .25
E = .00016
%Elongation of the cylinder as given by the equation
(P*L)/(2*3.141*c^2*.E)
1 comentario
James Tursa
el 4 de Oct. de 2022
Editada: James Tursa
el 4 de Oct. de 2022
%Load P applied at a certain distance. Also define other variables
P=40;
d=0:1:50;
L = 1;
c = .25;
E = .00016;
%Elongation of the cylinder as given by the equation
(P*L)/(2*pi*c^2*E)
Can you explain more what this elongation is?
Respuestas (0)
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!