本文整理汇总了Python中ahkab.testing.NetlistTest类的典型用法代码示例。如果您正苦于以下问题:Python NetlistTest类的具体用法?Python NetlistTest怎么用?Python NetlistTest使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了NetlistTest类的11个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test
def test():
nt = NetlistTest('diodecw8', ea=1e-1, er=1e-3,
sim_opts=myoptions())
nt.setUp()
nt.test()
if __name__ != '__main__':
nt.tearDown()
示例2: test
def test():
nt = NetlistTest('symbro')
nt.setUp()
nt.test()
nt.tearDown()
示例3: test
def test():
nt = NetlistTest('pz1', er=1e-4, ea=1e-3)
nt.setUp()
nt.test()
nt.tearDown()
示例4: test
def test():
nt = NetlistTest('t1', er=1e-3, ea=1e-5)
nt.setUp()
nt.test()
nt.tearDown()
示例5: test
def test():
nt = NetlistTest('switch1', er=1, ea=5e-1)
nt.setUp()
nt.test()
nt.tearDown()
示例6: test
from ahkab.testing import NetlistTest
from ahkab import options
options.plotting_show_plots = False
def test():
nt = NetlistTest('bfpss1', er=1e-3, ea=1e-2)
nt.setUp()
nt.test()
nt.tearDown()
test.__doc__ = "PSS BFPSS test 1"
if __name__ == '__main__':
nt = NetlistTest('bfpss1')
nt.setUp()
nt.test()
示例7: test
def test():
nt = NetlistTest('ring3', er=1e-1, ea=1e-2)
nt.setUp()
nt.test()
nt.tearDown()
示例8: test
def test():
nt = NetlistTest('tran_gear6', er=1e-3, ea=1e-2)
nt.setUp()
nt.test()
nt.tearDown()
示例9: test
def test():
nt = NetlistTest("tran_gear5", er=1e-2, ea=1e-2)
nt.setUp()
nt.test()
nt.tearDown()
示例10: test
def test():
nt = NetlistTest('downscaling_cm', ea=1e-6, er=1e-5)
nt.setUp()
nt.test()
nt.tearDown()
示例11: test
def test():
nt = NetlistTest('colpitts', er=1e-3, ea=5e-4, sim_opts=myoptions())
nt.setUp()
nt.test()
nt.tearDown()