From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3871/CH8/EX8.5/Ex8_5.sce | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 3871/CH8/EX8.5/Ex8_5.sce (limited to '3871/CH8/EX8.5/Ex8_5.sce') 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); + -- cgit