diff options
Diffstat (limited to '1319/CH13/EX13.10/ii_10.sce')
-rw-r--r-- | 1319/CH13/EX13.10/ii_10.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1319/CH13/EX13.10/ii_10.sce b/1319/CH13/EX13.10/ii_10.sce new file mode 100644 index 000000000..bb2394805 --- /dev/null +++ b/1319/CH13/EX13.10/ii_10.sce @@ -0,0 +1,15 @@ +// Change in Inductance
+clc;
+clear;
+
+L=120*(10^-3);
+N=1000;
+mr=75;
+Nr=200;
+Nc=N-Nr;
+
+// Inductance directly proportional to the product of the square of turns and the relative permeability
+
+Lc= L*((Nc/N)^2)*75;
+
+disp('H',Lc,'The New value of inductance =')
|