Skip to content

Commit

Permalink
Merge pull request #245 from jeffreydaye/master
Browse files Browse the repository at this point in the history
Minor Defect Overwriting User Input
  • Loading branch information
prabhuramachandran committed Oct 24, 2019
2 parents 879a303 + 32d7ea8 commit 15a30b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pysph/examples/flow_past_cylinder_2d.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ def add_user_options(self, group):

def consume_user_options(self):
self.dc = dc = self.options.dc
self.Lt = 15. * dc
self.Wt = 7.5 * dc
self.Lt = self.options.Lt/2 * dc
self.Wt = self.options.Wt/2 * dc
self.io_method = self.options.io_method
nx = self.options.nx
re = self.options.re
Expand Down

0 comments on commit 15a30b7

Please sign in to comment.