From 19e82a0e9c12a9efa046d6c473b66543e593afe7 Mon Sep 17 00:00:00 2001 From: "Felipe N. Schuch" Date: Fri, 13 Sep 2024 10:50:44 -0300 Subject: [PATCH] fix: iforces parameter not identified #63 --- xcompact3d_toolbox/parameters.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/xcompact3d_toolbox/parameters.py b/xcompact3d_toolbox/parameters.py index 6861ad9..db13335 100644 --- a/xcompact3d_toolbox/parameters.py +++ b/xcompact3d_toolbox/parameters.py @@ -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__()