基于SILVACO ATLAS的a-IGZO薄膜晶体管二维器件仿真(01)
最近因为肺炎的缘故,宅在家里不能出门,就翻了下一些资料,刚好研究方向是这个,就简单研究了下。参考资料主要如下:
1.《半导体工艺和器件仿真软件Silvaco TCAD实用教程》 唐龙谷 2014
2.《长安大学 半导体工艺与器件仿真指导书》 张林 2015
引用本科时社团一姐的一句话:学习PS的精髓在于毁图。个人浅见,学习仿真的话还是要根据实例拆解分析比较快。重复,我是新手,只是个人浅见。
官网实例:https://www.silvaco.com/examples/tcad/section41/index.html
tftex10.in : Amorphous IGZO TFT Simulation:
# (c) Silvaco Inc., 2019
# This example demonstrates simulation of amorphous IGZO (indium galium
# zinc oxide) TFT. Here we reproduce the results from:
#
# Fung, T., Chuang, C., Chen, C., Katsumi, A., Cottle, R., Townsend, M.,
# Kumomi, H., and Kanicki, J., "Two-dimensional numerical simulation of
# radio frequency sputter amorphous In-Ga-Zn-O thin-film transistors",
# J. Appl. Phys., V. 106, pp. 084511-1 through 084511-10.
#
# Comparisons with experiment are included.
#
# This first part of the input deck simulates Id-Vg.
#
go atlas mesh width=180 outf=tftex10_1.str master.out x.m l=0 s=0.25
x.m l=40 s=0.25
y.m l=0 s=0.0005
y.m l=0.02 s=0.0005
y.m l=0.12 s=0.005
#(划分网格)
# The device is composed of a 20 nm layer of IGZO deposited
# 100 nm oxide on a n++ substrate that acts as the gate.
#
region num=1 material=igzo y.min=0 y.max=0.02
region num=2 material=sio2 y.min=0.02 y.max=0.12
#(定义材料)
elec num=1 name=gate bottom
elec num=2 name=source y.max=0.0 x.min=0.0 x.max=5.0
elec num=3 name=drain y.max=0.0 x.min=35.0 x.max=40.0
#(定义电极)
# We define the gate as N.POLY. This pins the gate workfunction
# to the conduction band edge of silicon.
#
contact num=1 n.poly
#
# We also define a workfunction for the source and drain that
# is very close to the conduction edge. In the reference the
# authors observed that without a workfunction the results for
# ohmic boundaries were not significantly different than the
# Schottky model.
#
contact num=2 workf=4.33
contact num=3 workf=4.33
#(定义接触条件)
models fermi
#
# Key to the characterization of amorphous materials is the
# definition of the states within the band gap.
#
defects nta=1.55e20 ntd=1.55e20 wta=0.013 wtd=0.12 \
nga=0.0 ngd=6.5e16 egd=2.9 wgd=0.1 \
sigtae=1e-15 sigtah=1e-15 sigtde=1e-15 sigtdh=1e-15 \
siggae=1e-15 siggah=1e-15 siggde=1e-15 siggdh=1e-15 \
dfile=tftex10_don.dat afile=tftex10_acc.dat numa=128 numd=64
#(定义缺陷分布)
# From here we simply extract the Id-Vg characteristic
#
solve init
solve prev
#???
solve vdrain=0.1
save outf=tftex10_0.str
log outf=tftex10_1a.log
solve vgate=0 vstep=-0.1 vfinal=-5 name=gate log off
#???
load inf=tftex10_0.str master
solve prev
log outf=tftex10_1b.log
solve vstep=0.2 vfinal=20.0 name=gate
#
# And we compare the simulation with experimental data reported in
# the reference.
#
tonyplot -overlay tftex10_1a.log tftex10_1b.log tftex10_1.dat -set tftex10_1.set
#tonyplot 的 overlay与set命令 ???
tonyplot -overlay tftex10_don.dat -set tftex10_don.set
#绘制施主态密度分布曲线
tonyplot -overlay tftex10_acc.dat -set tftex10_acc.set
#绘制受主态密度分布曲线 go atlas
#
# In the next part of the input deck we extract the Id-Vd family of
# curves. The structure definition is exactly the same.
#
mesh width=180 x.m l=0 s=0.25
x.m l=40 s=0.25
y.m l=0 s=0.0005
y.m l=0.02 s=0.0005
y.m l=0.12 s=0.005 region num=1 material=igzo y.min=0 y.max=0.02
region num=2 material=sio2 y.min=0.02 y.max=0.12 elec num=1 name=gate bottom
elec num=2 name=source y.max=0.0 x.min=0.0 x.max=5.0
elec num=3 name=drain y.max=0.0 x.min=35.0 x.max=40.0 contact num=1 n.poly
contact num=2 workf=4.33
contact num=3 workf=4.33 models fermi defects nta=1.55e20 ntd=1.55e20 wta=0.013 wtd=0.12 \
nga=0.0 ngd=6.5e16 egd=2.9 wgd=0.1 \
sigtae=1e-15 sigtah=1e-15 sigtde=1e-15 sigtdh=1e-15 \
siggae=1e-15 siggah=1e-15 siggde=1e-15 siggdh=1e-15 \
dfile=don afile=acc numa=128 numd=64
#
# Here we calculate the start structures for each of the IdVd
# family by performing an initial gate ramp.
#
#(下面就有点懵了...)
solve solve vstep=0.2 vfinal=4.0 name=gate save outf=tftex10_2.str
solve vstep=0.2 vfinal=8.0 name=gate save outf=tftex10_3.str
solve vstep=0.2 vfinal=12.0 name=gate save outf=tftex10_4.str
solve vstep=0.2 vfinal=16.0 name=gate save outf=tftex10_5.str
solve vstep=0.2 vfinal=20.0 name=gate save outf=tftex10_6.str load inf=tftex10_2.str master log outf=tftex10_2.log
solve vdrain=0.0 vstep=0.5 vfinal=20.0 name=drain load inf=tftex10_3.str master log outf=tftex10_3.log
solve vdrain=0.0 vstep=0.5 vfinal=20.0 name=drain load inf=tftex10_4.str master log outf=tftex10_4.log
solve vdrain=0.0 vstep=0.5 vfinal=20.0 name=drain load inf=tftex10_5.str master log outf=tftex10_5.log
solve vdrain=0.0 vstep=0.5 vfinal=20.0 name=drain load inf=tftex10_6.str master log outf=tftex10_6.log
solve vdrain=0.0 vstep=0.5 vfinal=20.0 name=drain tonyplot -overlay tftex10_2.log tftex10_2.dat tftex10_3.log tftex10_3.dat tftex10_4.log tftex10_4.dat tftex10_5.log tftex10_5.dat tftex10_6.log tftex10_6.dat -set tftex10_2.set quit
官网给出的四张输出图像如下:
自己装的ATLAS还有点问题,这几天先折腾下在跑跑看。
不过毕竟是引用了别人的文献中的数据,与实验室的材料特性还有较大差距,估计要手调了。
总体来说,ATLAS的步骤主要为:
建立网格-定义材料-定义电极以及接触-定义缺陷分布或掺杂-引入模型以及求解方法-求解-Tonyplot输出
要解决的难点主要在于:
1.材料特性微调;
2.缺陷分布调整;
3.理解输出语句,并合理运用;
武汉加油!
基于SILVACO ATLAS的a-IGZO薄膜晶体管二维器件仿真(01)的更多相关文章
- 基于SILVACO ATLAS的a-IGZO薄膜晶体管二维器件仿真(03)
今天逛ResearchGate的时候发现了一个不错的Atlas入门教程:Step by step with ATLAS Silvaco点击链接免费下载.. Atlas代码结构 当然可能有一点太基础了. ...
- 基于SILVACO ATLAS的a-IGZO薄膜晶体管二维器件仿真(08)
进展比较慢啊... 根据江南大学硕士论文IGZO/IZO双有源层薄膜晶体管特性的模拟研究: 其中, gCBa:类受主导带尾态 gVBd:类施主价带尾态 gGd:类施主氧空位态 NDeep:价带尾深施主 ...
- 基于SILVACO ATLAS的a-IGZO薄膜晶体管二维器件仿真(02)
Silvaco的破解用了好久好久,而且之后拷了上次例子的代码,Tonyplot的输出存在报错,还是四连. 当然这个点一下还是会出图的.但是,源代码稍微改了下结构,又有报错,而且程序直接终止. go a ...
- 基于SILVACO ATLAS的a-IGZO薄膜晶体管二维器件仿真(06)
在知网看到了江南大学的硕士论文: 双有源层a-IGZO薄膜晶体管的特性仿真 IGZO/IZO双有源层薄膜晶体管特性的模拟研究 发现,我昨天的文章中参数的设置存在重大失误,如下材料定义语句中: mate ...
- 基于SILVACO ATLAS的a-IGZO薄膜晶体管二维器件仿真(04)
在eetop上有好多好东西啊: Silvaco_TCAD_中文教程1 不过这个教程里是Linux系统的,而且工艺仿真占了比较大的篇幅. defect region=1 nta=5e17 wta=0.1 ...
- 基于SILVACO ATLAS的a-IGZO薄膜晶体管二维器件仿真(07)
今天主要解决一下defect语句: defect region=1 nta=1.55e20 wta=0.013 wtd=0.12 ngd=6.5e16 wga=2 ntd=1.55e20 ngd=0 ...
- 基于SILVACO ATLAS的a-IGZO薄膜晶体管二维器件仿真(05)
关于特性曲线的输出调整: 初代版本 material material=igzo eg300=3.5 nc300=8.5e21 nv300=8.5e21 taun0=1e-9 taup0=1e-9 a ...
- 基于SignalR的消息推送与二维码描登录实现
1 概要说明 使用微信扫描登录相信大家都不会陌生吧,二维码与手机结合产生了不同应用场景,基于二维码的应用更是比较广泛.为了满足ios.android客户端与web短信平台的结合,特开发了基于Singl ...
- 在云平台上基于Go语言+Google图表API提供二维码生成应用
二维码能够说已经深深的融入了我们的生活其中.到处可见它的身影:但通常我们都是去扫二维码, 曾经我们分享给朋友一个网址直接把Url发过去,如今我们能够把自己的信息生成二维码再分享给他人. 这里就分享一下 ...
随机推荐
- Codeforces Round #624 (Div. 3)
A.题意:通过加奇数减偶数的操作从a到b最少需要几步 签到题 #include <algorithm> #include <iostream> #include <cst ...
- 查询避免Unknown column ‘xxx’ in ‘where clause
问题: 单从字面理解,我们很容易得出列名称不存在的结论, 但是,很多时候并不是列名出错造成的,而是由于拼凑sql语句时对字符类型数据没有用引号引起来造成的. 例子: 例如: String sql=& ...
- 使用nohup不产生log文件方法
思想 无法阻止nohup产生日志可以将其定向到空文件实现 实现 $ nohup xxx >/dev/null 2>&1 &
- HTML连载64-a标签伪类选择器的注意点与练习
一.a标签的伪类选择器注意点 (1)a标签的伪类选择器可以单独出现,也可以一起出现.也就是可以设置多个状态的样式. (2) a标签的伪类选择器如果一起出现,那么有严格的顺序要求,编写的顺序必须要遵守原 ...
- SSM项目集成Lucene+IKAnalyzer在Junit单元测试中执行异常
个人博客 地址:http://www.wenhaofan.com/article/20181108132519 问题描述 在项目运行以及main方法中能够正常运行,但是使用junit单元测试时却报如下 ...
- vue源码的入口(四)
我们之前提到过 Vue.js 构建过程,在 web 应用下,我们来分析 Runtime + Compiler 构建出来的 Vue.js,它的入口是 src/platforms/web/entry-ru ...
- 题解 AT4170 【[ABC103A] Task Scheduling Problem】
翻译 有 \(3\) 个正整数 \(a\).\(b\).\(c\),请你输出这 \(3\) 个数中的最大值 \(-\) 最小值的差. 分析 求最大值 \(-\) 最小值的差,我们自然可以使用 for ...
- 浅谈radis
1.概述 Redis是一个开源的使用ANSI C语言编写.支持网络.可基于内存亦可持久化的日志型.Key-Value数据库,并提供多种语言的API 从2010年3月15日起,Redis的开发工作由VM ...
- 浅谈C#委托的用法-delegate
2018年11月7日 小雨 一.委托的概念 委托和类一样是一种用户自定义类型,它存储的就是一系列具有相同签名和返回类型的方法的地址,调用委托的时候,它所包含的所有方法都会被执行. 借用百度上的 ...
- jQuery---jQuery初体验
jQuery初体验 1. 引入jquery文件 2. 入口函数标准 jQuery优点总结 (对应的就是js的缺点): 查找元素的方法多种多样,非常灵活 拥有隐式迭代特性,因此不需要手写for循环 完全 ...