diff options
Diffstat (limited to '2159/CH1/EX1.1/1.sce')
-rwxr-xr-x | 2159/CH1/EX1.1/1.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2159/CH1/EX1.1/1.sce b/2159/CH1/EX1.1/1.sce new file mode 100755 index 000000000..38f589de9 --- /dev/null +++ b/2159/CH1/EX1.1/1.sce @@ -0,0 +1,9 @@ +//problem 1.1
+p=343350 //pressure at any point in pa
+w=9810 //gravitational constant
+h1=(p/w)
+disp(h1 ,"pressure in term of height of water(m)")
+s1=1
+s2=13.6
+h2=h1*s1/s2
+disp(h2 ,"pressure in term of height of mercury(m)")
|