summaryrefslogtreecommitdiff
path: root/2144/CH3/EX3.19
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2144/CH3/EX3.19
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 '2144/CH3/EX3.19')
-rwxr-xr-x2144/CH3/EX3.19/ex3_19.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/2144/CH3/EX3.19/ex3_19.sce b/2144/CH3/EX3.19/ex3_19.sce
new file mode 100755
index 000000000..7413b3ac4
--- /dev/null
+++ b/2144/CH3/EX3.19/ex3_19.sce
@@ -0,0 +1,19 @@
+// Exa 3.19
+clc;
+clear;
+close;
+// Given data
+R = 0.287;// in kJ/kg-K
+P1 = 30;// in bar
+V1 = 0.12;// in m^3
+m = 1.8;// in kg
+U= 8.3143;// in kJ/kg-mol-K
+T1 = (P1 * 10^5 * V1)/(m*R*10^3);// in K
+T1 = T1 - 273;// in degree C
+disp(T1,"The temperature in degree C is");
+m_m = U/R;// in kg
+disp(m_m,"The molecular mass in kg is");
+V_s = V1/m;// in m^3
+disp(V_s,"The Specific volume in m^3 is');
+V_m = V_s * m_m;// in m^3
+disp(V_m,"Molecular volume in m^3 is");