diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /2702/CH4/EX4.7/Ex_4_7.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '2702/CH4/EX4.7/Ex_4_7.sce')
-rw-r--r-- | 2702/CH4/EX4.7/Ex_4_7.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2702/CH4/EX4.7/Ex_4_7.sce b/2702/CH4/EX4.7/Ex_4_7.sce new file mode 100644 index 000000000..2af582cf9 --- /dev/null +++ b/2702/CH4/EX4.7/Ex_4_7.sce @@ -0,0 +1,18 @@ +// Exa 4.7
+clc;
+clear;
+close;
+// Given data
+V_CM= 0;
+V_BE= -0.7;// in volt
+v_E= V_CM-V_BE;// in volt
+disp(v_E,"Value of v_E in volts is : ")
+
+I_E= (5-0.7)/10^3;// in A
+v_B1= 0.5;// in V
+v_B2= 0;// in V
+// Due to Q1 is off; therefore
+v_C1= -5;// in V
+v_C2= I_E*10^3-5;// in V
+disp(v_C1,"Value of v_C1 in volts is : ")
+disp(v_C2,"Value of v_C2 in volts is : ")
|