SParameterConfiguration

An S-parameter configuration.

Example

app = cf.GetApplication()
project = app:NewProject()

    -- Add a line and attach a wire port to it
    
line = project.Geometry:AddLine(cf.Point(0,0,0), cf.Point(0,0,1))
wirePort = project.Ports:AddWirePort(line.Wires[1])

    -- Add an S-parameter configuration
    
SParameterConfiguration = project.SolutionConfigurations:AddMultiportSParameter({wirePort.Terminal})

Inheritance

The SParameterConfiguration object is derived from the SolutionConfiguration object.

Property List

Frequency
The configuration solution frequency. (Read only Frequency)
Included
Specifies whether the solution configuration must be included or excluded. (Read/Write boolean)
Label
The object label. (Read/Write string)
SParameter
The configuration solution S-parameter. (Read only SParameter)
Type
The object type string. (Read only string)

Collection List

Loads
The collection of loads in the configuration. (LoadCollection of SolutionEntity.)
Networks
The collection of non-radiating networks in the configuration. (NetworkCollection of SolutionEntity.)

Method List

Delete ()
Delete the solution configuration.
Duplicate ()
Duplicates the solution configuration. (Returns a SolutionConfiguration object.)
MoveDown ()
Move the solution configuration down. (Returns a boolean object.)
MoveUp ()
Move the solution configuration up. (Returns a boolean object.)

Property Details

Frequency
The configuration solution frequency.
Type
Frequency
Access
Read only
Included
Specifies whether the solution configuration must be included or excluded.
Type
boolean
Access
Read/Write
Label
The object label.
Type
string
Access
Read/Write
SParameter
The configuration solution S-parameter.
Type
SParameter
Access
Read only
Type
The object type string.
Type
string
Access
Read only

Collection Details

Loads
The collection of loads in the configuration.
Type
LoadCollection
Networks
The collection of non-radiating networks in the configuration.
Type
NetworkCollection

Method Details

Delete ()
Delete the solution configuration.
Duplicate ()
Duplicates the solution configuration.
Return
SolutionConfiguration
The duplicated solution configuration.
MoveDown ()
Move the solution configuration down.
Return
boolean
True if the move was successful.
MoveUp ()
Move the solution configuration up.
Return
boolean
True if the move was successful.