diff options
Diffstat (limited to '3760/CH6/EX6.62/Ex6_62.sce')
-rw-r--r-- | 3760/CH6/EX6.62/Ex6_62.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3760/CH6/EX6.62/Ex6_62.sce b/3760/CH6/EX6.62/Ex6_62.sce new file mode 100644 index 000000000..d5a1a4b77 --- /dev/null +++ b/3760/CH6/EX6.62/Ex6_62.sce @@ -0,0 +1,18 @@ +clc;
+s=0.03; // full load slip
+R=0.015; // rotor resistance per phase
+n=4; // number of step in starter
+al=s^(1/n);
+R1=R/s; // resistance of whole section
+r1=R1*(1-al);
+printf('Resistance of first element is %f ohms\n',r1);
+r2=r1*al;
+printf('Resistance of second element is %f ohms\n',r2);
+r3=r1*al^2;
+printf('Resistance of third element is %f ohms\n',r3);
+r4=r1*al^3;
+printf('Resistance of fourth element is %f ohms\n',r4);
+
+
+
+
|