diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /51/CH2/EX2.3/2_3.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '51/CH2/EX2.3/2_3.sce')
-rwxr-xr-x | 51/CH2/EX2.3/2_3.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/51/CH2/EX2.3/2_3.sce b/51/CH2/EX2.3/2_3.sce new file mode 100755 index 000000000..05e64e839 --- /dev/null +++ b/51/CH2/EX2.3/2_3.sce @@ -0,0 +1,13 @@ +clc;
+clear;
+T=10;//degree C
+dmax=40;//m
+p=598;//mm Hg
+//pressure in lake at any depth h is given by p=gamma*h + local barometric pressure 'pbar'
+//pbar/(gamma Hg)=598 mm= .598 m ; (gamma Hg) = 133kN/m^3
+pbar=0.598*133;//kN/m^2
+//(gamma water)=9.804 kN/m^3 at 10 dergree C
+p=(9.804*40)+pbar;//kN/m^2
+disp("kPa",pbar,"The local barometric pressure=")
+disp("kPa",p,"The absolute pressure at a depth of 40 m in the lake=")
+
\ No newline at end of file |