InitMesh#

class pyedb.workflows.utilities.hfss_log_parser.InitMesh#

Statistics reported during the initial tetrahedral meshing phase.

Attributes:
tetrahedraint

Number of tetrahedra created.

memory_mbfloat

Peak memory consumption in megabytes.

real_time_secint

Wall clock time in seconds.

cpu_time_secint

CPU time in seconds.

Examples

>>> mesh = InitMesh(tetrahedra=5000, memory_mb=128.5, real_time_sec=45, cpu_time_sec=42)
>>> mesh.tetrahedra
5000
>>> mesh.memory_mb
128.5

Overview#

Import detail#

from pyedb.workflows.utilities.hfss_log_parser import InitMesh

Attribute detail#

InitMesh.tetrahedra: int#
InitMesh.memory_mb: float#
InitMesh.real_time_sec: int#
InitMesh.cpu_time_sec: int#