|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Public Interface IDynamicsManager |
|
|
|
|
|
Property Description As String |
|
|
|
|
|
Property ScheduleList As Dictionary(Of String, IDynamicsSchedule) |
|
|
|
|
|
Property CauseAndEffectMatrixList As Dictionary(Of String, IDynamicsCauseAndEffectMatrix) |
|
|
|
|
|
Property EventSetList As Dictionary(Of String, IDynamicsEventSet) |
|
|
|
|
|
Property CurrentSchedule As String |
|
|
|
|
|
Property IntegratorList As Dictionary(Of String, IDynamicsIntegrator) |
|
|
|
|
|
Function GetChartModel(fs As IFlowsheet, IntegratorID As String) As Object |
|
|
|
|
|
Property ToggleDynamicMode() As Action(Of Boolean) |
|
|
|
|
|
Property RunSchedule() As Func(Of String, Task) |
|
|
|
|
|
Function GetSchedule(name As String) As IDynamicsSchedule |
|
|
|
|
|
Function GetIntegrator(name As String) As IDynamicsIntegrator |
|
|
|
|
|
Function GetEventSet(name As String) As IDynamicsEventSet |
|
|
|
|
|
Function GetCauseAndEffectMatrix(name As String) As IDynamicsCauseAndEffectMatrix |
|
|
|
|
|
Function GetPropertyValuesFromEvents(fs As IFlowsheet, currenttime As DateTime, history As Dictionary(Of DateTime, XDocument), eventset As IDynamicsEventSet) As List(Of Tuple(Of String, String, Double)) |
|
|
|
|
|
End Interface |
|
|
|