summaryrefslogtreecommitdiff
path: root/1892/CH1/EX1.30/Example1_30.sce
diff options
context:
space:
mode:
Diffstat (limited to '1892/CH1/EX1.30/Example1_30.sce')
-rwxr-xr-x1892/CH1/EX1.30/Example1_30.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/1892/CH1/EX1.30/Example1_30.sce b/1892/CH1/EX1.30/Example1_30.sce
new file mode 100755
index 000000000..87f025d4d
--- /dev/null
+++ b/1892/CH1/EX1.30/Example1_30.sce
@@ -0,0 +1,22 @@
+// Example 1.30
+
+clear; clc; close;
+format('v',7);
+// Given data
+R2=0.04;//in ohm
+X2=0.2;//in ohm
+TstByTm=50;//in %
+
+//Calculations
+Sm=1;//slip for max Torque
+R2dash=Sm*X2;//in ohm
+Rx=R2dash-R2;//in ohm
+disp(Rx,"(i) External resistance required for max Torque(ohm ): ");
+TstByTm=TstByTm/100;//in ratio
+//Formula : Tst proportional to E2^2*R2dash/(R2dash^2+X2^2)
+//Formula : Tm Proportional to E2^2/2/X2
+P=[TstByTm -2*X2 TstByTm*X2^2];//Polynomial for R2dash
+R2dash=roots(P);//
+R2dash=R2dash(2);//discarding higher value bcoc R2dash < X2
+Rx=R2dash-R2;//in ohm
+disp(Rx,"(ii) Extra resistance required for 50% max Torque at start(ohm) : ");