Skip to content

Commit

Permalink
INSEUL, corrected the code format
Browse files Browse the repository at this point in the history
  • Loading branch information
mengmengzhang2019 committed Jan 29, 2024
1 parent 4a17669 commit 7d62233
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ceasiompy/EdgeRun/func/edgeconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,9 @@ def edge_cfd(cpacs_path, cpacs_out_path, wkdir):
NPART = int(get_value_or_default(cpacs.tixi, EDGE_NB_CPU_XPATH, 64))

edge_solver = get_value(cpacs.tixi, EDGE_SOLVER_XPATH)
if edge_solver == "Euler"
if edge_solver == "Euler":
INSEUL = 0
if edge_solver == "RANS"
if edge_solver == "RANS":
INSEUL = 1
else:
raise Exception("Error, edge solver not assigned")
Expand Down

0 comments on commit 7d62233

Please sign in to comment.