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

FEAT: Add dictionary entries to set custom savefields #5502

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
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
11 changes: 11 additions & 0 deletions src/ansys/aedt/core/modules/setup_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,16 @@ def HFSS3DLayout_AdaptiveFrequencyData(freq):
)
"""HFSS SBR+ setup properties and default values."""

mw_subrange = dict(
{
"RangeType": "LinearStep",
"RangeStart": "500Hz",
"RangeEnd": "1kHz",
"RangeStep": "500Hz",
}
)
mw_subranges = dict({"Subrange": mw_subrange})

MaxwellTransient = dict(
{
"Enabled": True,
Expand All @@ -191,6 +201,7 @@ def HFSS3DLayout_AdaptiveFrequencyData(freq):
"NumberSolveSteps": 1,
"RangeStart": "0s",
"RangeEnd": "0.1s",
"SweepRanges": mw_subranges,
}
)
"""Maxwell transient setup properties and default values."""
Expand Down
Loading