summaryrefslogtreecommitdiff
path: root/147/CH11/EX11.9
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /147/CH11/EX11.9
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '147/CH11/EX11.9')
-rw-r--r--147/CH11/EX11.9/Example11_9.sce14
-rw-r--r--147/CH11/EX11.9/Result11_9.txt1
2 files changed, 15 insertions, 0 deletions
diff --git a/147/CH11/EX11.9/Example11_9.sce b/147/CH11/EX11.9/Example11_9.sce
new file mode 100644
index 000000000..c447e2d28
--- /dev/null
+++ b/147/CH11/EX11.9/Example11_9.sce
@@ -0,0 +1,14 @@
+close();
+clear;
+clc;
+Vcc = 5; //V
+Vb = 3.5; //V
+Rc = 640; //ohm
+Rb1 = 450; //ohm
+Rb2 = Rb1;
+Vcesat = 0.2; //V
+B = 50;
+Ibsat = (Vcc-Vcesat)/(B*Rc);
+//number of gates that can be attached to v
+n = (Vcc-Vb)/(Rc*Ibsat);
+mprintf("number of gates that can be attached to v without risk of error in logic, n < %d",n); \ No newline at end of file
diff --git a/147/CH11/EX11.9/Result11_9.txt b/147/CH11/EX11.9/Result11_9.txt
new file mode 100644
index 000000000..dc168ce8a
--- /dev/null
+++ b/147/CH11/EX11.9/Result11_9.txt
@@ -0,0 +1 @@
+number of gates that can be attached to v without risk of error in logic, n < 15 \ No newline at end of file