Skip to content

Parametric sweep in transient simulation #4374

Closed Answered by Samuelopez-ansys
mikevacany asked this question in Q&A
Discussion options

You must be logged in to vote

@mikevacany You are right, this option is not available in PyAEDT, please add an issue if you need it. In the meantime, you can use the AEDT API:

app = Circuit(specified_version="2024.1")
setup = app.create_setup(setuptype="NexximTransient")
app.oanalysis.EditTransient(
    setup.name,
    [
        "NAME:SimSetup",
        "DataBlockID:=", setup.props["DataBlockID"],
        "OptionName:=", "(Default Options)",
        "AdditionalOptions:=", "",
        "AlterBlockName:=", "",
        "FilterText:=", "",
        "AnalysisEnabled:=", 1,
        "HasTDRComp:=", 0,
        [
            "NAME:OutputQuantities"
        ],
        [
            "NAME:NoiseOutputQuantities"
        ],
        …

Replies: 3 comments 1 reply

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
1 reply
@mikevacany
Comment options

Answer selected by mikevacany
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants