diff options
Diffstat (limited to '3311/CH3/EX3.2/Ex3_2.sce')
-rwxr-xr-x | 3311/CH3/EX3.2/Ex3_2.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3311/CH3/EX3.2/Ex3_2.sce b/3311/CH3/EX3.2/Ex3_2.sce new file mode 100755 index 000000000..133156130 --- /dev/null +++ b/3311/CH3/EX3.2/Ex3_2.sce @@ -0,0 +1,15 @@ +// chapter 3 +// example 3.2 +// Determine the value of Vee +// page-99 +clear; +clc; +// given +Re=1; // in k-ohm +Iv=5; // in mA +Vv=2; // in V (voltage at valley point) +// calculate +Ie=Iv; +Ve=Vv; +Vee=Ie*Re+Ve; // calculation of Vee +printf("The required value to switch OFF UJT is \tVee=%.f V",Vee);
\ No newline at end of file |