#!/gnuplot
set encoding iso_8859_1
k = 1.380649e-023
q = 1.602176634e-019
If(Vf, T, Is, n) = Is * (exp(q * Vf / (n * k * (T + 273.15))) - 1)
set key spacing 1.5
set xlabel "{/Helvetica-Oblique V}_{f} [V]"
set ylabel "{/Helvetica-Oblique I}_{f} [{/Symbol m}A]"
set title "{/Helvetica-Oblique I}_{f} {\055} {/Helvetica-Oblique V}_{f} ({/Helvetica-Oblique T}_{j} = 25 \260C)"
set xrange[0:0.1]
set xtics 0.01
set logscale y
set yrange[0.01:10]
set ytics add (0.02, 0.05, 0.2, 0.5, 2, 5)
set label 1 "{/Helvetica-Bold Shockley diode equation} : {/Times-Oblique I}_{f} = \
{/Times-Oblique I}_{s} ({/Times-Roman e}^{{/Times-Oblique q}{/Times-Oblique V}_{f} \
/ ({/Times-Oblique n k T})} - {/Times-Roman 1})" at 0.045, 0.03
set terminal postscript solid color enhanced
set output "vf-if.ps"
plot 1e6 * If(x, 25, 4.6e-8, 1.09) t "HSMS-8201", 1e6 * If(x, 25, 2.94707e-08, 1.36601) t "MMBD301&{kk}"
set output
|