summaryrefslogtreecommitdiff
path: root/2702/CH3/EX3.8/Ex_3_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '2702/CH3/EX3.8/Ex_3_8.sce')
-rw-r--r--2702/CH3/EX3.8/Ex_3_8.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/2702/CH3/EX3.8/Ex_3_8.sce b/2702/CH3/EX3.8/Ex_3_8.sce
new file mode 100644
index 000000000..c9bf1dd35
--- /dev/null
+++ b/2702/CH3/EX3.8/Ex_3_8.sce
@@ -0,0 +1,14 @@
+// Exa 3.8
+clc;
+clear;
+close;
+// Given data
+V_BE= 0.7;// in V
+V_CE= 3;// in V
+I_C= 1;// in mA
+I_C=I_C*10^-3;// in A
+bita= 100;
+I_B= I_C/bita;// in A
+// V_CE= V_BE+V_CB and V_CB= I_B*R_B
+R_B= (V_CE-V_BE)/I_B;// in Ω
+disp(R_B*10^-3,"The value of R_B in kΩ is : ")