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 /1223/CH11/EX11.1 | |
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 '1223/CH11/EX11.1')
-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)
|