generate_project_report#
- Project.generate_project_report(project, author, company, export_file)#
Generate a project report.
- Parameters:
project (str) – Name of the Sherlock project.
author (str) – Name of the author who is generating the report.
company (str) – Name of the author’s company.
export_file (str) – Full path to where the report is to be written.
Examples
>>> from ansys.sherlock.core.launcher import launch_sherlock >>> sherlock = launch_sherlock() >>> sherlock.project.import_odb_archive("ODB++ Tutorial.tgz", True, True, True, True, project="Tutorial", cca_name="Card") >>> sherlock.project.generate_project_report( "Tutorial", "John Doe", "Example", "example.pdf", )