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 /1574/CH7/EX7.2/N_Ex_7_2.sce | |
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 '1574/CH7/EX7.2/N_Ex_7_2.sce')
-rwxr-xr-x | 1574/CH7/EX7.2/N_Ex_7_2.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/1574/CH7/EX7.2/N_Ex_7_2.sce b/1574/CH7/EX7.2/N_Ex_7_2.sce new file mode 100755 index 000000000..e4896cbcc --- /dev/null +++ b/1574/CH7/EX7.2/N_Ex_7_2.sce @@ -0,0 +1,26 @@ +clc
+//Chapter7
+//Example7.2, page no 276
+//Given
+mue=25//
+rp=5e3
+Rl=10e3
+C=1e-9
+gm=mue/rp
+Req=2.5/gm
+//disp(Req , gm)
+k=1.381e-23
+T=293
+R1=1e5
+// Power density spectrum for respective res
+d1=2*k*T*R1
+d2=2*k*T*Req
+d3=2*k*T*Rl
+xo=0
+x1=1e14
+w=0:%inf
+//H1(w)=(-gm*rp*Rl)/(rp+Rl+(%i*w*rp*Rl*C))
+Vo=sqrt((20231.65e2/%pi)*integrate('1/(((3e9)^2)+(w^2))','w',xo,x1))
+mprintf('The mean square noise voltage is: %f mV',Vo*1e3)
+
+
|