diff options
Diffstat (limited to '3754/CH12/EX12.6/12_6.sce')
-rw-r--r-- | 3754/CH12/EX12.6/12_6.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/3754/CH12/EX12.6/12_6.sce b/3754/CH12/EX12.6/12_6.sce new file mode 100644 index 000000000..22cf8006b --- /dev/null +++ b/3754/CH12/EX12.6/12_6.sce @@ -0,0 +1,18 @@ +clear//
+
+//Variables
+
+T = 398.0 //Temperature (in kelvin)
+I0 = 30 * 10**-6 //Reverse saturation current (in Ampere)
+V = 0.2 //Voltage (in volts)
+
+//Calculation
+
+VT = T/11600 //Volt equivalent of temperature (in volts)
+I = I0 * (exp(V/VT)-1) //Diode current (in Ampere)
+rac = VT/I0 * exp(-V/VT) //dynamic resistance in forward direction (in ohm)
+rac1 = VT/I0 * exp(V/VT) //dynamic resistance in reverse direction (in ohm)
+
+//Result
+
+printf("\n Dynamic resistance in forward direction is %0.2f ohm.\nDynamic resistance in backward direction is %0.3f Mega-ohm.",rac,rac1/10**6)
|