diff options
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 |