Open hui-zhou-a opened 2 days ago
Hi @hui-zhou-a ,
This would mean creating another layer (class) for project management, and this is for now not considered in the PyAEDT roadmap But I do agree, that we could add an "add_new_project" method at Desktop level. Because for now, there is only New Project addition at Design level.
Something like:
ds = Desktop(specified_version="2024.2",
non_graphical=False,
new_desktop_session=True,
close_on_exit=True,
student_version=False)
proj_name = ds.new_project(name="project)
h3d = proj.Hfss3dLayout(name="h3d", project=proj_name)
ipk = proj.Icepak(name="ipk", project=proj_name))
What do you think?
I agree.
It should also be able to list all projects
ds.projects
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,
Steps for implementing the feature
It would be better if the user can do below
Useful links and references
No response