summaryrefslogtreecommitdiff
path: root/2045/CH4/EX4.25
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2045/CH4/EX4.25
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 '2045/CH4/EX4.25')
-rwxr-xr-x2045/CH4/EX4.25/Ex4_25.pdfbin0 -> 10634 bytes
-rwxr-xr-x2045/CH4/EX4.25/Ex4_25.sce15
2 files changed, 15 insertions, 0 deletions
diff --git a/2045/CH4/EX4.25/Ex4_25.pdf b/2045/CH4/EX4.25/Ex4_25.pdf
new file mode 100755
index 000000000..cb9b13c21
--- /dev/null
+++ b/2045/CH4/EX4.25/Ex4_25.pdf
Binary files differ
diff --git a/2045/CH4/EX4.25/Ex4_25.sce b/2045/CH4/EX4.25/Ex4_25.sce
new file mode 100755
index 000000000..64f9cfd1c
--- /dev/null
+++ b/2045/CH4/EX4.25/Ex4_25.sce
@@ -0,0 +1,15 @@
+//example 25
+clear
+colcur=100*10^-3;//ampere
+ouresi=20;//ohm
+r=200;//ohm
+r1=100;//ohm
+vcc=15;//volt
+basvol=((r1)/(r+r1))*vcc;
+em1res=basvol/colcur;
+vce=vcc-(ouresi+em1res)*colcur;
+disp("vce = "+string((vce))+"volt");
+disp("emitter resistance = "+string((em1res))+"ohm");
+
+
+