summaryrefslogtreecommitdiff
path: root/2459/CH12/EX12.2/Ex12_2.sce
diff options
context:
space:
mode:
Diffstat (limited to '2459/CH12/EX12.2/Ex12_2.sce')
-rw-r--r--2459/CH12/EX12.2/Ex12_2.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2459/CH12/EX12.2/Ex12_2.sce b/2459/CH12/EX12.2/Ex12_2.sce
new file mode 100644
index 000000000..4527c8cfd
--- /dev/null
+++ b/2459/CH12/EX12.2/Ex12_2.sce
@@ -0,0 +1,15 @@
+//chapter12
+//example12.2
+//page236
+
+Vcc=13 // V
+V_knee=1 // V
+Rc=4 // kilo ohm
+gain_beta=100
+
+V_Rc=Vcc-V_knee
+Ic=V_Rc/Rc
+Ib=Ic/gain_beta
+Vs=Ic/5 // since Ic/Vs = 5 mA/V given
+
+printf("maximum input signal voltage = %.3f V or %.3f mV \n",Vs,Vs*1000)