summaryrefslogtreecommitdiff
path: root/1658/CH18/EX18.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1658/CH18/EX18.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1658/CH18/EX18.1')
-rwxr-xr-x1658/CH18/EX18.1/Ex18_1.pngbin0 -> 90843 bytes
-rwxr-xr-x1658/CH18/EX18.1/Ex18_1.sce18
2 files changed, 18 insertions, 0 deletions
diff --git a/1658/CH18/EX18.1/Ex18_1.png b/1658/CH18/EX18.1/Ex18_1.png
new file mode 100755
index 000000000..a15557df7
--- /dev/null
+++ b/1658/CH18/EX18.1/Ex18_1.png
Binary files differ
diff --git a/1658/CH18/EX18.1/Ex18_1.sce b/1658/CH18/EX18.1/Ex18_1.sce
new file mode 100755
index 000000000..365f1a201
--- /dev/null
+++ b/1658/CH18/EX18.1/Ex18_1.sce
@@ -0,0 +1,18 @@
+
+clc;
+//e.g 18.1
+Vbb=10;
+Rb=47*10**3;
+Vcc=20;
+Rc=10*10**3;
+B=100;
+Ic=Vcc/Rc;//saturation current
+disp('mA',Ic*10**3,"Ic=");
+Vce=Vcc;//cut-off voltage
+disp('V',Vce*1,"Vce=");
+i=2:-0.1:0;
+plot2d(i);
+a=gca() //get the current axes
+a.box="off";
+xlabel("VCE");
+ylabel( "IC");