peterdsharpe / AeroSandbox

Aircraft design optimization made fast through modern automatic differentiation. Composable analysis tools for aerodynamics, propulsion, structures, trajectory design, and much more.
https://peterdsharpe.github.io/AeroSandbox/
MIT License
690 stars 111 forks source link

VLM3 calculation prints out VLM2 #2

Closed chiefenne closed 4 years ago

chiefenne commented 4 years ago

Describe the bug Seems to be a copy/paste typo in aerodynamics.py: class vlm3(AeroProblem) and there in the function def run(self, verbose=True)::

It prints: if self.verbose: print("Running VLM2 calculation...") and if self.verbose: print("VLM2 calculation complete!")

Expected behavior if self.verbose: print("Running VLM3 calculation...") and if self.verbose: print("VLM3 calculation complete!")

peterdsharpe commented 4 years ago

Ah! Another good catch! Fixed in the latest commit - thank you so much! :D