summaryrefslogtreecommitdiff
path: root/1445/CH8/EX8.9
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1445/CH8/EX8.9
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 '1445/CH8/EX8.9')
-rw-r--r--1445/CH8/EX8.9/ch8_ex_9.sce29
1 files changed, 29 insertions, 0 deletions
diff --git a/1445/CH8/EX8.9/ch8_ex_9.sce b/1445/CH8/EX8.9/ch8_ex_9.sce
new file mode 100644
index 000000000..464608dc5
--- /dev/null
+++ b/1445/CH8/EX8.9/ch8_ex_9.sce
@@ -0,0 +1,29 @@
+//CHAPTER 8- DIRECT CURRENT MACHINES
+//Example 9
+
+disp("CHAPTER 8");
+disp("EXAMPLE 9");
+
+//VARIABLE INITIALIZATION
+P=4; //number of poles
+v_t=230; //in Volts
+I_l=52; //in Amperes
+Z=600; //tottal number of conductors
+r_f=115; //in Ohms
+d=30/100; //airgap diameter from cm to m
+l=20/100; //effective length of pole
+B=4100/10000; //flux density from Gauss to Wb/m^2
+
+//SOLUTION
+I_f=v_t/r_f; //I_f is same as I_sh
+I_a=I_l-I_f;
+ar=(%pi*d*l)/P; //area of pole
+phi=ar*B; //phi = flux
+A=P;
+T=(phi*Z*I_a)/(2*%pi*A);
+disp(sprintf("The torque developed in the motor is %f N-m",T));
+
+//The answer is different as 'A' has not been included in the denominator(in the book)
+
+//END
+