diff options
Diffstat (limited to '2129/CH3/EX3.10.21')
-rwxr-xr-x | 2129/CH3/EX3.10.21/ex3_10_21.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2129/CH3/EX3.10.21/ex3_10_21.sce b/2129/CH3/EX3.10.21/ex3_10_21.sce new file mode 100755 index 000000000..b62d41f9c --- /dev/null +++ b/2129/CH3/EX3.10.21/ex3_10_21.sce @@ -0,0 +1,13 @@ +// Exa 3.10.21
+clc;
+clear;
+close;
+// Given data
+V_T = 26;// in mV
+V_T = V_T * 10^-3;// in V
+Eta = 1;
+// I = -90% for Io, so
+IbyIo= 0.1;
+// I = I_o * ((e^(v/(Eta * V_T)))-1)
+V = log(IbyIo) * V_T;// in V
+disp(V,"The reverse bias voltage in volts is");
|