diff options
Diffstat (limited to '3681/CH5/EX5.12/Ex5_12.sce')
-rw-r--r-- | 3681/CH5/EX5.12/Ex5_12.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3681/CH5/EX5.12/Ex5_12.sce b/3681/CH5/EX5.12/Ex5_12.sce new file mode 100644 index 000000000..11d6ef3dd --- /dev/null +++ b/3681/CH5/EX5.12/Ex5_12.sce @@ -0,0 +1,13 @@ +// Calculating the resistance of secondary winding
+clc;
+disp('Example 5.12, Page No. = 5.89')
+// Given Data
+sp = 2.2;// Current density of primary winding(in Ampere per mm square)
+ss = 2.1;// Current density of secondary winding(in Ampere per mm square)
+rp = 8;// Resistance of primary inding (in ohm)
+R1 = 1/1.1;// Since length of mean turn of primary is 10% than that of the secondary
+R2 = 1/10;// Since ratio of transformation is 10:1
+// Calculation of the resistance of secondary winding
+rs = R2*R2*(ss/sp)*R1*rp;// Resistance of secondary winding (ohm)
+disp(rs,'Resistance of secondary winding (ohm)=');
+//in book answer is 0.0694 ohm. The answers vary due to round off error
|