diff options
Diffstat (limited to '2666/CH4/EX4.3/Ex4_3.sce')
-rwxr-xr-x | 2666/CH4/EX4.3/Ex4_3.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2666/CH4/EX4.3/Ex4_3.sce b/2666/CH4/EX4.3/Ex4_3.sce new file mode 100755 index 000000000..98f37eb36 --- /dev/null +++ b/2666/CH4/EX4.3/Ex4_3.sce @@ -0,0 +1,16 @@ + +clc
+//initialisation of variables
+p=1250//Btu per lb
+E=1075//Btu per lb
+f=4290//lb per hr
+d=290//hp
+h=33000//ft
+t=778//R
+t1=60//sec
+//CALCULATIONS
+H=f*(p-E)//Btu per hr
+W=(d*h*t1)/t//Btu per hr
+Q=H-W//Btu per hr
+//RESULTS
+printf('The radiation loss per hour from the engine=% f Btu per hr',Q)
|