summaryrefslogtreecommitdiff
path: root/3733/CH5/EX5.3/Ex5_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '3733/CH5/EX5.3/Ex5_3.sce')
-rw-r--r--3733/CH5/EX5.3/Ex5_3.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/3733/CH5/EX5.3/Ex5_3.sce b/3733/CH5/EX5.3/Ex5_3.sce
new file mode 100644
index 000000000..9daa0b0f4
--- /dev/null
+++ b/3733/CH5/EX5.3/Ex5_3.sce
@@ -0,0 +1,10 @@
+//Example 5_3
+clc;funcprot(0);
+// Given values
+P=100;// Power in kW
+CV=4000;// Calorific value in kJ/m^3
+n_o=0.20;// Over all efficiency of the plant
+
+// Calculation
+V=(3600*P)/(CV*n_o);// m^3/hr
+printf('The volume of gas required per hour,V=%0.0f m^3/hr\n',V);