summaryrefslogtreecommitdiff
path: root/2459/CH5/EX5.2
diff options
context:
space:
mode:
Diffstat (limited to '2459/CH5/EX5.2')
-rw-r--r--2459/CH5/EX5.2/Ex5_2.PNGbin0 -> 5952 bytes
-rw-r--r--2459/CH5/EX5.2/Ex5_2.sce20
2 files changed, 20 insertions, 0 deletions
diff --git a/2459/CH5/EX5.2/Ex5_2.PNG b/2459/CH5/EX5.2/Ex5_2.PNG
new file mode 100644
index 000000000..e54b1397e
--- /dev/null
+++ b/2459/CH5/EX5.2/Ex5_2.PNG
Binary files differ
diff --git a/2459/CH5/EX5.2/Ex5_2.sce b/2459/CH5/EX5.2/Ex5_2.sce
new file mode 100644
index 000000000..0323e4bec
--- /dev/null
+++ b/2459/CH5/EX5.2/Ex5_2.sce
@@ -0,0 +1,20 @@
+//chspter5
+//example5.2
+//page85
+
+mu=20
+rp=10 // kilo ohm
+Rl=15 // kilo ohm
+Eg=3 // V
+
+// the diagram in book is for understanding only. Also we do not have a block of "triode" in scilab xcos. The figure is not required to solve the problem.
+
+Av=mu*Rl/(rp+Rl)
+Ip=(mu*Eg/2^0.5)/(rp+Rl)
+V_out=Ip*Rl
+
+printf("voltage gain = %.3f \n",Av)
+printf("load current = %.3f mA \n",Ip)
+printf("output voltage = %.3f V",V_out)
+
+// the accurate answer for output voltage is 25.456V but in book it is given as 25.35V