From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3472/CH3/EX3.1/Example3_1.sce | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 3472/CH3/EX3.1/Example3_1.sce (limited to '3472/CH3/EX3.1') diff --git a/3472/CH3/EX3.1/Example3_1.sce b/3472/CH3/EX3.1/Example3_1.sce new file mode 100644 index 000000000..ef07b4ca5 --- /dev/null +++ b/3472/CH3/EX3.1/Example3_1.sce @@ -0,0 +1,29 @@ +// A Texbook on POWER SYSTEM ENGINEERING +// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar +// DHANPAT RAI & Co. +// SECOND EDITION + +// PART I : GENERATION +// CHAPTER 3: HYDRO-ELECTRIC STATIONS + +// EXAMPLE : 3.1 : +// Page number 41 +clear ; clc ; close ; // Clear the work space and console + +// Given data +Q = 95.0 // Minimum run-off(m^3/sec) +h = 40.0 // Head(m) + +// Calculations +w = 1000.0 // Density of water(kg/m^3) +weight = Q*w // Weight of water per sec(kg) +work_done = weight*h // Work done in one second(kg-mt) +kW_1 = 75.0/0.746 // 1 kW(kg-mt/sec) +power = work_done/kW_1 // Power production(kW) +hours_year = 365.0*24 // Total hours in a year +output = power*365*24.0 // Yearly gross output(kWhr) + +// Results +disp("PART I - EXAMPLE : 3.1 : SOLUTION :-") +printf("\nFirm capacity = %.f kW", power) +printf("\nYearly gross output = %.2e kWhr.", output) -- cgit