FrequencyContinuousSettings
Advanced continuous frequency properties.
Example
app = cf.GetApplication() project = app:NewProject() -- Initialise the frequency to a continuous band frequency = project.SolutionConfigurations[1].Frequency properties = frequency:GetProperties() properties.Start = 100e6 properties.End = 200e6 properties.RangeType = cf.Enums.FrequencyRangeTypeEnum.Continuous frequency:SetProperties(properties) -- Set the maximum number of samples -- As the properties need to be modified in one step, -- a properties table is used properties = frequency:GetProperties() properties.Advanced.Continuous.MaxSamplesEnabled = true properties.Advanced.Continuous.MaxSamples = 10 frequency:SetProperties(properties)
Usage locations (object properties)
The following objects have properties using the FrequencyContinuousSettings object:
Property List
- ConvergenceAccuracy
- Control the speed and accuracy of convergence. (Read/Write FrequencyConvergenceAccuracyTypeEnum)
- MaxSamples
- A limit to the maximum number of solutions. Only valid if MaxSamplesEnabled is true. (Read/Write Expression)
- MaxSamplesEnabled
- Apply a limit to the maximum number of solutions when using continuous frequency. (Read/Write boolean)
- MinIncrement
- A limit to how far the Feko Solver refines the frequency (Hz). Only valid if MinIncrementEnabled is true. (Read/Write Expression)
- MinIncrementEnabled
- Apply a limit to how far the Feko Solver refines the frequency when using continuous frequency. (Read/Write boolean)
- Quantities
- Quantities to include for adaptive frequency sampling. (Read/Write FrequencyContinuousQuantities)
Property Details
- ConvergenceAccuracy
- Control the speed and accuracy of convergence.
- Type
- FrequencyConvergenceAccuracyTypeEnum
- Access
- Read/Write
- MaxSamples
- A limit to the maximum number of solutions. Only valid if MaxSamplesEnabled is true.
- Type
- Expression
- Access
- Read/Write
- MaxSamplesEnabled
- Apply a limit to the maximum number of solutions when using continuous frequency.
- Type
- boolean
- Access
- Read/Write
- MinIncrement
- A limit to how far the Feko Solver refines the frequency (Hz). Only valid if MinIncrementEnabled is true.
- Type
- Expression
- Access
- Read/Write
- MinIncrementEnabled
- Apply a limit to how far the Feko Solver refines the frequency when using continuous frequency.
- Type
- boolean
- Access
- Read/Write
- Quantities
- Quantities to include for adaptive frequency sampling.
- Type
- FrequencyContinuousQuantities
- Access
- Read/Write