Class Breakpoints
A collection of breakpoints used for time-domain analysis.
Inherited Members
Namespace: SpiceSharp.Simulations.IntegrationMethods
Assembly: SpiceSharp.dll
Syntax
public class Breakpoints
Properties
Delta
Gets the timestep set by the first two breakpoints.
Declaration
public double Delta { get; }
Property Value
Type | Description |
---|---|
double |
First
Gets the first breakpoint.
Declaration
public double First { get; }
Property Value
Type | Description |
---|---|
double |
MinBreak
Gets the minimum space between two breakpoints.
Declaration
public double MinBreak { get; set; }
Property Value
Type | Description |
---|---|
double |
Methods
Clear()
Clears all breakpoints.
Declaration
public void Clear()
ClearBreakpoint()
Clears a breakpoint.
Declaration
public void ClearBreakpoint()
SetBreakpoint(double)
Adds a breakpoint to the list.
Declaration
public void SetBreakpoint(double timePoint)
Parameters
Type | Name | Description |
---|---|---|
double | timePoint | The time point. |