is_dielectric#
- Material.is_dielectric(threshold: float = 100000) bool#
Check if the material is dielectric.
- Parameters:
- threshold
float,optional Threshold to define if a material is dielectric. The default is
100000. If the conductivity is equal to or less than the threshold, the material is considered dielectric.
- threshold
- Returns:
- bool
Truewhen the material is dielectric,Falseotherwise.
Examples
>>> from ansys.aedt.core.modules.material import Material >>> obj = Material() >>> obj.is_dielectric(threshold=1.0)