xutong 发表于 2024-9-28 12:10

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=&quot;C:/Users/xutong/Qspice9/Python.qsch&quot;<br />
                        # 创建一个QschEditor实例,传入电路设计文件路径<br />
                        Python = QschEditor(FilePath)<br />
                        # 打印所有元件<br />
                        print(&quot;All Components&quot;, Python.get_components())<br />
                        # 打印所有电容元件<br />
                        print(&quot;Capacitors&quot;, Python.get_components(&#39;C&#39;))<br />
                        # 打印名为R1的元件信息<br />
                        print(&quot;R1 info:&quot;, Python.get_component_info(&#39;R1&#39;))<br />
                        # 打印名为C1的元件值<br />
                        print(&quot;C1 value:&quot;, Python.get_component_value(&#39;C1&#39;))</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=&quot;C:/Users/xuyun/Desktop/Qspice9/Python.qsch&quot;<br />
                        # 创建一个QschEditor实例,传入电路设计文件路径<br />
                        Python = QschEditor(FilePath)<br />
                        # 打印所有元件<br />
                        print(&quot;All Components&quot;, Python.get_components())<br />
                        # 打印所有电容元件<br />
                        print(&quot;Capacitors&quot;, Python.get_components(&#39;C&#39;))<br />
                        # 打印名为R1的元件信息<br />
                        print(&quot;R1 info:&quot;, Python.get_component_info(&#39;R1&#39;))<br />
                        # 打印名为C1的元件值<br />
                        print(&quot;C1 value:&quot;, Python.get_component_value(&#39;C1&#39;))<br />
                        # 设定R1和C1的参数<br />
                        Python.set_component_value(&#39;R1&#39;,&#39;123K&#39;)<br />
                        Python.set_component_value(&#39;C1&#39;,&#39;15n&#39;)<br />
                        # 修改V2的模型<br />
                        Python.set_element_model(&#39;V2&#39;, &quot;PULSE 0 5 1m 1n 1n 3u 10u&quot;)<br />
                        Python.save_as(&quot;C:/Users/xuyun/Desktop/Qspice9/Python2.qsch&quot;)</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 />
                        &nbsp; &nbsp; # 打印当前正在处理的原始文件和对应的日志文件的信息,让用户清楚地知道正在操作的文件。<br />
                        &nbsp; &nbsp; print(&quot;Handling the simulation data of %s, log file %s&quot; % (raw_file, log_file))<br />
                        &nbsp; &nbsp; # 创建一个 RawRead 类的实例,传入原始文件路径 raw_file,用于读取该原始文件中的数据。<br />
                        &nbsp; &nbsp; raw_data = RawRead(raw_file)<br />
                        &nbsp; &nbsp; # 通过 raw_data 对象的 get_wave 方法获取名为&#39;V(out)&#39;的波形数据。假设 RawRead 类内部实现了根据波形名称获取特定波形数据的逻辑。<br />
                        &nbsp; &nbsp; vout = raw_data.get_wave(&#39;V(out)&#39;)<br />
                        &nbsp; &nbsp; # 返回原始文件路径和该波形数据的最大值。这样可以在外部调用这个函数时,得到原始文件路径以及该文件中特定波形的最大值。<br />
                        &nbsp; &nbsp; return raw_file, vout.max()<br />
                        # 将FilePath替换为你自己的地址<br />
                        FilePath = &quot;C:/Users/xuyun/Desktop/Qspice9/Python.qsch&quot;<br />
                        # 创建一个QschEditor实例,传入电路设计文件路径<br />
                        Python = QschEditor(FilePath)<br />
                        # 仿真输出文件夹<br />
                        runner = SimRunner(output_folder=&#39;C:/Users/xuyun/Desktop/Qspice9&#39;)<br />
                        # 打印所有元件<br />
                        print(&quot;All Components&quot;, Python.get_components())<br />
                        # 打印所有电容元件<br />
                        print(&quot;Capacitors&quot;, Python.get_components(&#39;C&#39;))<br />
                        # 打印名为R1的元件信息<br />
                        print(&quot;R1 info:&quot;, Python.get_component_info(&#39;R1&#39;))<br />
                        # 打印名为C1的元件值<br />
                        print(&quot;C1 value:&quot;, Python.get_component_value(&#39;C1&#39;))<br />
                        # 设定R1和C1的参数<br />
                        Python.set_component_value(&#39;R1&#39;,&#39;123K&#39;)<br />
                        Python.set_component_value(&#39;C1&#39;,&#39;15n&#39;)<br />
                        # 修改V2的模型<br />
                        Python.set_element_model(&#39;V2&#39;, &quot;PULSE 0 5 1m 1n 1n 3u 10u&quot;)<br />
                        # 保存修改后的电路设计文件为另一个.qsch文件<br />
                        Python.save_as(&quot;C:/Users/xuyun/Desktop/Qspice9/Python2.qsch&quot;)<br />
                        # 保存为网表文件<br />
                        Python.save_netlist(&quot;C:/Users/xuyun/Desktop/Qspice9/Pythong.net&quot;)<br />
                        # 创建SpiceEditor实例,传入网表文件路径<br />
                        netlist = SpiceEditor(&quot;C:/Users/xuyun/Desktop/Qspice9/Pythong.net&quot;)<br />
                        # 运行仿真,并将结果传递给数据处理函数进行处理<br />
                        runner.run(netlist, callback=processing_data, run_filename=f&#39;testfile_qspice.net&#39;)</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>&nbsp; &nbsp; def save_netlist(self, run_netlist_file: Union) -&gt; None:<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; if isinstance(run_netlist_file, str):<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; run_netlist_file = Path(run_netlist_file)<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; if self.schematic is None:<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _logger.error(&quot;Empty Schematic information&quot;)<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; if run_netlist_file.suffix == &#39;.qsch&#39;:<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self.save_as(run_netlist_file)<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; elif run_netlist_file.suffix in (&#39;.net&#39;, &#39;.cir&#39;):<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; with open(run_netlist_file, &#39;w&#39;, encoding=&#39;utf-8&#39;) as netlist_file:<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _logger.info(f&quot;Writing NET file {run_netlist_file}&quot;)<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; netlist_file.write(f&#39;* {os.path.abspath(self._qsch_file_path.as_posix())}\n&#39;)<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self.write_spice_to_file(netlist_file)<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; netlist_file.write(&#39;.end\n&#39;)</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 />
                        &nbsp; &nbsp; # 打印当前正在处理的原始文件和对应的日志文件的信息,让用户清楚地知道正在操作的文件。<br />
                        &nbsp; &nbsp; print(&quot;Handling the simulation data of %s, log file %s&quot; % (raw_file, log_file))<br />
                        &nbsp; &nbsp; # 创建一个 RawRead 类的实例,传入原始文件路径 raw_file,用于读取该原始文件中的数据。<br />
                        &nbsp; &nbsp; raw_data = RawRead(raw_file)<br />
                        &nbsp; &nbsp; # 通过 raw_data 对象的 get_wave 方法获取名为&#39;V(out)&#39;的波形数据。假设 RawRead 类内部实现了根据波形名称获取特定波形数据的逻辑。<br />
                        &nbsp; &nbsp; vout = raw_data.get_wave(&#39;V(OUT)&#39;)<br />
                        &nbsp; &nbsp; # 返回原始文件路径和该波形数据的最大值。这样可以在外部调用这个函数时,得到原始文件路径以及该文件中特定波形的最大值。<br />
                        &nbsp; &nbsp; return raw_file, vout.max()<br />
                        # 将FilePath替换为你自己的地址<br />
                        FilePath = &quot;C:/Users/xuyun/Desktop/Qspice9/Python.qsch&quot;<br />
                        # 创建一个QschEditor实例,传入电路设计文件路径<br />
                        Python = QschEditor(FilePath)<br />
                        # 仿真输出文件夹<br />
                        runner = SimRunner(output_folder=&#39;C:/Users/xuyun/Desktop/Qspice9&#39;)<br />
                        # 打印所有元件<br />
                        print(&quot;All Components&quot;, Python.get_components())<br />
                        # 打印所有电容元件<br />
                        print(&quot;Capacitors&quot;, Python.get_components(&#39;C&#39;))<br />
                        # 打印名为R1的元件信息<br />
                        print(&quot;R1 info:&quot;, Python.get_component_info(&#39;R1&#39;))<br />
                        # 打印名为C1的元件值<br />
                        print(&quot;C1 value:&quot;, Python.get_component_value(&#39;C1&#39;))<br />
                        # 设定R1和C1的参数<br />
                        Python.set_component_value(&#39;R1&#39;,&#39;123K&#39;)<br />
                        Python.set_component_value(&#39;C1&#39;,&#39;15n&#39;)<br />
                        # 遍历V2的Ton时间<br />
                        for i in range(1,10):<br />
                        &nbsp; &nbsp; V2_Param=f&quot;PULSE 0 5 1m 1n 1n {i}u 10u&quot;<br />
                        &nbsp; &nbsp; # 修改V2的模型<br />
                        &nbsp; &nbsp; Python.set_element_model(&#39;V2&#39;, V2_Param)<br />
                        &nbsp; &nbsp; # 保存修改后的电路设计文件为另一个.qsch文件<br />
                        &nbsp; &nbsp; Python.save_as(f&quot;C:/Users/xuyun/Desktop/Qspice9/Python{i}.qsch&quot;)<br />
                        &nbsp; &nbsp; # 保存为网表文件<br />
                        &nbsp; &nbsp; Python.save_netlist(f&quot;C:/Users/xuyun/Desktop/Qspice9/Python{i}.net&quot;)<br />
                        &nbsp; &nbsp; # 创建SpiceEditor实例,传入网表文件路径<br />
                        &nbsp; &nbsp; netlist = SpiceEditor(f&quot;C:/Users/xuyun/Desktop/Qspice9/Python{i}.net&quot;)<br />
                        &nbsp; &nbsp; # 运行仿真,并将结果传递给数据处理函数进行处理<br />
                        &nbsp; &nbsp; runner.run(netlist, callback=processing_data, run_filename=f&#39;testfile_qspice_{i}.net&#39;)</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=&quot;C:/Users/xutong/Qspice9/Python.qsch&quot;<br />
                        # 创建一个QschEditor实例,传入电路设计文件路径<br />
                        Python = QschEditor(FilePath)<br />
                        # 打印所有元件<br />
                        print(&quot;All Components&quot;, Python.get_components())<br />
                        # 打印所有电容元件<br />
                        print(&quot;Capacitors&quot;, Python.get_components(&#39;C&#39;))<br />
                        # 打印名为R1的元件信息<br />
                        print(&quot;R1 info:&quot;, Python.get_component_info(&#39;R1&#39;))<br />
                        # 打印名为C1的元件值<br />
                        print(&quot;C1 value:&quot;, Python.get_component_value(&#39;C1&#39;))</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=&quot;C:/Users/xuyun/Desktop/Qspice9/Python.qsch&quot;<br />
                        # 创建一个QschEditor实例,传入电路设计文件路径<br />
                        Python = QschEditor(FilePath)<br />
                        # 打印所有元件<br />
                        print(&quot;All Components&quot;, Python.get_components())<br />
                        # 打印所有电容元件<br />
                        print(&quot;Capacitors&quot;, Python.get_components(&#39;C&#39;))<br />
                        # 打印名为R1的元件信息<br />
                        print(&quot;R1 info:&quot;, Python.get_component_info(&#39;R1&#39;))<br />
                        # 打印名为C1的元件值<br />
                        print(&quot;C1 value:&quot;, Python.get_component_value(&#39;C1&#39;))<br />
                        # 设定R1和C1的参数<br />
                        Python.set_component_value(&#39;R1&#39;,&#39;123K&#39;)<br />
                        Python.set_component_value(&#39;C1&#39;,&#39;15n&#39;)<br />
                        # 修改V2的模型<br />
                        Python.set_element_model(&#39;V2&#39;, &quot;PULSE 0 5 1m 1n 1n 3u 10u&quot;)<br />
                        Python.save_as(&quot;C:/Users/xuyun/Desktop/Qspice9/Python2.qsch&quot;)</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 />
                        &nbsp; &nbsp; # 打印当前正在处理的原始文件和对应的日志文件的信息,让用户清楚地知道正在操作的文件。<br />
                        &nbsp; &nbsp; print(&quot;Handling the simulation data of %s, log file %s&quot; % (raw_file, log_file))<br />
                        &nbsp; &nbsp; # 创建一个 RawRead 类的实例,传入原始文件路径 raw_file,用于读取该原始文件中的数据。<br />
                        &nbsp; &nbsp; raw_data = RawRead(raw_file)<br />
                        &nbsp; &nbsp; # 通过 raw_data 对象的 get_wave 方法获取名为&#39;V(out)&#39;的波形数据。假设 RawRead 类内部实现了根据波形名称获取特定波形数据的逻辑。<br />
                        &nbsp; &nbsp; vout = raw_data.get_wave(&#39;V(out)&#39;)<br />
                        &nbsp; &nbsp; # 返回原始文件路径和该波形数据的最大值。这样可以在外部调用这个函数时,得到原始文件路径以及该文件中特定波形的最大值。<br />
                        &nbsp; &nbsp; return raw_file, vout.max()<br />
                        # 将FilePath替换为你自己的地址<br />
                        FilePath = &quot;C:/Users/xuyun/Desktop/Qspice9/Python.qsch&quot;<br />
                        # 创建一个QschEditor实例,传入电路设计文件路径<br />
                        Python = QschEditor(FilePath)<br />
                        # 仿真输出文件夹<br />
                        runner = SimRunner(output_folder=&#39;C:/Users/xuyun/Desktop/Qspice9&#39;)<br />
                        # 打印所有元件<br />
                        print(&quot;All Components&quot;, Python.get_components())<br />
                        # 打印所有电容元件<br />
                        print(&quot;Capacitors&quot;, Python.get_components(&#39;C&#39;))<br />
                        # 打印名为R1的元件信息<br />
                        print(&quot;R1 info:&quot;, Python.get_component_info(&#39;R1&#39;))<br />
                        # 打印名为C1的元件值<br />
                        print(&quot;C1 value:&quot;, Python.get_component_value(&#39;C1&#39;))<br />
                        # 设定R1和C1的参数<br />
                        Python.set_component_value(&#39;R1&#39;,&#39;123K&#39;)<br />
                        Python.set_component_value(&#39;C1&#39;,&#39;15n&#39;)<br />
                        # 修改V2的模型<br />
                        Python.set_element_model(&#39;V2&#39;, &quot;PULSE 0 5 1m 1n 1n 3u 10u&quot;)<br />
                        # 保存修改后的电路设计文件为另一个.qsch文件<br />
                        Python.save_as(&quot;C:/Users/xuyun/Desktop/Qspice9/Python2.qsch&quot;)<br />
                        # 保存为网表文件<br />
                        Python.save_netlist(&quot;C:/Users/xuyun/Desktop/Qspice9/Pythong.net&quot;)<br />
                        # 创建SpiceEditor实例,传入网表文件路径<br />
                        netlist = SpiceEditor(&quot;C:/Users/xuyun/Desktop/Qspice9/Pythong.net&quot;)<br />
                        # 运行仿真,并将结果传递给数据处理函数进行处理<br />
                        runner.run(netlist, callback=processing_data, run_filename=f&#39;testfile_qspice.net&#39;)</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>&nbsp; &nbsp; def save_netlist(self, run_netlist_file: Union) -&gt; None:<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; if isinstance(run_netlist_file, str):<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; run_netlist_file = Path(run_netlist_file)<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; if self.schematic is None:<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _logger.error(&quot;Empty Schematic information&quot;)<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; return<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; if run_netlist_file.suffix == &#39;.qsch&#39;:<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self.save_as(run_netlist_file)<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; elif run_netlist_file.suffix in (&#39;.net&#39;, &#39;.cir&#39;):<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; with open(run_netlist_file, &#39;w&#39;, encoding=&#39;utf-8&#39;) as netlist_file:<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; _logger.info(f&quot;Writing NET file {run_netlist_file}&quot;)<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; netlist_file.write(f&#39;* {os.path.abspath(self._qsch_file_path.as_posix())}\n&#39;)<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; self.write_spice_to_file(netlist_file)<br />
                        &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; netlist_file.write(&#39;.end\n&#39;)</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 />
                        &nbsp; &nbsp; # 打印当前正在处理的原始文件和对应的日志文件的信息,让用户清楚地知道正在操作的文件。<br />
                        &nbsp; &nbsp; print(&quot;Handling the simulation data of %s, log file %s&quot; % (raw_file, log_file))<br />
                        &nbsp; &nbsp; # 创建一个 RawRead 类的实例,传入原始文件路径 raw_file,用于读取该原始文件中的数据。<br />
                        &nbsp; &nbsp; raw_data = RawRead(raw_file)<br />
                        &nbsp; &nbsp; # 通过 raw_data 对象的 get_wave 方法获取名为&#39;V(out)&#39;的波形数据。假设 RawRead 类内部实现了根据波形名称获取特定波形数据的逻辑。<br />
                        &nbsp; &nbsp; vout = raw_data.get_wave(&#39;V(OUT)&#39;)<br />
                        &nbsp; &nbsp; # 返回原始文件路径和该波形数据的最大值。这样可以在外部调用这个函数时,得到原始文件路径以及该文件中特定波形的最大值。<br />
                        &nbsp; &nbsp; return raw_file, vout.max()<br />
                        # 将FilePath替换为你自己的地址<br />
                        FilePath = &quot;C:/Users/xuyun/Desktop/Qspice9/Python.qsch&quot;<br />
                        # 创建一个QschEditor实例,传入电路设计文件路径<br />
                        Python = QschEditor(FilePath)<br />
                        # 仿真输出文件夹<br />
                        runner = SimRunner(output_folder=&#39;C:/Users/xuyun/Desktop/Qspice9&#39;)<br />
                        # 打印所有元件<br />
                        print(&quot;All Components&quot;, Python.get_components())<br />
                        # 打印所有电容元件<br />
                        print(&quot;Capacitors&quot;, Python.get_components(&#39;C&#39;))<br />
                        # 打印名为R1的元件信息<br />
                        print(&quot;R1 info:&quot;, Python.get_component_info(&#39;R1&#39;))<br />
                        # 打印名为C1的元件值<br />
                        print(&quot;C1 value:&quot;, Python.get_component_value(&#39;C1&#39;))<br />
                        # 设定R1和C1的参数<br />
                        Python.set_component_value(&#39;R1&#39;,&#39;123K&#39;)<br />
                        Python.set_component_value(&#39;C1&#39;,&#39;15n&#39;)<br />
                        # 遍历V2的Ton时间<br />
                        for i in range(1,10):<br />
                        &nbsp; &nbsp; V2_Param=f&quot;PULSE 0 5 1m 1n 1n {i}u 10u&quot;<br />
                        &nbsp; &nbsp; # 修改V2的模型<br />
                        &nbsp; &nbsp; Python.set_element_model(&#39;V2&#39;, V2_Param)<br />
                        &nbsp; &nbsp; # 保存修改后的电路设计文件为另一个.qsch文件<br />
                        &nbsp; &nbsp; Python.save_as(f&quot;C:/Users/xuyun/Desktop/Qspice9/Python{i}.qsch&quot;)<br />
                        &nbsp; &nbsp; # 保存为网表文件<br />
                        &nbsp; &nbsp; Python.save_netlist(f&quot;C:/Users/xuyun/Desktop/Qspice9/Python{i}.net&quot;)<br />
                        &nbsp; &nbsp; # 创建SpiceEditor实例,传入网表文件路径<br />
                        &nbsp; &nbsp; netlist = SpiceEditor(f&quot;C:/Users/xuyun/Desktop/Qspice9/Python{i}.net&quot;)<br />
                        &nbsp; &nbsp; # 运行仿真,并将结果传递给数据处理函数进行处理<br />
                        &nbsp; &nbsp; runner.run(netlist, callback=processing_data, run_filename=f&#39;testfile_qspice_{i}.net&#39;)</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>

木犯001号 发表于 2024-10-10 09:33

<p>很好很强大!!!!!这个很不错!</p>

zhuch 发表于 2024-11-29 21:20

QSpice (9) --结合Python仿真, 把俩个工具结合到一起, 做得真的漂亮啊。   挺好的。
页: [1]
查看完整版本: QSpice (9) --结合Python仿真