From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001
From: priyanka
Date: Wed, 24 Jun 2015 15:03:17 +0530
Subject: initial commit / add all books

---
 181/CH8/EX8.11/example8_11.sce | 23 +++++++++++++++++++++++
 181/CH8/EX8.11/example8_11.txt |  1 +
 2 files changed, 24 insertions(+)
 create mode 100755 181/CH8/EX8.11/example8_11.sce
 create mode 100755 181/CH8/EX8.11/example8_11.txt

(limited to '181/CH8/EX8.11')

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
-- 
cgit