Interface INoiseSource
Describes a noise source.
Namespace: SpiceSharp.Simulations
Assembly: SpiceSharp.dll
Syntax
public interface INoiseSource
Properties
Name
Gets the name of the noise source.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
string | The name of the noise source. |
OutputNoiseDensity
Gets the last calculated noise density.
Declaration
double OutputNoiseDensity { get; }
Property Value
Type | Description |
---|---|
double | The last calculated noise density. |
TotalInputNoise
Gets the total integrated input noise.
Declaration
double TotalInputNoise { get; }
Property Value
Type | Description |
---|---|
double | The total integrated input noise. |
TotalOutputNoise
Gets the total integrated output noise.
Declaration
double TotalOutputNoise { get; }
Property Value
Type | Description |
---|---|
double | The total integrated output noise. |
Methods
Initialize()
Initializes the noise source. Resets all noise contributions to 0.
Declaration
void Initialize()