yade-users team mailing list archive
-
yade-users team
-
Mailing list archive
-
Message #27092
Re: [Question #700587]: My fluid-solid coupling script run very slowly
Question #700587 on Yade changed:
https://answers.launchpad.net/yade/+question/700587
Status: Open => Needs information
Jan Stránský requested more information:
put the timing code in your script:
###
O.timingEnabled=True # before any timing
yade.timing.reset() # before 1st stage
# the running you want to measure
while 1:
...
O.run(1000,1)
yade.timing.stats()
yade.timing.reset() # before 2nd stage
flow.dead=0
...
O.run(10000,True) # instead of just O.run()
yade.timing.stats()
###
Cheers
Jan
--
You received this question notification because your team yade-users is
an answer contact for Yade.