diff options
Diffstat (limited to '2102/CH3/EX3.16')
-rwxr-xr-x | 2102/CH3/EX3.16/exa_3_16.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2102/CH3/EX3.16/exa_3_16.sce b/2102/CH3/EX3.16/exa_3_16.sce new file mode 100755 index 000000000..3dc6db7e7 --- /dev/null +++ b/2102/CH3/EX3.16/exa_3_16.sce @@ -0,0 +1,12 @@ +// Exa 3.16
+clc;
+clear;
+close;
+// Given data
+I= 2;// in mA
+I=I*10^-3;// in A
+V_T= 25;// in mV
+V_T= V_T*10^-3;// in V
+nita= 1;
+r_F= nita*V_T/I;// in Ω
+disp(r_F,"The dynamic resistance of a diode in Ω is :")
|