summaryrefslogtreecommitdiff
path: root/2120/CH2/EX2.15
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2120/CH2/EX2.15
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2120/CH2/EX2.15')
-rwxr-xr-x2120/CH2/EX2.15/exa_2_15.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2120/CH2/EX2.15/exa_2_15.sce b/2120/CH2/EX2.15/exa_2_15.sce
new file mode 100755
index 000000000..07a7c0212
--- /dev/null
+++ b/2120/CH2/EX2.15/exa_2_15.sce
@@ -0,0 +1,16 @@
+// Exa 2.15
+clc;
+clear;
+close;
+// Given data
+p= 0.98;// in bar
+p= p*10^5;// in N/m^2
+v=1000;// in m^3
+T= 27+273;// in K
+g= 9.8;
+M=2;
+Ro= 8314;// in J/kg-mole K
+R=Ro/M;// in kg K
+m= p*v/(R*T);// in kg
+W= m*g;// in N
+disp(W,"The load that can be lifted with the air of aerostat in N is : ")