Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
model:reverse-engineering_with_goalseek [2023/03/12 23:14]
optrix
model:reverse-engineering_with_goalseek [2025/02/18 03:29] (current)
optrix
Line 42: Line 42:
  
 <code> <code>
-import ardimodel+import ardimodel as mdl
  
-host = ardimodel.ModelHost()+host = mdl.ModelHost(5225)
  
 +@mdl.Part("Tank Model")
 def TankModel(mod): def TankModel(mod):
     Outflow = mod.AddInput("Outgoing Flow",10)     Outflow = mod.AddInput("Outgoing Flow",10)
Line 56: Line 57:
     RemainingTime = mod.AddOutput("Time-To-Empty", lambda: 86300 if Outflow.num() == 0 else Volume.num() / Outflow.num(), [Outflow,Volume])     RemainingTime = mod.AddOutput("Time-To-Empty", lambda: 86300 if Outflow.num() == 0 else Volume.num() / Outflow.num(), [Outflow,Volume])
     mod.AddOutput("Min Level", lambda: mod.GoalSeek(LevelPerc,RemainingTime,MinTiming.num()),[LevelPerc,RemainingTime,MinTiming])     mod.AddOutput("Min Level", lambda: mod.GoalSeek(LevelPerc,RemainingTime,MinTiming.num()),[LevelPerc,RemainingTime,MinTiming])
- 
-# Add Models Here 
-host.Add(ardimodel.Create("Tank",TankModel)) 
  
 host.ardiurl = "localhost" host.ardiurl = "localhost"