diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /181/CH8/EX8.11 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '181/CH8/EX8.11')
-rwxr-xr-x | 181/CH8/EX8.11/example8_11.sce | 23 | ||||
-rwxr-xr-x | 181/CH8/EX8.11/example8_11.txt | 1 |
2 files changed, 24 insertions, 0 deletions
diff --git a/181/CH8/EX8.11/example8_11.sce b/181/CH8/EX8.11/example8_11.sce new file mode 100755 index 000000000..30b2ccf70 --- /dev/null +++ b/181/CH8/EX8.11/example8_11.sce @@ -0,0 +1,23 @@ +// To determine Emitter source voltage of UJT
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 8-11 in page 391
+
+clear; clc; close;
+
+// Given Data
+Re=1*10^3; // Emitter Resistance of UJT in ohm
+Iv=5*10^-3; // Valley current of UJT in A
+Vv=2; // Valley voltage of UJT in V
+
+// Calculations
+Ve=Vv;
+Ie=Iv;
+Vee=(Ie*Re)+Ve;
+
+printf("The value of Emitter source voltage of UJT for turn-off is %0.2f V",Vee);
+
+// Results
+// The value of Emitter source voltage of UJT for turn-off is 7 V
\ No newline at end of file diff --git a/181/CH8/EX8.11/example8_11.txt b/181/CH8/EX8.11/example8_11.txt new file mode 100755 index 000000000..06346a0b9 --- /dev/null +++ b/181/CH8/EX8.11/example8_11.txt @@ -0,0 +1 @@ +The value of Emitter source voltage of UJT for turn-off is 7 V.
\ No newline at end of file |