Modelica 电气延迟
我正在 Modelica 中创建电气系统模型(带数字控制的电源)。
我使用 Modelica.Electrical.Analog.Sources.PulseVoltage 和 Modelica.Blocks.Nonlinear.FixedDelay 我想连接它们。 如何在 Blocks.Nonlinear 和 Electrical 组件之间进行混合(互连)?
我需要为我的晶体管生成移位的脉冲,因此我决定使用固定延迟。 有没有更好的方法来延迟脉冲电压?
此致, 彼得
I am creating model for electrical system (power supply with digital control) in Modelica.
I use Modelica.Electrical.Analog.Sources.PulseVoltage and Modelica.Blocks.Nonlinear.FixedDelay I want to connect them.
How to do a mix (interconnect) between Blocks.Nonlinear and Electrical components?
I need to generate pulses to my transistors which are shifted so I decided to use FixedDelay.
Is there better way to do a delay of pulsing voltage?
Best regards,
Peter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
Modelica.Blocks.Sources.Pulse
并将其与Modelica.Blocks.Nonlinear 连接,而不是使用
并最后添加Modelica.Electrical.Analog.Sources.PulseVoltage
作为源.FixedDelayModelica.Electrical.Analog.Sources.SignalVoltage
以便从延迟脉冲中生成实际电压。我不确定这是否是您所拥有的应用程序的最佳解决方案,但至少这样您会得到延迟的电压脉冲:)/Dietmar/
Instead of using
Modelica.Electrical.Analog.Sources.PulseVoltage
as source you can useModelica.Blocks.Sources.Pulse
and connect this withModelica.Blocks.Nonlinear.FixedDelay
and add finallyModelica.Electrical.Analog.Sources.SignalVoltage
in order to generate an actual voltage out of your delayed pulses. I'm not sure if this is the best solution for the application you have but at least that way you would get delayed voltage pulses :)/Dietmar/
“现在我的解决方案是”
我不确定是否完美,但它有效......
此外,我需要添加数字控制 - 另一个挑战
最好的问候,
彼得
"For nowadays my solution is"
I am not sure is perfect but it works...
Further I need to add digital control - another challenge
Best regards,
Peter