You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is neccessary to prevent the programm from crash when try to import solution data with the same name again. Therefore if the "same" solution is about to get imported again first the "old" one which got the identical name needs to be deleted.
Currently solved via IronPython command. But major drawback that for updatng the internal registry needs a save_project() which can take time for larger projects. The need to save to refresh internal entries after a deletion is the major problem.
Steps for implementing the feature
No response
Useful links and references
No response
The text was updated successfully, but these errors were encountered:
Description of the feature
To delete solution data which came from table imports I currently use the following in HFSS:
osolution = pyaedt_app.osolution
solution = "solution_name"
osolution.DeleteImportData(solution)
This is neccessary to prevent the programm from crash when try to import solution data with the same name again. Therefore if the "same" solution is about to get imported again first the "old" one which got the identical name needs to be deleted.
Currently solved via IronPython command. But major drawback that for updatng the internal registry needs a save_project() which can take time for larger projects. The need to save to refresh internal entries after a deletion is the major problem.
Steps for implementing the feature
No response
Useful links and references
No response
The text was updated successfully, but these errors were encountered: