diff options
Diffstat (limited to '1268/CH1/EX1.3/1_3.sce')
-rw-r--r-- | 1268/CH1/EX1.3/1_3.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1268/CH1/EX1.3/1_3.sce b/1268/CH1/EX1.3/1_3.sce new file mode 100644 index 000000000..25d67d639 --- /dev/null +++ b/1268/CH1/EX1.3/1_3.sce @@ -0,0 +1,11 @@ +clc;
+disp("Example 1.3")
+density= 1200 // in kg/m^3
+r= 0.15 // bowl radius in m
+Ri=0.12 // interface position from the bowl axis in m
+n= 3500 // rotational speed in rpm
+omega= %pi*2*n/60
+p= density*omega*omega*(r^2-Ri^2)/2
+disp(" Gauge pressure is ")
+disp(p)
+disp(" N/m^2")
|