We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When there are more than one active AEDT, creating two designs in one project is trivial. Below is a safe way to do it,
` ds = Desktop(specified_version="2024.2", non_graphical=False, new_desktop_session=True, close_on_exit=True, student_version=False)
h3d = Hfss3dLayout( project="project_1", design="h3d", port=ds.aedt_process_id, aedt_process_id=ds.aedt_process_id, version=ds.aedt_version_id)
ipk = Icepak( project="project_1", design="ipk", port=ds.aedt_process_id, aedt_process_id=ds.aedt_process_id, version=ds.aedt_version_id) `
It would be better if the user can do below
proj = ds.project(name="project)
h3d = proj.Hfss3dLayout(name="h3d")
ipk = proj.Icepak(name="ipk") `
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of the feature
When there are more than one active AEDT, creating two designs in one project is trivial. Below is a safe way to do it,
`
ds = Desktop(specified_version="2024.2",
non_graphical=False,
new_desktop_session=True,
close_on_exit=True,
student_version=False)
h3d = Hfss3dLayout(
project="project_1",
design="h3d",
port=ds.aedt_process_id,
aedt_process_id=ds.aedt_process_id,
version=ds.aedt_version_id)
ipk = Icepak(
project="project_1",
design="ipk",
port=ds.aedt_process_id,
aedt_process_id=ds.aedt_process_id,
version=ds.aedt_version_id)
`
Steps for implementing the feature
It would be better if the user can do below
`
ds = Desktop(specified_version="2024.2",
non_graphical=False,
new_desktop_session=True,
close_on_exit=True,
student_version=False)
proj = ds.project(name="project)
h3d = proj.Hfss3dLayout(name="h3d")
ipk = proj.Icepak(name="ipk")
`
Useful links and references
No response
The text was updated successfully, but these errors were encountered: