summaryrefslogtreecommitdiff
path: root/3760/CH4/EX4.13/Ex4_13.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3760/CH4/EX4.13/Ex4_13.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3760/CH4/EX4.13/Ex4_13.sce')
-rw-r--r--3760/CH4/EX4.13/Ex4_13.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3760/CH4/EX4.13/Ex4_13.sce b/3760/CH4/EX4.13/Ex4_13.sce
new file mode 100644
index 000000000..0e19f3bb0
--- /dev/null
+++ b/3760/CH4/EX4.13/Ex4_13.sce
@@ -0,0 +1,16 @@
+//The answer given in book for this question is wrong.
+
+clc;
+P=4;//No of poles
+Ia=120;//armature current
+A=4;//No of parallel paths for armature conductor
+L=0.02//inductance in mH
+//Et=L*(di/dt),Transformer emf in coil
+//di=2*Ia/A,change of current during commutation
+//dt=Tc,time of commutation
+//Et=0.02*0.001*(60/Tc) ....(1)
+//Er=2*(Bav*l*v),rotational emf in single turn coil
+//Er=2*(phi_c/Tc) ....(2),phi_c is the avg value of flux in the commutating zone
+//For linear commutation, Er=Et, from equation (1)&(2)
+phi_c=60*0.02*0.001/2;//phi_c is the avg value of flux in the commutating zone
+printf('THE AVG. VALUE OF FLUX IN THE COMMUTATING ZONE IS %f Wb.',phi_c)