diff options
Diffstat (limited to '2330/CH8/EX8.1/ex8_1.sce')
-rwxr-xr-x | 2330/CH8/EX8.1/ex8_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2330/CH8/EX8.1/ex8_1.sce b/2330/CH8/EX8.1/ex8_1.sce new file mode 100755 index 000000000..93cb2b478 --- /dev/null +++ b/2330/CH8/EX8.1/ex8_1.sce @@ -0,0 +1,17 @@ +// Example 8.1
+format('v',6)
+clc;
+clear;
+close;
+// given data
+V_EE= 10;// in V
+V_BE= 0.7;// in V
+R_E= 20*10^3;// in Ω
+V_CC= 25;// in V
+R_C= 10*10^3;// in Ω
+// The emitter current
+I_E= (V_EE-V_BE)/R_E;// in A
+I_C= I_E;// in A
+// The collector to base voltage,
+V_CB= V_CC-I_C*R_C;// in V
+disp(V_CB,"The value of V_CB in volts is : ")
|