diff options
Diffstat (limited to '3830/CH7/EX7.12/Ex7_12.sce')
-rw-r--r-- | 3830/CH7/EX7.12/Ex7_12.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3830/CH7/EX7.12/Ex7_12.sce b/3830/CH7/EX7.12/Ex7_12.sce new file mode 100644 index 000000000..fdeb3d0da --- /dev/null +++ b/3830/CH7/EX7.12/Ex7_12.sce @@ -0,0 +1,20 @@ +// Exa 7.12
+
+clc;
+clear;
+
+// Given
+
+// A variable inductive transducer
+L1 = 2.5; // inductance in mH
+N1 = 50; // No of effective turns at L1
+N2 = 52; // No of effective turns at L2
+
+// Solution
+
+printf(' Since L directly proportional to N^2 \n');
+printf(' L1/N1^2 = L2/N2^2 \n ');
+printf(' Therefore, L2 i.e, \n ');
+
+L2 = L1* (N2/N1)^2;
+printf(' The inductance of coil when the effective turns of the coil are 52 = %.2f mH \n',L2);
|