summaryrefslogtreecommitdiff
path: root/24/CH11/EX11.10
diff options
context:
space:
mode:
Diffstat (limited to '24/CH11/EX11.10')
-rwxr-xr-x24/CH11/EX11.10/Example11_10.sce14
-rwxr-xr-x24/CH11/EX11.10/Example11_10_result.txt2
2 files changed, 16 insertions, 0 deletions
diff --git a/24/CH11/EX11.10/Example11_10.sce b/24/CH11/EX11.10/Example11_10.sce
new file mode 100755
index 000000000..ab57e591b
--- /dev/null
+++ b/24/CH11/EX11.10/Example11_10.sce
@@ -0,0 +1,14 @@
+//Given that
+m = 1 //(say)
+R = 0.15 //in meter
+L = 2.0 * R
+g = 9.8 //in m/s^2
+
+//Sample Problem 11-10
+printf("**Sample Problem 11-10**\n")
+I = 0.5*m*R^2 + m*L^2/12 + m*(L/2+R)^2
+deltaU = m* g* (L + 2*R)
+//deltaK = 0.5*I*w^2
+//therefore-
+w = sqrt(deltaU/(0.5*I))
+printf("The angular speed is equal to %frad/s", w) \ No newline at end of file
diff --git a/24/CH11/EX11.10/Example11_10_result.txt b/24/CH11/EX11.10/Example11_10_result.txt
new file mode 100755
index 000000000..b60f86b58
--- /dev/null
+++ b/24/CH11/EX11.10/Example11_10_result.txt
@@ -0,0 +1,2 @@
+**Sample Problem 11-10**
+The angular speed is equal to 10.398939rad/s \ No newline at end of file