create_report_from_configuration#

PostProcessor.create_report_from_configuration(input_file=None, input_dict=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.

input_dictdict, optional

Dictionary containing report settings.

solution_namesetup name to use.
Returns:
pyaedt.modules.report_templates.Standard

Report object if succeeded.

Examples

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