diff options
Diffstat (limited to '3673/CH10/EX10.4/Ex10_4.sce')
-rw-r--r-- | 3673/CH10/EX10.4/Ex10_4.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3673/CH10/EX10.4/Ex10_4.sce b/3673/CH10/EX10.4/Ex10_4.sce new file mode 100644 index 000000000..f6da78e67 --- /dev/null +++ b/3673/CH10/EX10.4/Ex10_4.sce @@ -0,0 +1,14 @@ +//Example 10_2 page no:442
+clc;
+//given
+K=0.5;
+L1=50*10^-3;
+L2=200*10^-3;
+//calculating the mutual inductance
+M=K*sqrt(L1*L2);
+M=M*1000;//converting to milli henry
+disp(M,"the value of mutual inducatance between coil is (in mH)");
+//calculating the maximum inductance when K=1
+M=sqrt(L1*L2);
+M=M*1000;//converting to milli henry
+disp(M,"the maximum value of inducatance is (in mH)");
|