Commit 968ebb09 authored by Georgios Dagkakis's avatar Georgios Dagkakis Committed by Sebastien Robin

documentation examples chenged so that postprocessing and otputresultsxls are...

documentation examples chenged so that postprocessing and otputresultsxls are not called with maxsimtime as argument
parent bb621d9c
No preview for this file type
......@@ -40,7 +40,7 @@ simulate(until=G.maxSimTime) #run the simulation
#carry on the post processing operations for every object in the topology
for object in G.ObjList:
object.postProcessing(G.maxSimTime)
object.postProcessing()
#print the results
print "the system produced", E.numOfExits, "frames"
......
......@@ -38,7 +38,7 @@ simulate(until=G.maxSimTime) #run the simulation
#carry on the post processing operations for every object in the topology
for object in G.ObjList:
object.postProcessing(G.maxSimTime)
object.postProcessing()
#print the results
print "the system produced", E.numOfExits, "parts"
......
......@@ -56,7 +56,7 @@ simulate(until=G.maxSimTime) #run the simulation
#carry on the post processing operations for every object in the topology
for object in G.ObjList:
object.postProcessing(G.maxSimTime)
object.postProcessing()
#print the results
print "the system produced", E.numOfExits, "parts"
......
......@@ -73,7 +73,7 @@ simulate(until=G.maxSimTime) #run the simulation
#carry on the post processing operations for every object in the topology
for object in G.ObjList:
object.postProcessing(G.maxSimTime)
object.postProcessing()
#print the results
print "the system produced", E.numOfExits, "parts"
......
......@@ -42,8 +42,8 @@ simulate(until=G.maxSimTime) #run the simulation
#carry on the post processing operations for every object in the topology
for object in G.ObjList:
object.postProcessing(G.maxSimTime)
R.postProcessing(G.maxSimTime)
object.postProcessing()
R.postProcessing()
#print the results
print "the system produced", E.numOfExits, "parts"
......
......@@ -46,13 +46,13 @@ for i in range(G.numberOfReplications):
#carry on the post processing operations for every object in the topology
for object in G.ObjList:
object.postProcessing(G.maxSimTime)
R.postProcessing(G.maxSimTime)
object.postProcessing()
R.postProcessing()
#output data to excel for every object
for object in G.ObjList:
object.outputResultsXL(G.maxSimTime)
R.outputResultsXL(G.maxSimTime)
object.outputResultsXL()
R.outputResultsXL()
G.outputFile.save("output.xls")
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