summaryrefslogtreecommitdiff
path: root/2330/CH14/EX14.6/ex14_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '2330/CH14/EX14.6/ex14_6.sce')
-rwxr-xr-x2330/CH14/EX14.6/ex14_6.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/2330/CH14/EX14.6/ex14_6.sce b/2330/CH14/EX14.6/ex14_6.sce
new file mode 100755
index 000000000..dd5acf51f
--- /dev/null
+++ b/2330/CH14/EX14.6/ex14_6.sce
@@ -0,0 +1,16 @@
+// Example 14.6
+format('v',6)
+clc;
+clear;
+close;
+// given data
+Eta= 0.85;
+V= 10;// in V
+V1= Eta*V;// in V
+V= 20;// in V
+R= 400;// in Ω
+// The emitter current
+I_E= V/R;// in A
+I_E= I_E*10^3;// in mA
+disp(I_E,"The emitter current in mA is : ")
+