-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bug in disc brake design problem #9
Comments
Thank you for pointing out the bug and typo. Yes, I made a miscalculation. The range of |
Sir, RE24 CODE IN MATLAB VERSION, sigmaB = 4500 / (x1 * x2); maybe BOTH X1 and X2 are ZERO, SO THERE IS NAN IN YOUR OBJECTIVES. |
Thanks for your comment. But, it will only occur if x1 and x2 violate the bound constraints [0.5, 4] and [4, 50], respectively. |
Thanks you, sir:
Then if i remember it rightly. the bug probably happened in RE22.m, code: g(1) = (x1 * x3) - 7.735 * ((x1 * x1) / x2) - 180.0; main.m specifies bounds of x2 within [0,20],so i set the x2 within [0.000001,20], the bug is OK.
Good lucky.
Leenstead
***@***.***
…------------------ 原始邮件 ------------------
发件人: "ryojitanabe/reproblems" ***@***.***>;
发送时间: 2024年10月22日(星期二) 中午12:08
***@***.***>;
***@***.******@***.***>;
主题: Re: [ryojitanabe/reproblems] bug in disc brake design problem (Issue #9)
Thanks for your comment. But, it will only occur if x1 and x2 violate the bound constraints [0.5, 4] and [4, 50], respectively.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you commented.Message ID: ***@***.***>
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In the supplementary file and the source codes, the constraint on x4 is miscalculated as 11 <= x4 <= 20, but it should be 2 <= x4 <= 11.
The text was updated successfully, but these errors were encountered: