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 /1418/CH26/EX26.20.a | |
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 '1418/CH26/EX26.20.a')
-rw-r--r-- | 1418/CH26/EX26.20.a/EX26_20a.jpg | bin | 0 -> 100263 bytes | |||
-rw-r--r-- | 1418/CH26/EX26.20.a/EX26_20a.sce | 35 |
2 files changed, 35 insertions, 0 deletions
diff --git a/1418/CH26/EX26.20.a/EX26_20a.jpg b/1418/CH26/EX26.20.a/EX26_20a.jpg Binary files differnew file mode 100644 index 000000000..b78346fc0 --- /dev/null +++ b/1418/CH26/EX26.20.a/EX26_20a.jpg diff --git a/1418/CH26/EX26.20.a/EX26_20a.sce b/1418/CH26/EX26.20.a/EX26_20a.sce new file mode 100644 index 000000000..de0cdf80b --- /dev/null +++ b/1418/CH26/EX26.20.a/EX26_20a.sce @@ -0,0 +1,35 @@ +//EXAMPE 26.20(a)
+//4-POLE DC SHUNT GENERATOR
+
+clc;
+funcprot(0);
+
+//Variable Initialisation
+V=poly(0,'V');
+P=4;.........................//Total number of poles
+Rsh=100;........................//Shunt field resistance in Ohms
+Ra=1;..........................//Armature resisitance in Ohms
+Aw=2;........................//Number of parallel paths in a wave wound generator
+Z=378;.....................//Total number of conductors
+Phi=0.02;.................//Flux per pole in Weber
+Rl=10;.....................//Load resistance in Ohms
+N=1000;..................//Speed of the generator in rpm
+
+Eg=(Phi*P*N*Z)/(60*Aw);....................//Generated EMF in Volts
+disp(Eg,"Generated EMF in Volts:");
+Ia=V/10+V/100;...........................//Load current(V/10)+Shunt current(V/100) in Amperes
+V1=Eg-(Ia*Ra)-V;.......................//Equation for terminal voltage in Volts
+r=roots(V1);...........................//Solution to the above equation
+y=round(r);............................//Rounding of decimal places
+disp(y,"Terminal voltage in Volts:");
+I=y/Rl;...........................//Load current in Amperes
+disp(I,"Load current in Amperes:");
+Pa=y*I;.........................//Power absorbed by the load in Watts
+y1=round(Pa);.......................//Rounding of decimal places
+disp(y1,"Power absorbed by the load in Watts:");
+
+
+
+
+
+
|