PlanarSubstrate

The planar substrate properties.

Example

application = cf.Application.GetInstance()
project = application:NewProject()

dielectric = project.Definitions.Media.Dielectric:AddDielectric()

project.Contents.SolutionSettings.GroundPlane.DefinitionMethod =
    cf.Enums.GroundPlaneDefinitionMethodEnum.MultilayerSubstrate

    -- Modify the medium of the second ground plane layer

groundPlaneLayer = project.Contents.SolutionSettings.GroundPlane.Layers[1]
groundPlaneLayer.Medium = dielectric

Inheritance

The PlanarSubstrate object is derived from the CompositeValue object.

Usage locations

The PlanarSubstrate object can be accessed from the following locations:

Property List

GroundBottom
The planar substrate ground bottom type specified by the GroundBottomTypeEnum, e.g. None or PEC. (Read/Write GroundBottomTypeEnum)
Medium
The planar substrate medium. (Read/Write Dielectric)
Thickness
The planar substrate thickness. (Read/Write ParametricExpression)

Property Details

GroundBottom
The planar substrate ground bottom type specified by the GroundBottomTypeEnum, e.g. None or PEC.
Type
GroundBottomTypeEnum
Access
Read/Write
Medium
The planar substrate medium.
Type
Dielectric
Access
Read/Write
Thickness
The planar substrate thickness.
Type
ParametricExpression
Access
Read/Write