summaryrefslogtreecommitdiff
path: root/1430/CH8/EX8.6
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1430/CH8/EX8.6
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1430/CH8/EX8.6')
-rw-r--r--1430/CH8/EX8.6/exa8_6.sce18
-rw-r--r--1430/CH8/EX8.6/exa8_6.txt17
2 files changed, 35 insertions, 0 deletions
diff --git a/1430/CH8/EX8.6/exa8_6.sce b/1430/CH8/EX8.6/exa8_6.sce
new file mode 100644
index 000000000..5977e2455
--- /dev/null
+++ b/1430/CH8/EX8.6/exa8_6.sce
@@ -0,0 +1,18 @@
+// Example 8.6
+// Comparison of a real and ideal Transformer
+// form figure 8.21
+omegaL_1=100;
+omegaM=490;
+omegaL_2=2500;
+Z=200;
+N=sqrt(omegaL_2/omegaL_1)
+// since omegaL_2>>|Z| and k=0.98 the transformer will act almost like an ideal transformer
+k=omegaM/sqrt(omegaL_1*omegaL_2);
+// Let us denote I_out/I_in = I_gain
+// V_out/V_in=V_gain
+I_gain=(%i*omegaM)/(%i*omegaL_2+Z);
+Z_in=(%i*omegaL_1*Z+(omegaM)^2-(omegaL_1*omegaL_2))/(%i*omegaL_2+Z);
+V_gain=(%i*omegaM*Z)/(%i*omegaL_1*Z+(omegaM)^2-(omegaL_1*omegaL_2));
+disp(I_gain,"Current gain=")
+disp(Z_in,"Input impedance(Ohms)=")
+disp(V_gain,"Voltage gain=")
diff --git a/1430/CH8/EX8.6/exa8_6.txt b/1430/CH8/EX8.6/exa8_6.txt
new file mode 100644
index 000000000..120b822d8
--- /dev/null
+++ b/1430/CH8/EX8.6/exa8_6.txt
@@ -0,0 +1,17 @@
+
+
+-->exec('C:\Users\sangeet\Documents\Scilab\Circuits\Chapter 8\exa8_6.sce', -1)
+
+ Current gain=
+
+ 0.1947536 + 0.0155803i
+
+ Input impedance(Ohms)=
+
+ 7.6343402 + 4.5707472i
+
+ Voltage gain=
+
+ 3.9356639 - 1.9481537i
+
+