diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1328/CH19/EX19.3/19_3.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1328/CH19/EX19.3/19_3.sce')
-rw-r--r-- | 1328/CH19/EX19.3/19_3.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/1328/CH19/EX19.3/19_3.sce b/1328/CH19/EX19.3/19_3.sce new file mode 100644 index 000000000..70aeb18eb --- /dev/null +++ b/1328/CH19/EX19.3/19_3.sce @@ -0,0 +1,17 @@ +printf("\t example 19.3 \n");
+Qr=1.5; // Qr=(QF2/QF1)
+Cr=1.5; // Cr=(CR2/CR1)
+Gr=140/125; // Gr=(G2/G1)
+Qr1=0.38; // Qr1=(Q1/QF1)
+printf("\t approxiate values are mentioned in the book \n");
+a1=1.63; // a1=(G1*(CR1/27)^(1/2)), from eq 19.17
+printf("\t a1 is : %.2f \n",a1);
+a2=1.37*(a1); // a2=(G2*(CR2/27)^(1/2))
+printf("\t a2 is : %.2f \n",a2);
+Qr2=(1/(1+a2)); // Qr2=(Q2/QF2),from eq 19.15
+printf("\t Qr2 is : %.2f \n",Qr2);
+Q21=(Qr2/Qr1)*(Qr); // Q21=(Q2/Q1)
+printf("\t ratio of heats is : %.2f \n",Q21);
+printf("\t Hence the radiant absorption will be increased only 22 per cent for an increase of 50 per cent in the heat liberated. \n");
+// end
+
|