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 /3681/CH9/EX9.27/Ex9_27.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 '3681/CH9/EX9.27/Ex9_27.sce')
-rw-r--r-- | 3681/CH9/EX9.27/Ex9_27.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3681/CH9/EX9.27/Ex9_27.sce b/3681/CH9/EX9.27/Ex9_27.sce new file mode 100644 index 000000000..ecdb0aa81 --- /dev/null +++ b/3681/CH9/EX9.27/Ex9_27.sce @@ -0,0 +1,15 @@ +// Calculating the reactance voltage for a machine with straight line and sinusoidal commutation
+clc;
+disp('Example 9.27, Page No. = 9.86')
+// Given Data
+Ns = 60;// Number of segments
+rev = 10;// Number of revolution per second
+W = 1.5;// Brush width in segments
+L = 0.2;// Co-efficient of self-induction (in mH)
+I = 20;// Current per coil
+// Calculation of the reactance voltage for a machine with straight line and sinusoidal commutation
+Tc = W/(Ns*rev);// Time of commutation
+Erav = L*10^(-3)*2*I/Tc;// Average reactance voltage
+disp(Erav,'Reactance voltage with straight line commutation (Volts)=');
+disp(%pi/2*Erav,'Reactance voltage with sinusoidal commutation (Volts)=');
+//in book answers are 3.2 Volts and 5 Volts respectively. The answers vary due to round off error
|