summaryrefslogtreecommitdiff
path: root/1223/CH4/EX4.9/Ex4_9.sce
diff options
context:
space:
mode:
Diffstat (limited to '1223/CH4/EX4.9/Ex4_9.sce')
-rwxr-xr-x1223/CH4/EX4.9/Ex4_9.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1223/CH4/EX4.9/Ex4_9.sce b/1223/CH4/EX4.9/Ex4_9.sce
new file mode 100755
index 000000000..27299a658
--- /dev/null
+++ b/1223/CH4/EX4.9/Ex4_9.sce
@@ -0,0 +1,12 @@
+clear;
+clc;
+//Example 4.9
+Ic=0.894;
+i_C=2*Ic;
+printf('\nmaximum possible symmetrical peak to peak ac collector current=%.3f mA\n',i_C)
+Rc=5;
+Rl=2;
+vo=i_C*Rc*Rl/(Rc+Rl);
+printf('\nmaximum possible symmetrical peak to peak output voltage=%.2f V\n',vo)
+iC=Ic+i_C*1/2;
+printf('\nmaximum instantaneous collector current=%.3f mA\n',iC)