Skip to content

Commit

Permalink
Fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fwitte committed Feb 12, 2025
1 parent ac1e23e commit cf1d935
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tespy/networks/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -1111,7 +1111,7 @@ def presolve_fluid_topology(self):
main_conn.fluid.is_var = variable
num_var = len(variable)
for f in variable:
main_conn.fluid.val[f]: (1 - mass_fraction_sum) / num_var
main_conn.fluid.val[f] = (1 - mass_fraction_sum) / num_var

[c.build_fluid_data() for c in all_connections]
for fluid in main_conn.fluid.is_var:
Expand Down

0 comments on commit cf1d935

Please sign in to comment.