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 --- 1445/CH8/EX8.28/ch8_ex_28.sce | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 1445/CH8/EX8.28/ch8_ex_28.sce (limited to '1445/CH8/EX8.28/ch8_ex_28.sce') diff --git a/1445/CH8/EX8.28/ch8_ex_28.sce b/1445/CH8/EX8.28/ch8_ex_28.sce new file mode 100644 index 000000000..318634584 --- /dev/null +++ b/1445/CH8/EX8.28/ch8_ex_28.sce @@ -0,0 +1,24 @@ +//CHAPTER 8- DIRECT CURRENT MACHINES +//Example 28 + +disp("CHAPTER 8"); +disp("EXAMPLE 28"); + +//VARIABLE INITIALIZATION +E_a=120; //in Volts +r_se=0.03; //in Ohms +r_a=0.02; //in Ohms +v1=240; //in Volts +r=0.25; //in Ohms +I=300; //in Amperes + +//SOLUTION +v=I*(r_se+r_a+r); +disp(sprintf("The voltage drop across the three resistances is %d V",v)); +v_t=v1+E_a-v; +disp(sprintf("The voltage between far end and the bus bar is %d V",v_t)); +disp(sprintf("The net increase of %d V may be beyond the desired limit",v_t-v1)); +disp("Hence, a field diverter resistance may be necessary to regulate the far-end terminal voltage"); + +//END + -- cgit