We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug The default value of dp_start is incorrect.
dp_start
It is stated as
dp_start=pressureDropCoeff*(m_flow_start * Medium.density(Medium.setState_pTX( p_start, T_start, Medium.reference_X)))^2)
but should be
dp_start=pressureDropCoeff*(m_flow_start / Medium.density(Medium.setState_pTX( p_start, T_start, Medium.reference_X)))^2)
as dp = a*(m_flow/rho) ^2.
dp = a*(m_flow/rho) ^2
The text was updated successfully, but these errors were encountered:
Fix division error #1452
14e90c1
Merge pull request #1453 from RWTH-EBC/1452-fix-dp_start-value-in-sol…
ae5066b
…ar-collector Fix division error #1452
FWuellhorst
Successfully merging a pull request may close this issue.
Describe the bug
The default value of
dp_start
is incorrect.It is stated as
but should be
as
dp = a*(m_flow/rho) ^2
.The text was updated successfully, but these errors were encountered: