diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /629/CH4/EX4.4 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '629/CH4/EX4.4')
-rw-r--r-- | 629/CH4/EX4.4/ex4_4.txt | 3 | ||||
-rw-r--r-- | 629/CH4/EX4.4/example4_4.sce | 12 |
2 files changed, 15 insertions, 0 deletions
diff --git a/629/CH4/EX4.4/ex4_4.txt b/629/CH4/EX4.4/ex4_4.txt new file mode 100644 index 000000000..b63c1ade1 --- /dev/null +++ b/629/CH4/EX4.4/ex4_4.txt @@ -0,0 +1,3 @@ +
+The elevation difference between the liquid at the center and the wall, during rotation = 0.051 m.
+
\ No newline at end of file diff --git a/629/CH4/EX4.4/example4_4.sce b/629/CH4/EX4.4/example4_4.sce new file mode 100644 index 000000000..2feeece3d --- /dev/null +++ b/629/CH4/EX4.4/example4_4.sce @@ -0,0 +1,12 @@ +clear
+clc
+//Example 4.4 SURFACE PROFILE OF ROTATING LIQUID
+g=9.81; //[m/s^2]
+d=0.5; //[m]
+w=4; //(rad/s)
+//(p1/gamma)+z1-(w^2*r1^2/(2*g))=(p2/gamma)+z2-(w^2*r2^2/(2*g))
+//p1=p2
+r1=0; //[m]
+r2=d/2; //[m]
+delz=(w^2*(r2^2-r1^2)/(2*g)) //delz=(z2-z1),[m]
+printf("\nThe elevation difference between the liquid at the center and the wall, during rotation = %.3f m.\n",delz)
\ No newline at end of file |