diff options
Diffstat (limited to '2135/CH1/EX1.5/Exa_1_5.sce')
-rwxr-xr-x | 2135/CH1/EX1.5/Exa_1_5.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2135/CH1/EX1.5/Exa_1_5.sce b/2135/CH1/EX1.5/Exa_1_5.sce new file mode 100755 index 000000000..567944b82 --- /dev/null +++ b/2135/CH1/EX1.5/Exa_1_5.sce @@ -0,0 +1,13 @@ +//Exa 1.5
+clc;
+clear;
+close;
+format('v',7);
+
+//Given Data :
+VGR=57;//KN/m^2
+Patm=765;//mm of Hg
+//101.325KN/m^2=760 mm of Hg
+VGR=VGR*760/101.325;//mm og Hg
+Pabs=Patm-VGR;//mm of Hg
+disp(Pabs,"Absolute pressure in mm of Hg : ");
|