Parent Directory
|
Revision Log
|
Patch
revision 828 by gross, Mon May 15 02:01:18 2006 UTC | revision 829 by gross, Thu Aug 31 01:31:15 2006 UTC | |
---|---|---|
# | Line 885 class Simulation(Model): | Line 885 class Simulation(Model): |
885 | while not end_of_step: | while not end_of_step: |
886 | end_of_step=True | end_of_step=True |
887 | if not dt_new>0: | if not dt_new>0: |
888 | raise NonPositiveStepSizeError("non-positive step size in step %d",self.n+1) | raise NonPositiveStepSizeError("non-positive step size in step %d"%(self.n+1)) |
889 | try: | try: |
890 | self.doStepPreprocessing(dt_new) | self.doStepPreprocessing(dt_new) |
891 | self.doStep(dt_new) | self.doStep(dt_new) |
|
ViewVC Help | |
Powered by ViewVC 1.1.26 |