Skip to content

Commit

Permalink
Update ParametricSetups docstring
Browse files Browse the repository at this point in the history
The step can be any valid expression, including
a string.
  • Loading branch information
Devin-Crawford committed Dec 28, 2024
1 parent 3a67112 commit 5eb9a06
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/ansys/aedt/core/modules/design_xploration.py
Original file line number Diff line number Diff line change
Expand Up @@ -1162,10 +1162,13 @@ def add(
Variation Start Point if a variation is defined or Single Value.
end_point : float or int, optional
Variation End Point. This parameter is optional if a Single Value is defined.
step : float or int
Variation Step or Count depending on variation_type. The default is ``100``.
step : float, int, or str
Variation Step or Count depending on variation_type. The default is ``100``
for the "LinearCount" variation_type. If a string is passed as an argument, it
must be a valid expression in the given context. For example, "0.1mm" may be passed
for a step size when the variation_type is "LinearStep".
variation_type : str, optional
Variation Type. Admitted values are `"LinearCount"`, `"LinearStep"`, `"LogScale"`, `"SingleValue"`.
Variation Type. Permitted values are `"LinearCount"`, `"LinearStep"`, `"LogScale"`, `"SingleValue"`.
solution : str, optional
Type of the solution. The default is ``None``, in which case the default
solution is used.
Expand Down

0 comments on commit 5eb9a06

Please sign in to comment.