diff options
Diffstat (limited to '2132/CH4/EX4.7')
-rwxr-xr-x | 2132/CH4/EX4.7/Example4_7.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2132/CH4/EX4.7/Example4_7.sce b/2132/CH4/EX4.7/Example4_7.sce new file mode 100755 index 000000000..39654a300 --- /dev/null +++ b/2132/CH4/EX4.7/Example4_7.sce @@ -0,0 +1,15 @@ +//Example 4.7
+clc;
+clear;
+close;
+format('v',9);
+//Given data :
+S1=0.005;//sp. gravity
+S2=1;//sp. gravity
+Patm=1.014*10^5;//Pa
+h=50/1000;//m
+w=1000;//kg/m^3
+pa=-w*S2*h;//kg/m^2
+Pabs=pa*9.81+Patm;//
+disp(abs(pa*9.81),"Pressure intensity of gas in Pa(Vaccum): ");
+disp(Pabs,"Absolute pressure in the pipe in Pa: ");
|