summaryrefslogtreecommitdiff
path: root/2882/CH9/EX9.14/Ex9_14.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2882/CH9/EX9.14/Ex9_14.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2882/CH9/EX9.14/Ex9_14.sce')
-rwxr-xr-x2882/CH9/EX9.14/Ex9_14.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/2882/CH9/EX9.14/Ex9_14.sce b/2882/CH9/EX9.14/Ex9_14.sce
new file mode 100755
index 000000000..ffc1f54ff
--- /dev/null
+++ b/2882/CH9/EX9.14/Ex9_14.sce
@@ -0,0 +1,22 @@
+//Tested on Windows 7 Ultimate 32-bit
+//Chapter 9 Frequency Response of Amplifier Pg no. 318 and 319
+clear;
+clc;
+
+//Given
+//Figure 9.31
+
+VGS=12;//gate to source voltage in volts
+IGSS=40D-9;//gate saturation current in amperes
+VDD=12;//drain supply voltage in volts
+RD=6.8D3;//drain resistance in ohms
+RG=15D6;//gate resistance in ohms
+Cin=0.001D-6;//input coupling capacitance in farads
+Cout=0.001D-6;//output coupling capacitance in farads
+
+//Solution
+
+Rin_gate=VGS/IGSS;//gate input resistance in ohms
+Rin=Rin_gate*RG/(Rin_gate+RG);//input resistance in ohms
+fc=1/(2*%pi*Rin*Cin);//cutoff frequency in hertz
+printf("Cutoff frequency for input RC network fc = %.2f Hz",fc);