diff options
Diffstat (limited to '3760/CH6/EX6.17/Ex6_17.sce')
-rw-r--r-- | 3760/CH6/EX6.17/Ex6_17.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3760/CH6/EX6.17/Ex6_17.sce b/3760/CH6/EX6.17/Ex6_17.sce new file mode 100644 index 000000000..51e26e646 --- /dev/null +++ b/3760/CH6/EX6.17/Ex6_17.sce @@ -0,0 +1,20 @@ +clc;
+//r2/x2=a
+a=.5;
+Test=25;
+
+//for part a
+disp('For part a ');
+//b=3(V1)2/r2Ws
+//As per given conditions
+b=Test*5;
+//When rotor resistace is doubled
+Test1=b*(1/4);
+mprintf('The starting torque is %f Nm\n',Test1);
+//for part b
+disp('For part b');
+//resisance is half
+Test2=b*(2/17);
+
+
+mprintf('The starting torque is %f Nm',Test2);
|