Skip to content

Commit

Permalink
switched to initials for diffusivity props
Browse files Browse the repository at this point in the history
  • Loading branch information
popenc committed Aug 19, 2024
1 parent fb121df commit fd59147
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cts_calcs
8 changes: 4 additions & 4 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -454,12 +454,12 @@ def handle_equation_request(self, sessionid, request_post):
for prop in props:
diff_response["prop"] = prop
if prop == "mol_diss":
diff_response["data"] = diff_vals["Wilk-Chang"]
diff_response["method"] = "Wilk-Chang"
diff_response["data"] = diff_vals["W-C"]
diff_response["method"] = "W-C"
self.redis_conn.publish(sessionid, json.dumps(diff_response))

diff_response["data"] = diff_vals["Hayduk-Laudie"]
diff_response["method"] = "Hayduk-Laudie"
diff_response["data"] = diff_vals["H-L"]
diff_response["method"] = "H-L"
self.redis_conn.publish(sessionid, json.dumps(diff_response))

elif prop == "mol_diss_air":
Expand Down

0 comments on commit fd59147

Please sign in to comment.