将此模型引入我的仿真中会大大增加仿真时间!
model m_flow_calc
"A simple model to calculated the primary mass flow needed to heat up space heating water "
import SI = Modelica.SIunits;
parameter SI.Temperature T_SHW_out = 30+273.15 "Temperature of the space heating water supply temperature";
parameter SI.Temperature T_SHW_in = 10+273.15 "Temperature of the space heating water return temperature";
Modelica.Blocks.Interfaces.RealInput Q_demand;
equation
m_flow =-Q_demand/(4120*(T_SHW_out-T_SHW_in)); //"Calculating the primary mass flow for a given Heating demand to heat the space heating water to the set temperature"
end m_flow_calc;
利用计算出的质量流量,边界会吸引通过热交换器的质量流量。然后,将十六进制后的温度传递到另一个边界,该边界像第一个边界一样“推动”相同的质量流。
我缺少某些东西在减慢模拟速度吗?