Skip to content

Commit

Permalink
fix: iforces parameter not identified #63 (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
fschuch authored Sep 13, 2024
1 parent 3498222 commit 931bf44
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions xcompact3d_toolbox/parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,6 +605,11 @@ class ParametersIbmStuff(traitlets.HasTraits):
the recommended is 2.
"""

iforces = traitlets.Int(default_value=0, min=0, max=1).tag(
group="ibmstuff", desc="Forces calculation (0: No, 1: Yes)"
)
"""int: Enables forces calculation."""

def __init__(self):
super().__init__()

Expand Down

0 comments on commit 931bf44

Please sign in to comment.