diff options
Diffstat (limited to '1223/CH11/EX11.12/Ex11_12.sce')
-rwxr-xr-x | 1223/CH11/EX11.12/Ex11_12.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1223/CH11/EX11.12/Ex11_12.sce b/1223/CH11/EX11.12/Ex11_12.sce new file mode 100755 index 000000000..ae72f3dfc --- /dev/null +++ b/1223/CH11/EX11.12/Ex11_12.sce @@ -0,0 +1,16 @@ +clear;
+clc;
+//Example 11.12
+Iq=0.587;
+Kn=1;
+Rd=16;
+//lambda=y
+y=0.01;
+Ro=1/(y*Iq);
+printf('\noutput resistance =%.2fKOhm\n',Ro)
+Ad=sqrt(Kn*Iq/2)*Rd;
+printf('\ndifferential mode voltage gain=%.2f \n',Ad)
+Acm=-sqrt(2*Kn*Iq)*Rd/(1+2*sqrt(2*Kn*Iq)*Ro);
+printf('\ncommon mode voltage gain=%.2f\n',Acm)
+CMRR=20*log10(-Ad/Acm);
+printf('\ncommon mode rejection ratio=%.2f dB\n',CMRR)
|