Commit 5df0f3de authored by Georgios Dagkakis's avatar Georgios Dagkakis

conveyer object updated to a much better status. Still things to fix, and a lot of cleanup

parent 48fc2265
This diff is collapsed.
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
"general": { "general": {
"_class": "Dream.Configuration", "_class": "Dream.Configuration",
"numberOfReplications": "1", "numberOfReplications": "1",
"maxSimTime": "5", "maxSimTime": "20",
"trace": "Yes", "trace": "Yes",
"confidenceLevel": "0.95" "confidenceLevel": "0.95"
}, },
......
...@@ -312,6 +312,12 @@ def main(): ...@@ -312,6 +312,12 @@ def main():
G.ObjList[j].outputResultsXL(G.maxSimTime) G.ObjList[j].outputResultsXL(G.maxSimTime)
G.outputFile.save("output.xls") G.outputFile.save("output.xls")
print "execution time="+str(time.time()-start) print "execution time="+str(time.time()-start)
#print len(G.ConveyerList[0].Res.activeQ)
'''
for i in range(len(G.ConveyerList[0].Res.activeQ)):
print G.ConveyerList[0].Res.activeQ[i].name
print (G.ConveyerList[0].position)
'''
if __name__ == '__main__': main() if __name__ == '__main__': main()
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment