diff options
Diffstat (limited to '2102/CH2/EX2.39/exa_2_39.sce')
-rwxr-xr-x | 2102/CH2/EX2.39/exa_2_39.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/2102/CH2/EX2.39/exa_2_39.sce b/2102/CH2/EX2.39/exa_2_39.sce new file mode 100755 index 000000000..8ef9e2020 --- /dev/null +++ b/2102/CH2/EX2.39/exa_2_39.sce @@ -0,0 +1,15 @@ +// Exa 2.39
+clc;
+clear;
+close;
+// Given data
+T=300;// in K
+n=1;
+V_T= 26;// in mV
+V_T=V_T*10^-3;// in V
+V_F= 200;// in mV
+V_F=V_F*10^-3;// in V
+Io= 1;// in µA
+Io= Io*10^-6;// in A
+r_F= n*V_T/(Io*%e^(V_F/(n*V_T)));// in Ω
+disp(r_F,"The ac resistance of a semiconductor diode in Ω")
|