diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1628/CH7/EX7.11/Ex7_11.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1628/CH7/EX7.11/Ex7_11.sce')
-rwxr-xr-x | 1628/CH7/EX7.11/Ex7_11.sce | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/1628/CH7/EX7.11/Ex7_11.sce b/1628/CH7/EX7.11/Ex7_11.sce new file mode 100755 index 000000000..82a58d3c0 --- /dev/null +++ b/1628/CH7/EX7.11/Ex7_11.sce @@ -0,0 +1,29 @@ + + + // Example 7.11 + + // Net Induction When in Same Direction i.e 1.8= L1+L2+2M + // Net Induction When in Opposite i.e 0.8= L1+L2-2M + // by Solving 2 equation we get M= 0.25 +k=0.6; +M=0.25; +disp('(a) Mutual induction of a Coil = '+string(M)+' H'); + // by Adding Eq 1 & 2 will get L1+L2= 1.3 H + // we know that k= M/(L1*L2) +L1L2=M^2/k^2; // using above Formula + // By using L1L2 & L1+L2 +L12=1.3; // L1+L2 +L1_L2=sqrt(L12^2-4*L1L2); // Value of L1-L2 + + // by using L1+L2 & L1-L2 will get + +L1=1.149; +L2=0.151; +disp('(b.1) Self Induction of a Coil 1 = '+string(L1)+' H'); +disp('(b.2) Self Induction of a Coil 2 = '+string(L2)+' H'); + + + + // p 237 7.11 + +
\ No newline at end of file |