summaryrefslogtreecommitdiff
path: root/3131/CH11/EX11.6/11_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '3131/CH11/EX11.6/11_6.sce')
-rw-r--r--3131/CH11/EX11.6/11_6.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3131/CH11/EX11.6/11_6.sce b/3131/CH11/EX11.6/11_6.sce
new file mode 100644
index 000000000..bcd7b654a
--- /dev/null
+++ b/3131/CH11/EX11.6/11_6.sce
@@ -0,0 +1,10 @@
+clear all; clc;
+disp("Ex 11_6")
+//From the potential function analysis and te equilibrium analysis
+m=69.14/10.58
+printf('\n\n m = %0.2f kg',m)
+//Second derivative of V w.r.t. theta at m=6.53 kg and theta=20 degrees is:
+theta=20*%pi/180
+a=(-73.6*sin(theta))-((m*9.81*-1*(-3.6*cos(theta))^2)/(2*2*(3.69-(3.6*sin(theta)))^(3/2)))-((m*9.81*-3.6*sin(theta))/(2*sqrt(3.69-(3.6*sin(theta)))))
+printf('\n\n The second derivative of V w.r.t. theta at m=6.53 kg and theta=20 degrees is -%0.1f',a)
+disp("Unstable equilibrium at theta = 20 degress")