Open j-zipplies opened 4 months ago
On the develop branch, we implemented a new calculation mode "bidirectional" which would probably lead to more expected results. If you would like to test it with your example, we gladly use your feedback to make further improvements. I am not quite sure how to interpret the "real" pipe temperature, as temperature is hard to grasp for a component along which it changes. It will always be some intermediate value and must be derived from specific locations, which are usually the network nodes, in my opinion. But I would be interested in further ideas.
I just found that there was a bug in the result extraction for incompressible media. I opened pull request #640 as a fix. It will be on develop soon, I will also clarify how we can release it rather soon.
I totally agree, that "the" temperature in a pipe does not exist. In district heating the temperature difference between inlet and outlet should typically be <1K. Thus, it will be a very good approximation to use the mean temperature between inlet and outlet of the pipe (not mixing temperature at the outlet node) for the calculation of fluid properties, as you propose. For even more accuracy - e.g. in long pipes and during low load periods, where temperature drops might be higher - the pipe could be segmented and fluid properties calculated segment-wise. Another case are the components with larger temperature difference: heat exchangers or circ pumps. Here, density and velocity are not important, as these components don't calculate a pressure drop based on hydraulic flow calculations (as far as I understand them). However, the (temperature dependent) heat capacity is important in those components. High accuracy could be achieved by splitting the temperature drop into smaller portions and calculate cp as a mean value. E.g. a heat exchanger with 80 °C Inlet, 50 °C outlet => cp_mean = mean( cp(75°C), cp(65°C), cp(55°C) ). I don't know, how this is done currently.
If I use your bugfix from #640 and the mode "bidirectional" that you mentioned, I actually get results, that look more like I expected:
Calculated densities from v_mean: {996.49, 973.62}
Actual density at 273.15 K: 999.8801666666666
Actual density at 300 K: 996.49
Actual density at 350 K: 973.62
name t_from_k v_mean_m_per_s reynolds lambda \
0 pipe1_tj_300_tf_300 300.0 1.277724 149231.076504 0.021434
1 pipe2_tj_300_tf_300 300.0 1.277724 149231.076504 0.021434
2 pipe1_tj_350_tf_300 300.0 1.277724 149231.076504 0.021434
3 pipe2_tj_350_tf_300 300.0 1.277724 149231.076504 0.021434
4 pipe1_tj_300_tf_350 350.0 1.307738 345613.340048 0.020473
5 pipe2_tj_300_tf_350 350.0 1.307738 345613.340048 0.020473
6 pipe1_tj_350_tf_350 350.0 1.307738 345613.340048 0.020473
7 pipe2_tj_350_tf_350 350.0 1.307738 345613.340048 0.020473
dp dp_calc
0 1.737575 1.743487
1 1.737575 1.743487
2 1.737575 1.743487
3 1.737575 1.743487
4 1.659683 1.704448
5 1.659683 1.704448
6 1.659683 1.704448
7 1.659683 1.704448
@SimonRubenDrauz can you check the following line of code again: https://github.com/e2nIEE/pandapipes/blob/5b7e42cca68de43b3a539aee5719f7c4b5f4d59a/src/pandapipes/pf/derivative_toolbox.py#L22 --> there we use density at norm state, and I have in mind that there was some purpose to it. Can we review this together? Thanks a lot @j-zipplies for the helpful feedback! I will try to add the required changes to the fix PR.
With respect to the heat capacity, I could imagine that it should be part of the fluid property itself to find the mean value within a certain range, as the behavior can change a lot. So, if the dependency is e.g. quadratic, the property will have to find the integral for the given range and divide it by the range to retrieve the mean value. In case of interpolated points, the points within the range have to be evaluated and weighted by the respective distances.
Hi @j-zipplies, I corrected the bug and added your snippet as a test so that this issue will not evolve again in future versions (https://github.com/e2nIEE/pandapipes/pull/640/commits/a143789691f2de310fc20c8a0718ade04ba0adc7). This bug fix will be released soon. Thanks a lot for your support!
Describe the bug When simulating hot water in a pipe via pp.pipeflow(net, mode="all"), the results for velocity and re-Number => lambda and in final consequence the pressure drop have unexpected (in)dependencies on the temperatures. Probably, this comes from the way density and viscosity are calculated and the fact that hydraulic and thermal calculation are fully separated.
1) Density Apparently the density does not depend at all on the temperatures in the net. It is apparently set at t=273.15 K (999.9 kg/m³). In consequence, the flow velocity in res_pipes does not at all depend on the temperatures in the net, it just depends on mdot.
2) Viscosity The viscosity seems to be calculated according to tfluid_k at junctions - or, if applicable, the temperature of external grid. In consequence, reynolds numbers => lambda => pressure drop in the pipes depend on these temperatures.
To Reproduce I set up an example, external grid => pipe1 => pipe2 => sink, with four different configurations of temperatures (tfluid_k at junctions and the t_k from the external grid are either 300 or 350).
Output:
The output demonstrates:
Expected behavior Use the actual temperatures of the fluid in the pipe to calculate the fluid properties and results, that depend on those (velocity, reynolds, lambda, pressure drop).
Python environment (please complete the following information):
Note that in pandapipes version 0.9.0 the output of the above example is somewhat different: (probably related to #625) Here velocity and reynolds only depend on tfluid_k at junctions: (which is somewhat more consistent than the pp 0.10.0 behavior)
Additional context This issue is related to #384, and illustrates, that the fully separated hydraulic and thermal calculation as implemented now leads to confusing results.