summaryrefslogtreecommitdiff
path: root/2672/CH2/EX2.1/Ex2_1.sce
blob: 0264748413b6195fe3aacca6ad6c8a159ea9562d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//Ex_2_1
clc;
clear;
close;
format('v',6);
//given data : 
LTsc=1.6;//H(Series cumulative)
LTd=0.4;//H(differentially)
L1=0.6;//H
M=(LTsc-LTd)/4;//H(Mutual Inductance)
L2=LTsc-2*M-L1;//H
K=M/sqrt(L1*L2);//Coupling Coefficient
disp(M,"Mutual Inductance(H)");
disp(K,"Coupling Coefficient");