summaryrefslogtreecommitdiff
path: root/3754/CH14/EX14.5/14_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3754/CH14/EX14.5/14_5.sce')
-rw-r--r--3754/CH14/EX14.5/14_5.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3754/CH14/EX14.5/14_5.sce b/3754/CH14/EX14.5/14_5.sce
new file mode 100644
index 000000000..d2b7cb12b
--- /dev/null
+++ b/3754/CH14/EX14.5/14_5.sce
@@ -0,0 +1,15 @@
+clear//
+
+//Variables
+
+alpha1 = 0.975 //common base current gain
+beta1 = 200.0 //common emitter current gain
+
+//Calculation
+
+beta = alpha1 / (1-alpha1) //common emitter current gain
+alpha = beta1 / (beta1 + 1) //common base current gain
+
+//Result
+
+printf("\n Value of beta when alpha = 0.975 is %0.3f .\nValue of alpha when beta = 200 is %0.3f .",beta,alpha)