summaryrefslogtreecommitdiff
path: root/1430/CH1/EX1.10
diff options
context:
space:
mode:
Diffstat (limited to '1430/CH1/EX1.10')
-rw-r--r--1430/CH1/EX1.10/exa1_10.sce10
-rw-r--r--1430/CH1/EX1.10/exa1_10.txt12
2 files changed, 22 insertions, 0 deletions
diff --git a/1430/CH1/EX1.10/exa1_10.sce b/1430/CH1/EX1.10/exa1_10.sce
new file mode 100644
index 000000000..a657319ae
--- /dev/null
+++ b/1430/CH1/EX1.10/exa1_10.sce
@@ -0,0 +1,10 @@
+// Example 1.10
+// Design of a Biasing Circuit
+// from figure 1.34, Applying KVL in left loop we get,
+v_a=12-4-5;//Voltage drop across R_a
+R_a=v_a/(20*10^-3);// Value of resistor R_a
+// Current through R_b
+i_b=(20-16)*(10^-3);
+R_b=5/i_b;//Value of resistor R_b
+disp(R_a,"Value of Resistor R_a(in Ohms)=")
+disp(R_b,"Value of Resistor R_b(in Ohms)=")
diff --git a/1430/CH1/EX1.10/exa1_10.txt b/1430/CH1/EX1.10/exa1_10.txt
new file mode 100644
index 000000000..d96739659
--- /dev/null
+++ b/1430/CH1/EX1.10/exa1_10.txt
@@ -0,0 +1,12 @@
+
+
+-->exec('C:\Users\sangeet\Documents\Scilab\Circuits\Chapter 1\exa1.10.sce', -1)
+
+ Value of Resistor R_a(in Ohms)=
+
+ 150.
+
+ Value of Resistor R_b(in Ohms)=
+
+ 1250.
+