summaryrefslogtreecommitdiff
path: root/3720/CH3/EX3.13/Ex3_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '3720/CH3/EX3.13/Ex3_13.sce')
-rw-r--r--3720/CH3/EX3.13/Ex3_13.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/3720/CH3/EX3.13/Ex3_13.sce b/3720/CH3/EX3.13/Ex3_13.sce
new file mode 100644
index 000000000..5077ef971
--- /dev/null
+++ b/3720/CH3/EX3.13/Ex3_13.sce
@@ -0,0 +1,12 @@
+// Example 3_13
+clc;clear;funcprot(0);
+// Given values
+h_0=0.5;// m
+Z_R=0.6;// m
+g=9.81;// m/s^2
+R=0.1;// m
+//Calculation
+omega=sqrt((4*g*(Z_R-h_0))/R^2);// rad/s
+printf('The maximum rotational speed of the container,omega=%0.1f rad/s \n',omega);
+n=(omega/(2*%pi))*60;// rpm
+printf('The rotational speed of the container expressed in terms of rpm,n=%0.0f rpm\n',n);