diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1445/CH8/EX8.28 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1445/CH8/EX8.28')
-rw-r--r-- | 1445/CH8/EX8.28/Ex8_28.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/1445/CH8/EX8.28/Ex8_28.sce b/1445/CH8/EX8.28/Ex8_28.sce new file mode 100644 index 000000000..8cc1c1c85 --- /dev/null +++ b/1445/CH8/EX8.28/Ex8_28.sce @@ -0,0 +1,26 @@ +//CHAPTER 8- DIRECT CURRENT MACHINES +//Example 28 + +disp("CHAPTER 8"); +disp("EXAMPLE 28"); + +//series generator +//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); // voltage drop across Rse and ra and feeder +disp(sprintf("The voltage drop across the three resistances is %d V",v)); +//hence the voltage between far end and bus bar is: +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 + |