summaryrefslogtreecommitdiff
path: root/2129/CH5/EX5.8.1
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2129/CH5/EX5.8.1
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2129/CH5/EX5.8.1')
-rwxr-xr-x2129/CH5/EX5.8.1/ex5_8_1.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2129/CH5/EX5.8.1/ex5_8_1.sce b/2129/CH5/EX5.8.1/ex5_8_1.sce
new file mode 100755
index 000000000..626f82f3c
--- /dev/null
+++ b/2129/CH5/EX5.8.1/ex5_8_1.sce
@@ -0,0 +1,15 @@
+// Exa 5.8.1
+clc;
+clear;
+close;
+// Given data
+V_EE = 8;// in V
+V_BE = 0.7;// in V
+R_E = 1.5;// in k ohm
+I_E = (V_EE - V_BE)/R_E;// in mA
+I_C = I_E;// in mA
+disp(I_C,"The value of I_C in mA is");
+V_CC = 18;// in V
+R_C = 1.2;// in kΩ
+V_CB = V_CC - (I_C * R_C);// in V
+disp(V_CB,"The value of V_CB in V is");