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 /23/CH2/EX2.15 | |
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 '23/CH2/EX2.15')
-rwxr-xr-x | 23/CH2/EX2.15/Example_2_15.pdf | bin | 0 -> 4722 bytes | |||
-rwxr-xr-x | 23/CH2/EX2.15/Example_2_15.sce | 18 |
2 files changed, 18 insertions, 0 deletions
diff --git a/23/CH2/EX2.15/Example_2_15.pdf b/23/CH2/EX2.15/Example_2_15.pdf Binary files differnew file mode 100755 index 000000000..503fa5dec --- /dev/null +++ b/23/CH2/EX2.15/Example_2_15.pdf diff --git a/23/CH2/EX2.15/Example_2_15.sce b/23/CH2/EX2.15/Example_2_15.sce new file mode 100755 index 000000000..716feefed --- /dev/null +++ b/23/CH2/EX2.15/Example_2_15.sce @@ -0,0 +1,18 @@ +clear;
+clc;
+
+//Example 2.15
+//Caption : Program To find the Heat to be Removed during Compression
+
+//Given values
+
+V=600;//[m/s]
+W_compression=240;//[KJ/Kg]
+
+//Solution
+//Using Eqn(2.32a)
+Q=(1/2*(V*V)/1000)-W_compression;
+
+disp('KJ/kg',-Q,'Thus Heat Removed from each KG of air compressed is')
+
+//End
\ No newline at end of file |