diff options
Diffstat (limited to '1223/CH11/EX11.13/Ex11_13.sce')
-rwxr-xr-x | 1223/CH11/EX11.13/Ex11_13.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1223/CH11/EX11.13/Ex11_13.sce b/1223/CH11/EX11.13/Ex11_13.sce new file mode 100755 index 000000000..4f3123ce8 --- /dev/null +++ b/1223/CH11/EX11.13/Ex11_13.sce @@ -0,0 +1,13 @@ +clear;
+clc;
+//Example 11.13
+Iq=0.2;
+Va=100;
+Va2=Va;
+Va4=Va;
+Rl=100;
+Vt=0.026;
+Ad=(1/Vt)/(1/Va2+1/Va4);
+printf('\nopen circuit voltage gain=%.2f\n',Ad)
+Ad=(Iq/(2*Vt))/(Iq/(2*Va2)+Iq/(2*Va4)+1/Rl);
+printf('\nvoltage gain=%.2f\n',Ad)
|