diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1445/CH8/EX8.33/ch8_ex_33.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1445/CH8/EX8.33/ch8_ex_33.sce')
-rw-r--r-- | 1445/CH8/EX8.33/ch8_ex_33.sce | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/1445/CH8/EX8.33/ch8_ex_33.sce b/1445/CH8/EX8.33/ch8_ex_33.sce new file mode 100644 index 000000000..28ccd4097 --- /dev/null +++ b/1445/CH8/EX8.33/ch8_ex_33.sce @@ -0,0 +1,30 @@ +//CHAPTER 8- DIRECT CURRENT MACHINES +//Example 33 + +disp("CHAPTER 8"); +disp("EXAMPLE 33"); + +//VARIABLE INITIALIZATION +v_t=230; //in Volts +N1=1500; //in rpm +I_a1=20; //in Amperes +r_a=0.3; //armature resistance in Ohms +r_se=0.2; //series field resistance in Ohms + +//SOLUTION + +//solution (a) +E_b=0; //at starting +nr1=v_t-I_a1*(r_a+r_se); //value of numerator +r_ext=nr1/I_a1; +disp(sprintf("(a) At starting, the resistance that must be added is %f Ω",r_ext)); + +//solution (b) +I_a2=I_a1; +N2=1000; +ratio=N2/N1; +nr2=v_t-I_a2*(r_a+r_se); +r_ext=((ratio*nr1)-nr2)/(-I_a2); +disp(sprintf("(b) At 1000 rpm, the resistance that must be added is %f Ω",r_ext)); + +//END |