用silvaco写耿氏二极管的代码
时间: 2023-09-11 16:11:11 浏览: 234
以下是使用Silvaco TCAD软件写耿氏二极管的代码示例:
```
go atlas
Title "Gunn Diode Simulation"
#设定仿真网格
mesh auto
#设定材料参数
material nsi
mobility electrons = 1050.0 cm^2/(V*s)
mobility holes = 25.0 cm^2/(V*s)
permittivity = 12.9
bandgap = 1.1
#其他材料参数...
#设定耿氏二极管结构
structure gunn_diode
#设定区域和厚度
material nsi start=0.0 stop=0.1
material nsi start=0.1 stop=0.2
#其他区域和厚度...
#设定掺杂浓度
doping n-type gaussian conc=1.0e18 peak=0.05 width=0.02
doping p-type gaussian conc=1.0e17 peak=0.15 width=0.02
#其他掺杂...
#设定接触
contact bottom n-type
contact top p-type
#设定仿真参数
solve init
method newton
outfile "gunn_diode.out"
save outf="gunn_diode.dat" all
capacitance all
conver .tran 1.0e-12 20.0e-9 1.0e-10
#其他仿真参数...
end
#运行仿真
structure gunn_diode
mode check
solve
mode dc v 0.0 0.5 0.001
mode transient v 0.2
plot iv.char
plot v.char
quit
```
阅读全文