Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOCS: Update ParametricSetups docstring #5617

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading