ProjectInfo#
- class pyedb.workflows.utilities.hfss_log_parser.ProjectInfo#
Basic meta-data extracted from the header of an HFSS batch log.
- Attributes:
- name
str Project name (without extension).
- file
pathlib.Path Full path to the project file.
- design
str,optional Active design name. The default is
"".- user
str,optional OS user that launched the solve. The default is
"".- cmd_line
str,optional Exact command line used for the run. The default is
"".
- name
Examples
>>> from pathlib import Path >>> info = ProjectInfo( ... name="Patch_Antenna", file=Path("/project/antenna.aedt"), design="HFSSDesign1", user="engineer" ... ) >>> info.name 'Patch_Antenna'
Overview#
Import detail#
from pyedb.workflows.utilities.hfss_log_parser import ProjectInfo
Attribute detail#
- ProjectInfo.file: pathlib.Path#