diff options
Diffstat (limited to '1319/CH5/EX5.17')
-rw-r--r-- | 1319/CH5/EX5.17/5_17.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1319/CH5/EX5.17/5_17.sce b/1319/CH5/EX5.17/5_17.sce new file mode 100644 index 000000000..0ea28b0aa --- /dev/null +++ b/1319/CH5/EX5.17/5_17.sce @@ -0,0 +1,18 @@ +// Equivalent resistance and leakage reactance wrt primary
+
+clc;
+clear;
+
+P=1200;
+V=60;
+I1=100;
+R1eq=P/(I1^2);
+
+Zeq=V/I1;
+
+X1eq=sqrt((Zeq^2)-(R1eq^2));
+
+// Secondary short circuited there the parameters calculated are wrt to primary itself
+
+printf('Equivalent Resistance of the transformer w.r.t primary = %g ohms \n',R1eq)
+printf('Leakage Reactance of the transformer w.r.t primary = %g ohms \n',X1eq)// Text Book Error Please note
|