diff options
Diffstat (limited to '147/CH13/EX13.10')
-rw-r--r-- | 147/CH13/EX13.10/Example13_10.sce | 24 | ||||
-rw-r--r-- | 147/CH13/EX13.10/Result13_10.txt | 10 |
2 files changed, 34 insertions, 0 deletions
diff --git a/147/CH13/EX13.10/Example13_10.sce b/147/CH13/EX13.10/Example13_10.sce new file mode 100644 index 000000000..18c7983b9 --- /dev/null +++ b/147/CH13/EX13.10/Example13_10.sce @@ -0,0 +1,24 @@ +//Turn ratio a, Resistance of primary winding R1,Resistance of secondary winding R2
+//Primary leakage reactance X1, Secondary leakage reactance X2
+//Magnetizing reactance Xm, Resistance accounting for core loss Rc
+close();
+clear;
+clc;
+a = 5;
+R1 = 0.5;//ohm
+R2 = 0.021;
+X1 = 3.2;
+X2 = 0.12;
+Rc = 350;
+Xm = 98;
+//For circuit reffered to primary
+Rp = R1 + a^2*R2;
+Xp = X1 + a^2*X2;
+Rcp = Rc;
+Xmp = Xm;
+//For cicuit reffered to secondary
+Rs = R1/a^2 + R2;
+Xs = X1/a^2+X2;
+Rcs = Rc/a^2;
+Xms = Xm/a^2;
+mprintf('For circuit reffered to primary:\nR'' = %0.3f ohm\nX'' = %0.1f ohm\nR''c = %0.0f ohm\nX''m = %0.0f ohm\nFor circuit reffered to secondary:\nR'' = %0.3f ohm\nX'' = %0.3f ohm\nR''''c = %0.0f ohm\nX''''m = %0.2f ohm',Rp,Xp,Rcp,Xmp,Rs,Xs,Rcs,Xms);
diff --git a/147/CH13/EX13.10/Result13_10.txt b/147/CH13/EX13.10/Result13_10.txt new file mode 100644 index 000000000..89bcae332 --- /dev/null +++ b/147/CH13/EX13.10/Result13_10.txt @@ -0,0 +1,10 @@ +For circuit reffered to primary:
+R' = 1.025 ohm
+X' = 6.2 ohm
+R'c = 350 ohm
+X'm = 98 ohm
+For circuit reffered to secondary:
+R' = 0.041 ohm
+X' = 0.248 ohm
+R''c = 14 ohm
+X''m = 3.92 ohm
\ No newline at end of file |