一种适用于SPECTRE 的工艺模型
library csmc
simulator lang=spectre insensitive=yes
//*******************************************************************************************
//*CSMC Confidential *
//*This file is the exclusive property of CSMC and shall not be distributed, reproduced or *
//*disclosed in whole or in part without prior permission of CSMC *
//*CSMC 0.18um DB s-BCD G3 Process model only for SPECTRE *
//**If any questions, please contact CSMC customer engineering. *
//*Version : V0.08 *
//*Date : 2020.09.30 *
//*SPECTRE Version : 12.10.0 *
//*******************************************************************************************
仿真网表格式主要有两种:Spice格式及Specte格式,两者不能通用,但是Spectre提供了Spice格式Model转Spectre格式Model的工具:
spp -convert <input.sp> output.l
其中input.sp为Spice格式的Model,output.l为转换后的Spectre格式的Model。
另外spectre支持直接读取Spice格式网表进行仿真,不过需要对Spice格式的网表进行小小改造,在Spice格式网表第一行加入:
simulator lang=spice
该命令表示该命令后面的网表格式均为为Spice格式,这样Spectre就可以识别网表并进行仿真。
此外还可以通过simulator lang进行混合网表仿真,典型的例子为使用spectre格式网表,但是需要使用到spice格式的测量语句,这时就可以使用simulator lang=spice将spice格式的测量语句标识出来。
但是需要注意如果测量语句后面还有spectre格式的网表,要用simulator lang=spectre将网表格式标识回来。
参考:Spice语法及调用