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 /2420/CH2/EX2.5 | |
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 '2420/CH2/EX2.5')
-rwxr-xr-x | 2420/CH2/EX2.5/2_5.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/2420/CH2/EX2.5/2_5.sce b/2420/CH2/EX2.5/2_5.sce new file mode 100755 index 000000000..c316b3434 --- /dev/null +++ b/2420/CH2/EX2.5/2_5.sce @@ -0,0 +1,11 @@ +clc
+clear
+//Initialization of variables
+H1=0.059
+O1=0.199
+C=0.66
+S=0.011
+//calculations
+Qh1= 11.52*C+34.56*(H1-O1/8)+4.32*S
+//results
+printf("Theoretical air required = %.2f lb of air per lb of coal ",Qh1)
|