QSpice (9) --结合Python仿真
<div class='showpostmsg'><h1>QSpice (9) --结合Python仿真</h1><div>Hello 小伙伴们大家周末好呀!</div>
<div>Python是个好工具,Qspice也是好工具,在某天上班时候想减轻一下自己工作量想着找个东西结合下帮我把活干了,刚好就让我看到这个东西了,一起把他用起来吧!</div>
<div>首先我们先安装一下Qspice的Python库:</div>
<div><strong>网址在这 </strong><a href="https://pypi.org/project/qspice/"><strong>https://pypi.org/project/qspice/</strong></a></div>
<div>备注:ta是基于Spicelib开发的所以如果需要使用其他的Spice仿真器可以看看https://pypi.org/project/spicelib/</div>
<div><strong>使用Pip安装代码:</strong><strong>pip install qspice</strong></div>
<div>如何使用pip, windows+R CMD</div>
<div></div>
<div>图1:pip安装Qspice库</div>
<div>安装完Pip后我们先画一下Qspice的原理图,我想着先弄个RC电路,我改不同占空比,改不同R值和C值获得不同的Vout电压,先构建基本电路如下图2所示。</div>
<div></div>
<div>图2:RC滤波器仿真结果</div>
<div>使用例程修改简单代码如下:</div>
<table border="1">
<tbody>
<tr>
<td>from qspice import QschEditor<br />
# 将FilePath替换为你自己的地址<br />
FilePath="C:/Users/xutong/Qspice9/Python.qsch"<br />
# 创建一个QschEditor实例,传入电路设计文件路径<br />
Python = QschEditor(FilePath)<br />
# 打印所有元件<br />
print("All Components", Python.get_components())<br />
# 打印所有电容元件<br />
print("Capacitors", Python.get_components('C'))<br />
# 打印名为R1的元件信息<br />
print("R1 info:", Python.get_component_info('R1'))<br />
# 打印名为C1的元件值<br />
print("C1 value:", Python.get_component_value('C1'))</td>
</tr>
</tbody>
</table>
<div></div>
<div>图3:代码运行结果</div>
<div>光是打印参数还是不足够的,最好还是能设定参数,设定参数的几个函数</div>
<div><strong>set_element_model</strong></div>
<div>侧重于设置元件的模型相关的参数。元件模型是对元件行为更复杂、更全面的一种描述,可能包含了多种物理特性、工艺相关的特性等。它不仅仅是简单的电学数值,还可能涉及到元件在不同工作条件下(如温度、频率等)的行为模式。</div>
<div><strong>set_component_value</strong></div>
<div>主要用于设置电路组件(如电阻、电容、电感等)的值。这个值通常是组件的基本电学属性值,例如电阻的阻值、电容的容值等。</div>
<div><strong>set_parameters</strong></div>
<div>通常用于设置与电路或元件相关的更广泛的参数。这些参数可能不仅仅局限于元件的基本电学值(像set_component_value那样)或者元件的复杂模型(像set_element_model那样),而是可以包括一些与电路整体运行、仿真设置或者特定分析相关的参数。</div>
<div>基于以上我们修改代码看是否如我们所预期。</div>
<table border="1">
<tbody>
<tr>
<td>from qspice import QschEditor<br />
# 将FilePath替换为你自己的地址<br />
FilePath="C:/Users/xuyun/Desktop/Qspice9/Python.qsch"<br />
# 创建一个QschEditor实例,传入电路设计文件路径<br />
Python = QschEditor(FilePath)<br />
# 打印所有元件<br />
print("All Components", Python.get_components())<br />
# 打印所有电容元件<br />
print("Capacitors", Python.get_components('C'))<br />
# 打印名为R1的元件信息<br />
print("R1 info:", Python.get_component_info('R1'))<br />
# 打印名为C1的元件值<br />
print("C1 value:", Python.get_component_value('C1'))<br />
# 设定R1和C1的参数<br />
Python.set_component_value('R1','123K')<br />
Python.set_component_value('C1','15n')<br />
# 修改V2的模型<br />
Python.set_element_model('V2', "PULSE 0 5 1m 1n 1n 3u 10u")<br />
Python.save_as("C:/Users/xuyun/Desktop/Qspice9/Python2.qsch")</td>
</tr>
</tbody>
</table>
<div>使用以上代码修改过后的电路图如下所示:</div>
<div></div>
<div>图4:使用Python修改后的图纸</div>
<h2>~代码部分~</h2>
<div>修改代码让电路Run起来:</div>
<table border="1">
<tbody>
<tr>
<td>from qspice import SimRunner, SpiceEditor, RawRead, sweep_log, QschEditor<br />
# 数据处理<br />
def processing_data(raw_file, log_file):<br />
# 打印当前正在处理的原始文件和对应的日志文件的信息,让用户清楚地知道正在操作的文件。<br />
print("Handling the simulation data of %s, log file %s" % (raw_file, log_file))<br />
# 创建一个 RawRead 类的实例,传入原始文件路径 raw_file,用于读取该原始文件中的数据。<br />
raw_data = RawRead(raw_file)<br />
# 通过 raw_data 对象的 get_wave 方法获取名为'V(out)'的波形数据。假设 RawRead 类内部实现了根据波形名称获取特定波形数据的逻辑。<br />
vout = raw_data.get_wave('V(out)')<br />
# 返回原始文件路径和该波形数据的最大值。这样可以在外部调用这个函数时,得到原始文件路径以及该文件中特定波形的最大值。<br />
return raw_file, vout.max()<br />
# 将FilePath替换为你自己的地址<br />
FilePath = "C:/Users/xuyun/Desktop/Qspice9/Python.qsch"<br />
# 创建一个QschEditor实例,传入电路设计文件路径<br />
Python = QschEditor(FilePath)<br />
# 仿真输出文件夹<br />
runner = SimRunner(output_folder='C:/Users/xuyun/Desktop/Qspice9')<br />
# 打印所有元件<br />
print("All Components", Python.get_components())<br />
# 打印所有电容元件<br />
print("Capacitors", Python.get_components('C'))<br />
# 打印名为R1的元件信息<br />
print("R1 info:", Python.get_component_info('R1'))<br />
# 打印名为C1的元件值<br />
print("C1 value:", Python.get_component_value('C1'))<br />
# 设定R1和C1的参数<br />
Python.set_component_value('R1','123K')<br />
Python.set_component_value('C1','15n')<br />
# 修改V2的模型<br />
Python.set_element_model('V2', "PULSE 0 5 1m 1n 1n 3u 10u")<br />
# 保存修改后的电路设计文件为另一个.qsch文件<br />
Python.save_as("C:/Users/xuyun/Desktop/Qspice9/Python2.qsch")<br />
# 保存为网表文件<br />
Python.save_netlist("C:/Users/xuyun/Desktop/Qspice9/Pythong.net")<br />
# 创建SpiceEditor实例,传入网表文件路径<br />
netlist = SpiceEditor("C:/Users/xuyun/Desktop/Qspice9/Pythong.net")<br />
# 运行仿真,并将结果传递给数据处理函数进行处理<br />
runner.run(netlist, callback=processing_data, run_filename=f'testfile_qspice.net')</td>
</tr>
</tbody>
</table>
<div><strong>有可能会遇到GBK相关的报错,可以通过以下方法解决</strong></div>
<ol>
<li><strong>打开 Qsch_edtior.py</strong></li>
<li><strong>修改</strong><strong>save_netlist</strong><strong>()函数为以下</strong></li>
</ol>
<table border="1">
<tbody>
<tr>
<td> def save_netlist(self, run_netlist_file: Union) -> None:<br />
if isinstance(run_netlist_file, str):<br />
run_netlist_file = Path(run_netlist_file)<br />
if self.schematic is None:<br />
_logger.error("Empty Schematic information")<br />
return<br />
if run_netlist_file.suffix == '.qsch':<br />
self.save_as(run_netlist_file)<br />
elif run_netlist_file.suffix in ('.net', '.cir'):<br />
with open(run_netlist_file, 'w', encoding='utf-8') as netlist_file:<br />
_logger.info(f"Writing NET file {run_netlist_file}")<br />
netlist_file.write(f'* {os.path.abspath(self._qsch_file_path.as_posix())}\n')<br />
self.write_spice_to_file(netlist_file)<br />
netlist_file.write('.end\n')</td>
</tr>
</tbody>
</table>
<div>运行结果如下图5所示:</div>
<div></div>
<div>图5:代码运行结果</div>
<div></div>
<div>图6:仿真结果图</div>
<div>使用Python肯定是想将重复的工作交给电脑去处理,在这里给出一个例程如下:</div>
<table border="1">
<tbody>
<tr>
<td>from qspice import SimRunner, SpiceEditor, RawRead, sweep_log, QschEditor<br />
# 数据处理<br />
def processing_data(raw_file, log_file):<br />
# 打印当前正在处理的原始文件和对应的日志文件的信息,让用户清楚地知道正在操作的文件。<br />
print("Handling the simulation data of %s, log file %s" % (raw_file, log_file))<br />
# 创建一个 RawRead 类的实例,传入原始文件路径 raw_file,用于读取该原始文件中的数据。<br />
raw_data = RawRead(raw_file)<br />
# 通过 raw_data 对象的 get_wave 方法获取名为'V(out)'的波形数据。假设 RawRead 类内部实现了根据波形名称获取特定波形数据的逻辑。<br />
vout = raw_data.get_wave('V(OUT)')<br />
# 返回原始文件路径和该波形数据的最大值。这样可以在外部调用这个函数时,得到原始文件路径以及该文件中特定波形的最大值。<br />
return raw_file, vout.max()<br />
# 将FilePath替换为你自己的地址<br />
FilePath = "C:/Users/xuyun/Desktop/Qspice9/Python.qsch"<br />
# 创建一个QschEditor实例,传入电路设计文件路径<br />
Python = QschEditor(FilePath)<br />
# 仿真输出文件夹<br />
runner = SimRunner(output_folder='C:/Users/xuyun/Desktop/Qspice9')<br />
# 打印所有元件<br />
print("All Components", Python.get_components())<br />
# 打印所有电容元件<br />
print("Capacitors", Python.get_components('C'))<br />
# 打印名为R1的元件信息<br />
print("R1 info:", Python.get_component_info('R1'))<br />
# 打印名为C1的元件值<br />
print("C1 value:", Python.get_component_value('C1'))<br />
# 设定R1和C1的参数<br />
Python.set_component_value('R1','123K')<br />
Python.set_component_value('C1','15n')<br />
# 遍历V2的Ton时间<br />
for i in range(1,10):<br />
V2_Param=f"PULSE 0 5 1m 1n 1n {i}u 10u"<br />
# 修改V2的模型<br />
Python.set_element_model('V2', V2_Param)<br />
# 保存修改后的电路设计文件为另一个.qsch文件<br />
Python.save_as(f"C:/Users/xuyun/Desktop/Qspice9/Python{i}.qsch")<br />
# 保存为网表文件<br />
Python.save_netlist(f"C:/Users/xuyun/Desktop/Qspice9/Python{i}.net")<br />
# 创建SpiceEditor实例,传入网表文件路径<br />
netlist = SpiceEditor(f"C:/Users/xuyun/Desktop/Qspice9/Python{i}.net")<br />
# 运行仿真,并将结果传递给数据处理函数进行处理<br />
runner.run(netlist, callback=processing_data, run_filename=f'testfile_qspice_{i}.net')</td>
</tr>
</tbody>
</table>
<div>仿真结果如图7所示:</div>
<div></div>
<div>图7:左Ton=1u 右Ton=9u</div>
<div>好了,今天的Qspice教程就到这里了,周末愉快!</div>
<h1>QSpice (9) --结合Python仿真</h1>
<div>Hello 小伙伴们大家周末好呀!</div>
<div>Python是个好工具,Qspice也是好工具,在某天上班时候想减轻一下自己工作量想着找个东西结合下帮我把活干了,刚好就让我看到这个东西了,一起把他用起来吧!</div>
<div>首先我们先安装一下Qspice的Python库:</div>
<div><strong>网址在这 </strong><a href="https://pypi.org/project/qspice/"><strong>https://pypi.org/project/qspice/</strong></a></div>
<div>备注:ta是基于Spicelib开发的所以如果需要使用其他的Spice仿真器可以看看https://pypi.org/project/spicelib/</div>
<div><strong>使用Pip安装代码:</strong><strong>pip install qspice</strong></div>
<div>如何使用pip, windows+R CMD</div>
<div></div>
<div>图1:pip安装Qspice库</div>
<div>安装完Pip后我们先画一下Qspice的原理图,我想着先弄个RC电路,我改不同占空比,改不同R值和C值获得不同的Vout电压,先构建基本电路如下图2所示。</div>
<div></div>
<div>图2:RC滤波器仿真结果</div>
<div>使用例程修改简单代码如下:</div>
<table border="1">
<tbody>
<tr>
<td>from qspice import QschEditor<br />
# 将FilePath替换为你自己的地址<br />
FilePath="C:/Users/xutong/Qspice9/Python.qsch"<br />
# 创建一个QschEditor实例,传入电路设计文件路径<br />
Python = QschEditor(FilePath)<br />
# 打印所有元件<br />
print("All Components", Python.get_components())<br />
# 打印所有电容元件<br />
print("Capacitors", Python.get_components('C'))<br />
# 打印名为R1的元件信息<br />
print("R1 info:", Python.get_component_info('R1'))<br />
# 打印名为C1的元件值<br />
print("C1 value:", Python.get_component_value('C1'))</td>
</tr>
</tbody>
</table>
<div></div>
<div>图3:代码运行结果</div>
<div>光是打印参数还是不足够的,最好还是能设定参数,设定参数的几个函数</div>
<div><strong>set_element_model</strong></div>
<div>侧重于设置元件的模型相关的参数。元件模型是对元件行为更复杂、更全面的一种描述,可能包含了多种物理特性、工艺相关的特性等。它不仅仅是简单的电学数值,还可能涉及到元件在不同工作条件下(如温度、频率等)的行为模式。</div>
<div><strong>set_component_value</strong></div>
<div>主要用于设置电路组件(如电阻、电容、电感等)的值。这个值通常是组件的基本电学属性值,例如电阻的阻值、电容的容值等。</div>
<div><strong>set_parameters</strong></div>
<div>通常用于设置与电路或元件相关的更广泛的参数。这些参数可能不仅仅局限于元件的基本电学值(像set_component_value那样)或者元件的复杂模型(像set_element_model那样),而是可以包括一些与电路整体运行、仿真设置或者特定分析相关的参数。</div>
<div>基于以上我们修改代码看是否如我们所预期。</div>
<table border="1">
<tbody>
<tr>
<td>from qspice import QschEditor<br />
# 将FilePath替换为你自己的地址<br />
FilePath="C:/Users/xuyun/Desktop/Qspice9/Python.qsch"<br />
# 创建一个QschEditor实例,传入电路设计文件路径<br />
Python = QschEditor(FilePath)<br />
# 打印所有元件<br />
print("All Components", Python.get_components())<br />
# 打印所有电容元件<br />
print("Capacitors", Python.get_components('C'))<br />
# 打印名为R1的元件信息<br />
print("R1 info:", Python.get_component_info('R1'))<br />
# 打印名为C1的元件值<br />
print("C1 value:", Python.get_component_value('C1'))<br />
# 设定R1和C1的参数<br />
Python.set_component_value('R1','123K')<br />
Python.set_component_value('C1','15n')<br />
# 修改V2的模型<br />
Python.set_element_model('V2', "PULSE 0 5 1m 1n 1n 3u 10u")<br />
Python.save_as("C:/Users/xuyun/Desktop/Qspice9/Python2.qsch")</td>
</tr>
</tbody>
</table>
<div>使用以上代码修改过后的电路图如下所示:</div>
<div></div>
<div>图4:使用Python修改后的图纸</div>
<h2>~代码部分~</h2>
<div>修改代码让电路Run起来:</div>
<table border="1">
<tbody>
<tr>
<td>from qspice import SimRunner, SpiceEditor, RawRead, sweep_log, QschEditor<br />
# 数据处理<br />
def processing_data(raw_file, log_file):<br />
# 打印当前正在处理的原始文件和对应的日志文件的信息,让用户清楚地知道正在操作的文件。<br />
print("Handling the simulation data of %s, log file %s" % (raw_file, log_file))<br />
# 创建一个 RawRead 类的实例,传入原始文件路径 raw_file,用于读取该原始文件中的数据。<br />
raw_data = RawRead(raw_file)<br />
# 通过 raw_data 对象的 get_wave 方法获取名为'V(out)'的波形数据。假设 RawRead 类内部实现了根据波形名称获取特定波形数据的逻辑。<br />
vout = raw_data.get_wave('V(out)')<br />
# 返回原始文件路径和该波形数据的最大值。这样可以在外部调用这个函数时,得到原始文件路径以及该文件中特定波形的最大值。<br />
return raw_file, vout.max()<br />
# 将FilePath替换为你自己的地址<br />
FilePath = "C:/Users/xuyun/Desktop/Qspice9/Python.qsch"<br />
# 创建一个QschEditor实例,传入电路设计文件路径<br />
Python = QschEditor(FilePath)<br />
# 仿真输出文件夹<br />
runner = SimRunner(output_folder='C:/Users/xuyun/Desktop/Qspice9')<br />
# 打印所有元件<br />
print("All Components", Python.get_components())<br />
# 打印所有电容元件<br />
print("Capacitors", Python.get_components('C'))<br />
# 打印名为R1的元件信息<br />
print("R1 info:", Python.get_component_info('R1'))<br />
# 打印名为C1的元件值<br />
print("C1 value:", Python.get_component_value('C1'))<br />
# 设定R1和C1的参数<br />
Python.set_component_value('R1','123K')<br />
Python.set_component_value('C1','15n')<br />
# 修改V2的模型<br />
Python.set_element_model('V2', "PULSE 0 5 1m 1n 1n 3u 10u")<br />
# 保存修改后的电路设计文件为另一个.qsch文件<br />
Python.save_as("C:/Users/xuyun/Desktop/Qspice9/Python2.qsch")<br />
# 保存为网表文件<br />
Python.save_netlist("C:/Users/xuyun/Desktop/Qspice9/Pythong.net")<br />
# 创建SpiceEditor实例,传入网表文件路径<br />
netlist = SpiceEditor("C:/Users/xuyun/Desktop/Qspice9/Pythong.net")<br />
# 运行仿真,并将结果传递给数据处理函数进行处理<br />
runner.run(netlist, callback=processing_data, run_filename=f'testfile_qspice.net')</td>
</tr>
</tbody>
</table>
<div><strong>有可能会遇到GBK相关的报错,可以通过以下方法解决</strong></div>
<ol>
<li><strong>打开 Qsch_edtior.py</strong></li>
<li><strong>修改</strong><strong>save_netlist</strong><strong>()函数为以下</strong></li>
</ol>
<table border="1">
<tbody>
<tr>
<td> def save_netlist(self, run_netlist_file: Union) -> None:<br />
if isinstance(run_netlist_file, str):<br />
run_netlist_file = Path(run_netlist_file)<br />
if self.schematic is None:<br />
_logger.error("Empty Schematic information")<br />
return<br />
if run_netlist_file.suffix == '.qsch':<br />
self.save_as(run_netlist_file)<br />
elif run_netlist_file.suffix in ('.net', '.cir'):<br />
with open(run_netlist_file, 'w', encoding='utf-8') as netlist_file:<br />
_logger.info(f"Writing NET file {run_netlist_file}")<br />
netlist_file.write(f'* {os.path.abspath(self._qsch_file_path.as_posix())}\n')<br />
self.write_spice_to_file(netlist_file)<br />
netlist_file.write('.end\n')</td>
</tr>
</tbody>
</table>
<div>运行结果如下图5所示:</div>
<div></div>
<div>图5:代码运行结果</div>
<div></div>
<div>图6:仿真结果图</div>
<div>使用Python肯定是想将重复的工作交给电脑去处理,在这里给出一个例程如下:</div>
<table border="1">
<tbody>
<tr>
<td>from qspice import SimRunner, SpiceEditor, RawRead, sweep_log, QschEditor<br />
# 数据处理<br />
def processing_data(raw_file, log_file):<br />
# 打印当前正在处理的原始文件和对应的日志文件的信息,让用户清楚地知道正在操作的文件。<br />
print("Handling the simulation data of %s, log file %s" % (raw_file, log_file))<br />
# 创建一个 RawRead 类的实例,传入原始文件路径 raw_file,用于读取该原始文件中的数据。<br />
raw_data = RawRead(raw_file)<br />
# 通过 raw_data 对象的 get_wave 方法获取名为'V(out)'的波形数据。假设 RawRead 类内部实现了根据波形名称获取特定波形数据的逻辑。<br />
vout = raw_data.get_wave('V(OUT)')<br />
# 返回原始文件路径和该波形数据的最大值。这样可以在外部调用这个函数时,得到原始文件路径以及该文件中特定波形的最大值。<br />
return raw_file, vout.max()<br />
# 将FilePath替换为你自己的地址<br />
FilePath = "C:/Users/xuyun/Desktop/Qspice9/Python.qsch"<br />
# 创建一个QschEditor实例,传入电路设计文件路径<br />
Python = QschEditor(FilePath)<br />
# 仿真输出文件夹<br />
runner = SimRunner(output_folder='C:/Users/xuyun/Desktop/Qspice9')<br />
# 打印所有元件<br />
print("All Components", Python.get_components())<br />
# 打印所有电容元件<br />
print("Capacitors", Python.get_components('C'))<br />
# 打印名为R1的元件信息<br />
print("R1 info:", Python.get_component_info('R1'))<br />
# 打印名为C1的元件值<br />
print("C1 value:", Python.get_component_value('C1'))<br />
# 设定R1和C1的参数<br />
Python.set_component_value('R1','123K')<br />
Python.set_component_value('C1','15n')<br />
# 遍历V2的Ton时间<br />
for i in range(1,10):<br />
V2_Param=f"PULSE 0 5 1m 1n 1n {i}u 10u"<br />
# 修改V2的模型<br />
Python.set_element_model('V2', V2_Param)<br />
# 保存修改后的电路设计文件为另一个.qsch文件<br />
Python.save_as(f"C:/Users/xuyun/Desktop/Qspice9/Python{i}.qsch")<br />
# 保存为网表文件<br />
Python.save_netlist(f"C:/Users/xuyun/Desktop/Qspice9/Python{i}.net")<br />
# 创建SpiceEditor实例,传入网表文件路径<br />
netlist = SpiceEditor(f"C:/Users/xuyun/Desktop/Qspice9/Python{i}.net")<br />
# 运行仿真,并将结果传递给数据处理函数进行处理<br />
runner.run(netlist, callback=processing_data, run_filename=f'testfile_qspice_{i}.net')</td>
</tr>
</tbody>
</table>
<div>仿真结果如图7所示:</div>
<div></div>
<div>图7:左Ton=1u 右Ton=9u</div>
<div>好了,今天的Qspice教程就到这里了,周末愉快!</div>
<div><!--importdoc--></div>
</div><script> var loginstr = '<div class="locked">查看精华帖全部内容,请<a href="javascript:;" style="color:#e60000" class="loginf">登录</a>或者<a href="https://bbs.eeworld.com.cn/member.php?mod=register_eeworld.php&action=wechat" style="color:#e60000" target="_blank">注册</a></div>';
if(parseInt(discuz_uid)==0){
(function($){
var postHeight = getTextHeight(400);
$(".showpostmsg").html($(".showpostmsg").html());
$(".showpostmsg").after(loginstr);
$(".showpostmsg").css({height:postHeight,overflow:"hidden"});
})(jQuery);
}
</script><script type="text/javascript">(function(d,c){var a=d.createElement("script"),m=d.getElementsByTagName("script"),eewurl="//counter.eeworld.com.cn/pv/count/";a.src=eewurl+c;m.parentNode.insertBefore(a,m)})(document,523)</script> <p>很好很强大!!!!!这个很不错!</p>
QSpice (9) --结合Python仿真, 把俩个工具结合到一起, 做得真的漂亮啊。 挺好的。
页:
[1]