summaryrefslogtreecommitdiff
path: root/215/CH17/EX17.7
diff options
context:
space:
mode:
Diffstat (limited to '215/CH17/EX17.7')
-rwxr-xr-x215/CH17/EX17.7/ex17_7.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/215/CH17/EX17.7/ex17_7.sce b/215/CH17/EX17.7/ex17_7.sce
new file mode 100755
index 000000000..91e9fad7d
--- /dev/null
+++ b/215/CH17/EX17.7/ex17_7.sce
@@ -0,0 +1,14 @@
+clc
+//Example 17.7
+//From figure 17.16
+disp('Given a linear model of a transistor we need not explicitly find the aadmittance parameters ')
+disp('-y12 corresponds to admittance of 2k ohm resistor')
+disp('y11+y12 corresponds to admittance of 500 ohm resistor')
+disp('y21-y12 correponds to gain of dependent voltage source')
+disp('y22+y12 corresponds to admittance of 10k ohm resistor')
+//Writing down in equation form
+y12=-1/2000
+y11=1/500-y12
+y21=0.0395+y12
+y22=1/10000-y12
+printf("\n y11= %3.2f mS \n y12= %3.2f mS \n y21= %3.2f mS \n y22= %3.2f mS",y11*10^3,y12*10^3,y21*10^3,y22*10^3); \ No newline at end of file