diff options
Diffstat (limited to '1223/CH11/EX11.1/Ex11_1.sce')
-rwxr-xr-x | 1223/CH11/EX11.1/Ex11_1.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/1223/CH11/EX11.1/Ex11_1.sce b/1223/CH11/EX11.1/Ex11_1.sce new file mode 100755 index 000000000..a460fea23 --- /dev/null +++ b/1223/CH11/EX11.1/Ex11_1.sce @@ -0,0 +1,26 @@ +clear;
+clc;
+//Example 11.1
+V1=10;
+V2=-10;
+Iq=1;
+Rc=10;
+Vbe=0.7;
+iC1=Iq/2;
+iC2=iC1;
+printf('\ncollector currents =%.2fmA\n',iC1)
+Vc1=V1-iC1*Rc;
+Vc2=Vc1;
+printf('\ncollector voltages =%.2fV\n',Vc1)
+Vcm=0;
+Ve=Vcm-Vbe;
+Vce1=Vc1-Ve;
+printf('\ncollector emitter voltage=%.2f V\n',Vce1)
+Vcm=-5;
+Ve=Vcm-Vbe;
+Vce1=Vc1-Ve;
+printf('\ncollector emitter voltage =%.2fV\n',Vce1)
+Vcm=5;
+Ve=Vcm-Vbe;
+Vce1=Vc1-Ve;
+printf('\ncollector emitter voltage=%.2f V\n',Vce1)
|