diff options
Diffstat (limited to '2021/CH21/EX21.12/EX21_12.sce')
-rwxr-xr-x | 2021/CH21/EX21.12/EX21_12.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2021/CH21/EX21.12/EX21_12.sce b/2021/CH21/EX21.12/EX21_12.sce new file mode 100755 index 000000000..c829e9b10 --- /dev/null +++ b/2021/CH21/EX21.12/EX21_12.sce @@ -0,0 +1,13 @@ +//Finding of Pressure of water
+//Given
+W=490500;
+Fr=39240;
+d=40;
+//To Find
+A=(%pi/4)*d^2;
+Wu=W+Fr;
+P1=Wu/A;
+Wd=W-Fr;
+P2=Wd/A;
+disp("Pressure while moving up ="+string(P1)+" N/cm^2");
+disp("Pressure while moving down ="+string(P2)+" N/cm^2");
|