Class Parameters
The parameters for a Sampler.
Implements
Inherited Members
Namespace: SpiceSharp.Components.SamplerBehaviors
Assembly: SpiceSharp.dll
Syntax
public class Parameters : ParameterSet<Parameters>, ICloneable<Parameters>, IImportParameterSet<IEnumerable<double>>, IExportPropertySet<IEnumerable<double>>, IImportParameterSet<double>, IExportPropertySet<double>, IParameterSet
Properties
MinDelta
Gets or sets the minimum timestep that needs to be respected by the sampler.
Declaration
[ParameterName("deltamin")]
[ParameterInfo("The minimum timestep that needs to be respected by the sampler")]
[GreaterThan(0)]
public double MinDelta { get; set; }
Property Value
Type | Description |
---|---|
double | The minimum timestep. |
Points
Gets or sets the time-points that need to be hit.
Declaration
[ParameterName("points")]
[ParameterInfo("The points that need to be hit")]
public IEnumerable<double> Points { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<double> | The time-points to be hit. |
Methods
Export(object, EventArgs)
Calls the ExportSimulationData event.
Declaration
public void Export(object sender, EventArgs args)
Parameters
Type | Name | Description |
---|---|---|
object | sender | The sender. |
EventArgs | args | The argument. |
Events
ExportSimulationData
Occurs when data can be exported.
Declaration
public event EventHandler<EventArgs> ExportSimulationData
Event Type
Type | Description |
---|---|
EventHandler<EventArgs> |