Skip to content

Commit

Permalink
Bump 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
relf committed Aug 22, 2022
1 parent 3db7384 commit f4c5823
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,4 @@ SMT has been developed thanks to contributions from:
* Ruben Conde
* Steven Berguin
* Vincent Drouet
* Zhou Tianxun
2 changes: 1 addition & 1 deletion smt/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.2.0"
__version__ = "1.3.0"
10 changes: 5 additions & 5 deletions smt/problems/wing_weight.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ def wraps(x):
def func(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9):
return (
0.036
* x0 ** 0.758
* x1 ** 0.0035
* (x2 / np.cos(deg2rad(x3)) ** 2)**(0.6)
* x4 ** 0.006
* x5 ** 0.04
* x0**0.758
* x1**0.0035
* (x2 / np.cos(deg2rad(x3)) ** 2) ** (0.6)
* x4**0.006
* x5**0.04
* (100 * x6 / np.cos(deg2rad(x3))) ** (-0.3)
* (x7 * x8) ** 0.49
+ x0 * x9
Expand Down

0 comments on commit f4c5823

Please sign in to comment.