summaryrefslogtreecommitdiff
path: root/2471/CH8/EX8.6/Ex8_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '2471/CH8/EX8.6/Ex8_6.sce')
-rwxr-xr-x2471/CH8/EX8.6/Ex8_6.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2471/CH8/EX8.6/Ex8_6.sce b/2471/CH8/EX8.6/Ex8_6.sce
new file mode 100755
index 000000000..109a92b22
--- /dev/null
+++ b/2471/CH8/EX8.6/Ex8_6.sce
@@ -0,0 +1,14 @@
+clear ;
+clc;
+// Example 8.6
+printf('Example 8.6\n\n');
+printf('Page No. 234\n\n');
+
+//given
+T_lamp = 12*10^3;// Output for the tungsten filament lamp in lm per 10^3 W
+F_tube = 63*10^3;// Output for the fluorescent tubes in lm per 10^3 W
+Save = F_tube - T_lamp;// in W
+printf('Energy saving is %.0f lm per 10^3 W \n',Save)
+
+Save_pcent = (Save/F_tube)*100;
+printf('Energy saving per cent is %.0f ',floor(Save_pcent))