Interface ISimulationPreparations
Assembly: SpiceSharpParser.dll
Syntax
public interface ISimulationPreparations
Methods
|
Improve this Doc
View Source
ExecuteActionAfterSetup(Action<Simulation>)
Declaration
void ExecuteActionAfterSetup(Action<Simulation> action)
Parameters
Type |
Name |
Description |
System.Action<SpiceSharp.Simulations.Simulation> |
action |
|
|
Improve this Doc
View Source
ExecuteActionBeforeSetup(Action<Simulation>)
Declaration
void ExecuteActionBeforeSetup(Action<Simulation> action)
Parameters
Type |
Name |
Description |
System.Action<SpiceSharp.Simulations.Simulation> |
action |
|
|
Improve this Doc
View Source
ExecuteTemperatureBehaviorBeforeLoad(IEntity)
Declaration
void ExecuteTemperatureBehaviorBeforeLoad(IEntity object)
Parameters
Type |
Name |
Description |
SpiceSharp.Entities.IEntity |
object |
|
|
Improve this Doc
View Source
Prepare(Simulation)
Declaration
void Prepare(Simulation simulation)
Parameters
Type |
Name |
Description |
SpiceSharp.Simulations.Simulation |
simulation |
|
|
Improve this Doc
View Source
SetICVoltage(String, String)
Declaration
void SetICVoltage(string nodeId, string expression)
Parameters
Type |
Name |
Description |
System.String |
nodeId |
|
System.String |
expression |
|
|
Improve this Doc
View Source
SetNodeSetVoltage(String, String)
Declaration
void SetNodeSetVoltage(string nodeId, string expression)
Parameters
Type |
Name |
Description |
System.String |
nodeId |
|
System.String |
expression |
|
|
Improve this Doc
View Source
SetParameter(IEntity, Simulation, String, Double, Boolean, Boolean)
Declaration
void SetParameter(IEntity object, Simulation simulation, string paramName, double value, bool beforeTemperature, bool onload)
Parameters
Type |
Name |
Description |
SpiceSharp.Entities.IEntity |
object |
|
SpiceSharp.Simulations.Simulation |
simulation |
|
System.String |
paramName |
|
System.Double |
value |
|
System.Boolean |
beforeTemperature |
|
System.Boolean |
onload |
|
|
Improve this Doc
View Source
SetParameter(IEntity, String, Double, Boolean, Boolean)
Declaration
void SetParameter(IEntity object, string paramName, double value, bool beforeTemperature, bool onload)
Parameters
Type |
Name |
Description |
SpiceSharp.Entities.IEntity |
object |
|
System.String |
paramName |
|
System.Double |
value |
|
System.Boolean |
beforeTemperature |
|
System.Boolean |
onload |
|
|
Improve this Doc
View Source
SetParameter(IEntity, String, String, Boolean, Boolean)
Declaration
void SetParameter(IEntity object, string paramName, string expression, bool beforeTemperature, bool onload)
Parameters
Type |
Name |
Description |
SpiceSharp.Entities.IEntity |
object |
|
System.String |
paramName |
|
System.String |
expression |
|
System.Boolean |
beforeTemperature |
|
System.Boolean |
onload |
|