create_report_from_configuration#

PostProcessor.create_report_from_configuration(input_file=None, report_settings=None, solution_name=None)[source]#

Create a report based on a JSON file, TOML file, or dictionary of properties.

Parameters:
input_filestr, optional

Path to the JSON or TOML file containing report settings.

report_settingsdict, optional

Dictionary containing report settings.

solution_namestr, optional

Setup name to use.

Returns:
pyaedt.modules.report_templates.Standard

Report object if succeeded.

Examples

>>> from pyaedt import Hfss
>>> hfss = Hfss()
>>> hfss.post.create_report_from_configuration(r'C:\temp\my_report.json',
>>>                                            solution_name="Setup1 : LastAdpative")