summaryrefslogtreecommitdiff
path: root/3871/CH8/EX8.5/Ex8_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3871/CH8/EX8.5/Ex8_5.sce')
-rw-r--r--3871/CH8/EX8.5/Ex8_5.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3871/CH8/EX8.5/Ex8_5.sce b/3871/CH8/EX8.5/Ex8_5.sce
new file mode 100644
index 000000000..737709ff2
--- /dev/null
+++ b/3871/CH8/EX8.5/Ex8_5.sce
@@ -0,0 +1,18 @@
+//===========================================================================
+//chapter 8 example 5
+
+clc;clear all;
+
+//variable declaration
+n = 15; //number of revolutions made
+M = 750; //meter constant in revolutions per kWh
+T = 30; //time in seconds
+
+//calculations
+E = n/(M); //Energy consumed in 30 seconds
+L = (E*3600)/T; //load in kW
+
+//result
+mprintf("Energy consumed in 30 seconds = %3.2f kWh",E);
+mprintf("\nLoad = %3.2f kW",L);
+