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 /1964/CH3/EX3.5 | |
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 '1964/CH3/EX3.5')
-rwxr-xr-x | 1964/CH3/EX3.5/ex3_5.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/1964/CH3/EX3.5/ex3_5.sce b/1964/CH3/EX3.5/ex3_5.sce new file mode 100755 index 000000000..3a423c557 --- /dev/null +++ b/1964/CH3/EX3.5/ex3_5.sce @@ -0,0 +1,22 @@ +//Chapter-3, Example 3.5, Page 111
+
+//=============================================================================
+clc
+clear
+//INPUT DATA
+L1=0.25;//self inductance of coil in henry(H)
+N1=500;//no of turns of coil 1
+N2=10500;//no of turns of coil 2
+phi2=0.6*L1;//60 % of flux of first coil(m1) is linked with second coil(m2)
+z=100;//rate of change of current(dii/dt) in A/sec
+
+//CALCULATIONS
+x=L1/N1;//flux/ampere in first coil(phi1/I1)
+y=0.6*(x);//flux linking the second coil(phi2/I1)
+M=N2*(y);//mutual inductance between the two coils in H
+E=M*(z);//induced emf in V
+//OUTPUT
+mprintf("Thus the mutual inductance between two coils is %1.2f H \n",M);
+mprintf("The induced emf in second coil when current changes in first coil is %3.0f V \n",E);
+
+//=================================END OF PROGRAM==============================
|