summaryrefslogtreecommitdiff
path: root/1319/CH5/EX5.17/5_17.sce
diff options
context:
space:
mode:
Diffstat (limited to '1319/CH5/EX5.17/5_17.sce')
-rw-r--r--1319/CH5/EX5.17/5_17.sce18
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