close_project# Mechanical.close_project(name: str = None, save: bool = True) → bool# Close an AEDT project. Parameters: namestr, optionalName of the project. The default is None, in which case the active project is closed. savebool, optionalWhether to save the project before closing it. The default is True. Returns: boolTrue when successful, False when failed. References >>> oDesktop.CloseProject Examples >>> from ansys.aedt.core import Hfss >>> app = Hfss() >>> app.close_project(save=True)