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 /1823/CH7/EX7.12 | |
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 '1823/CH7/EX7.12')
-rwxr-xr-x | 1823/CH7/EX7.12/SolEx7_12.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1823/CH7/EX7.12/SolEx7_12.sce b/1823/CH7/EX7.12/SolEx7_12.sce new file mode 100755 index 000000000..77d5a3a2a --- /dev/null +++ b/1823/CH7/EX7.12/SolEx7_12.sce @@ -0,0 +1,13 @@ +//determine the voltage gain of this amplifier circuit using SPICE methods.
+//Example 7.12 page no 215
+clear
+clc
+gm=1.5*10^-3
+rds=75*10^3
+Rd=3*10^3 //kΩ
+rds=75*10^3
+vds=-(gm*rds*Rd)/(rds+Rd)
+printf("\n The value of vds=%0.3f vgs",vds)
+Vdsm=-1*vds //V
+idm=(gm+(Vdsm/rds))*1000
+printf("\n The value of idm=%0.3f mA",idm)
|