diff options
Diffstat (limited to '147/CH11')
-rw-r--r-- | 147/CH11/EX11.10/Example11_10.sce | 9 | ||||
-rw-r--r-- | 147/CH11/EX11.10/Result11_10.txt | 1 | ||||
-rw-r--r-- | 147/CH11/EX11.9/Example11_9.sce | 14 | ||||
-rw-r--r-- | 147/CH11/EX11.9/Result11_9.txt | 1 |
4 files changed, 25 insertions, 0 deletions
diff --git a/147/CH11/EX11.10/Example11_10.sce b/147/CH11/EX11.10/Example11_10.sce new file mode 100644 index 000000000..7e926bf13 --- /dev/null +++ b/147/CH11/EX11.10/Example11_10.sce @@ -0,0 +1,9 @@ +close();
+clear;
+clc;
+Vcc = 5;//V
+Vcesat = 0.2;
+Rc = 640;
+Icsat = (Vcc-Vcesat)/Rc;
+P = 2*Vcc*Icsat;
+mprintf('Power dissipated by RTL P = %0.0f mW',P*1000);
\ No newline at end of file diff --git a/147/CH11/EX11.10/Result11_10.txt b/147/CH11/EX11.10/Result11_10.txt new file mode 100644 index 000000000..9ef0c5b83 --- /dev/null +++ b/147/CH11/EX11.10/Result11_10.txt @@ -0,0 +1 @@ +Power dissipated by RTL P = 75 mW
\ No newline at end of file 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 |