Nonlinear optimization with parametric constraint
$begingroup$
Is there any way of reformulating the following problem so that it can be solved by means of e.g. Matlab's fmincon
?
$min f(x_1,dots,x_n)$ subject to $c(x_1,dots,x_n,t)le0$, $tin[t_{min},t_{max}]$
Here $f:mathbb{R}^nrightarrowmathbb{R}$ is a convex function. The constraint function $c:mathbb{R}^{n+1} rightarrow mathbb{R}$ is nonlinear and varies smoothly with the parameter $t$. A solution $(x^*_1,dots,x^*_n)$ must satisfy the constraint $cle0$ for all $tin[t_{min},t_{max}]$.
EDIT:
I believe it can be assumed that the constraint function $c$ is convex for each $t$.
EDIT 2:
I want to design a propeller for an axial pump with a prescribed "sweep" $s(r)$, where $r$ is the radial coordinate in its cylindrical coordinate system $(r,theta,z)$. The sweep is defined as $pi/2-phi(r)$, where $phi$ is the angle between the tangent to the leading edge stacking curve $gamma$ and the tangent to the meanline at the leading edge, which i call $u=u(r)$ from now on. The sweep $s$ must satisfy $sge a_0 + frac{r}{r_{max}}a_1$.
If I constrain the shape of the stacking curve $gamma$ to be polynomial in the $r-theta$ and the $r-z$ planes respectively, e.g. $theta(r)=p_1(r)$ and $z(r)=p_2(r)$ with coefficients $x_1,dots,x_k$ for $p_1$ and $x_{k+1},dots,x_n$ for $p_2$, I will have a tangent $v=v(x_1,dots,x_n)$ to $gamma$.
Thus, since $cosphi=frac{(ucdot v)}{|u|cdot|v|}$, we have
$frac{(ucdot v)}{|u|cdot|v|}lecos(pi/2 -a_0 - frac{r}{r_{max}}a_1)$, which, in essence, constitutes $c(x_1,dots,x_n,r)$. Note that $u=u(r)$ and $v=v(x_1,dots,x_n)$.
The objective function $f$ is the arc length of $gamma$, i.e. $f=int sqrt{|v|^2+1}dr$.
Hope this made sense...
optimization matlab nonlinear-optimization parametric numerical-optimization
$endgroup$
add a comment |
$begingroup$
Is there any way of reformulating the following problem so that it can be solved by means of e.g. Matlab's fmincon
?
$min f(x_1,dots,x_n)$ subject to $c(x_1,dots,x_n,t)le0$, $tin[t_{min},t_{max}]$
Here $f:mathbb{R}^nrightarrowmathbb{R}$ is a convex function. The constraint function $c:mathbb{R}^{n+1} rightarrow mathbb{R}$ is nonlinear and varies smoothly with the parameter $t$. A solution $(x^*_1,dots,x^*_n)$ must satisfy the constraint $cle0$ for all $tin[t_{min},t_{max}]$.
EDIT:
I believe it can be assumed that the constraint function $c$ is convex for each $t$.
EDIT 2:
I want to design a propeller for an axial pump with a prescribed "sweep" $s(r)$, where $r$ is the radial coordinate in its cylindrical coordinate system $(r,theta,z)$. The sweep is defined as $pi/2-phi(r)$, where $phi$ is the angle between the tangent to the leading edge stacking curve $gamma$ and the tangent to the meanline at the leading edge, which i call $u=u(r)$ from now on. The sweep $s$ must satisfy $sge a_0 + frac{r}{r_{max}}a_1$.
If I constrain the shape of the stacking curve $gamma$ to be polynomial in the $r-theta$ and the $r-z$ planes respectively, e.g. $theta(r)=p_1(r)$ and $z(r)=p_2(r)$ with coefficients $x_1,dots,x_k$ for $p_1$ and $x_{k+1},dots,x_n$ for $p_2$, I will have a tangent $v=v(x_1,dots,x_n)$ to $gamma$.
Thus, since $cosphi=frac{(ucdot v)}{|u|cdot|v|}$, we have
$frac{(ucdot v)}{|u|cdot|v|}lecos(pi/2 -a_0 - frac{r}{r_{max}}a_1)$, which, in essence, constitutes $c(x_1,dots,x_n,r)$. Note that $u=u(r)$ and $v=v(x_1,dots,x_n)$.
The objective function $f$ is the arc length of $gamma$, i.e. $f=int sqrt{|v|^2+1}dr$.
Hope this made sense...
optimization matlab nonlinear-optimization parametric numerical-optimization
$endgroup$
1
$begingroup$
Such problems can (without restrictions on constrain't function $c$) involve a lot of local minima. I take it you are primarily interested in a global minimum, so any additional information about $c$ would help.
$endgroup$
– hardmath
Jan 22 at 21:51
$begingroup$
This is straightforward to code in Mathematica. Whether or not a solution can be computed depends, however, on the specific nature of $f$ and $c$ (of course).
$endgroup$
– David G. Stork
Jan 22 at 21:57
$begingroup$
could you post the function $c$?
$endgroup$
– LinAlg
Jan 22 at 22:11
$begingroup$
A naive approach would just be to discretize $t$ and solve the problem with each of the convex $c$ constraints at each $t$.
$endgroup$
– nathan.j.mcdougall
Jan 22 at 22:27
1
$begingroup$
What you have is a convex semi-infinite program. See this review for some general approaches for solving such problems.
$endgroup$
– madnessweasley
Jan 22 at 23:22
add a comment |
$begingroup$
Is there any way of reformulating the following problem so that it can be solved by means of e.g. Matlab's fmincon
?
$min f(x_1,dots,x_n)$ subject to $c(x_1,dots,x_n,t)le0$, $tin[t_{min},t_{max}]$
Here $f:mathbb{R}^nrightarrowmathbb{R}$ is a convex function. The constraint function $c:mathbb{R}^{n+1} rightarrow mathbb{R}$ is nonlinear and varies smoothly with the parameter $t$. A solution $(x^*_1,dots,x^*_n)$ must satisfy the constraint $cle0$ for all $tin[t_{min},t_{max}]$.
EDIT:
I believe it can be assumed that the constraint function $c$ is convex for each $t$.
EDIT 2:
I want to design a propeller for an axial pump with a prescribed "sweep" $s(r)$, where $r$ is the radial coordinate in its cylindrical coordinate system $(r,theta,z)$. The sweep is defined as $pi/2-phi(r)$, where $phi$ is the angle between the tangent to the leading edge stacking curve $gamma$ and the tangent to the meanline at the leading edge, which i call $u=u(r)$ from now on. The sweep $s$ must satisfy $sge a_0 + frac{r}{r_{max}}a_1$.
If I constrain the shape of the stacking curve $gamma$ to be polynomial in the $r-theta$ and the $r-z$ planes respectively, e.g. $theta(r)=p_1(r)$ and $z(r)=p_2(r)$ with coefficients $x_1,dots,x_k$ for $p_1$ and $x_{k+1},dots,x_n$ for $p_2$, I will have a tangent $v=v(x_1,dots,x_n)$ to $gamma$.
Thus, since $cosphi=frac{(ucdot v)}{|u|cdot|v|}$, we have
$frac{(ucdot v)}{|u|cdot|v|}lecos(pi/2 -a_0 - frac{r}{r_{max}}a_1)$, which, in essence, constitutes $c(x_1,dots,x_n,r)$. Note that $u=u(r)$ and $v=v(x_1,dots,x_n)$.
The objective function $f$ is the arc length of $gamma$, i.e. $f=int sqrt{|v|^2+1}dr$.
Hope this made sense...
optimization matlab nonlinear-optimization parametric numerical-optimization
$endgroup$
Is there any way of reformulating the following problem so that it can be solved by means of e.g. Matlab's fmincon
?
$min f(x_1,dots,x_n)$ subject to $c(x_1,dots,x_n,t)le0$, $tin[t_{min},t_{max}]$
Here $f:mathbb{R}^nrightarrowmathbb{R}$ is a convex function. The constraint function $c:mathbb{R}^{n+1} rightarrow mathbb{R}$ is nonlinear and varies smoothly with the parameter $t$. A solution $(x^*_1,dots,x^*_n)$ must satisfy the constraint $cle0$ for all $tin[t_{min},t_{max}]$.
EDIT:
I believe it can be assumed that the constraint function $c$ is convex for each $t$.
EDIT 2:
I want to design a propeller for an axial pump with a prescribed "sweep" $s(r)$, where $r$ is the radial coordinate in its cylindrical coordinate system $(r,theta,z)$. The sweep is defined as $pi/2-phi(r)$, where $phi$ is the angle between the tangent to the leading edge stacking curve $gamma$ and the tangent to the meanline at the leading edge, which i call $u=u(r)$ from now on. The sweep $s$ must satisfy $sge a_0 + frac{r}{r_{max}}a_1$.
If I constrain the shape of the stacking curve $gamma$ to be polynomial in the $r-theta$ and the $r-z$ planes respectively, e.g. $theta(r)=p_1(r)$ and $z(r)=p_2(r)$ with coefficients $x_1,dots,x_k$ for $p_1$ and $x_{k+1},dots,x_n$ for $p_2$, I will have a tangent $v=v(x_1,dots,x_n)$ to $gamma$.
Thus, since $cosphi=frac{(ucdot v)}{|u|cdot|v|}$, we have
$frac{(ucdot v)}{|u|cdot|v|}lecos(pi/2 -a_0 - frac{r}{r_{max}}a_1)$, which, in essence, constitutes $c(x_1,dots,x_n,r)$. Note that $u=u(r)$ and $v=v(x_1,dots,x_n)$.
The objective function $f$ is the arc length of $gamma$, i.e. $f=int sqrt{|v|^2+1}dr$.
Hope this made sense...
optimization matlab nonlinear-optimization parametric numerical-optimization
optimization matlab nonlinear-optimization parametric numerical-optimization
edited Jan 22 at 22:46
Bobby
asked Jan 22 at 21:45
BobbyBobby
468
468
1
$begingroup$
Such problems can (without restrictions on constrain't function $c$) involve a lot of local minima. I take it you are primarily interested in a global minimum, so any additional information about $c$ would help.
$endgroup$
– hardmath
Jan 22 at 21:51
$begingroup$
This is straightforward to code in Mathematica. Whether or not a solution can be computed depends, however, on the specific nature of $f$ and $c$ (of course).
$endgroup$
– David G. Stork
Jan 22 at 21:57
$begingroup$
could you post the function $c$?
$endgroup$
– LinAlg
Jan 22 at 22:11
$begingroup$
A naive approach would just be to discretize $t$ and solve the problem with each of the convex $c$ constraints at each $t$.
$endgroup$
– nathan.j.mcdougall
Jan 22 at 22:27
1
$begingroup$
What you have is a convex semi-infinite program. See this review for some general approaches for solving such problems.
$endgroup$
– madnessweasley
Jan 22 at 23:22
add a comment |
1
$begingroup$
Such problems can (without restrictions on constrain't function $c$) involve a lot of local minima. I take it you are primarily interested in a global minimum, so any additional information about $c$ would help.
$endgroup$
– hardmath
Jan 22 at 21:51
$begingroup$
This is straightforward to code in Mathematica. Whether or not a solution can be computed depends, however, on the specific nature of $f$ and $c$ (of course).
$endgroup$
– David G. Stork
Jan 22 at 21:57
$begingroup$
could you post the function $c$?
$endgroup$
– LinAlg
Jan 22 at 22:11
$begingroup$
A naive approach would just be to discretize $t$ and solve the problem with each of the convex $c$ constraints at each $t$.
$endgroup$
– nathan.j.mcdougall
Jan 22 at 22:27
1
$begingroup$
What you have is a convex semi-infinite program. See this review for some general approaches for solving such problems.
$endgroup$
– madnessweasley
Jan 22 at 23:22
1
1
$begingroup$
Such problems can (without restrictions on constrain't function $c$) involve a lot of local minima. I take it you are primarily interested in a global minimum, so any additional information about $c$ would help.
$endgroup$
– hardmath
Jan 22 at 21:51
$begingroup$
Such problems can (without restrictions on constrain't function $c$) involve a lot of local minima. I take it you are primarily interested in a global minimum, so any additional information about $c$ would help.
$endgroup$
– hardmath
Jan 22 at 21:51
$begingroup$
This is straightforward to code in Mathematica. Whether or not a solution can be computed depends, however, on the specific nature of $f$ and $c$ (of course).
$endgroup$
– David G. Stork
Jan 22 at 21:57
$begingroup$
This is straightforward to code in Mathematica. Whether or not a solution can be computed depends, however, on the specific nature of $f$ and $c$ (of course).
$endgroup$
– David G. Stork
Jan 22 at 21:57
$begingroup$
could you post the function $c$?
$endgroup$
– LinAlg
Jan 22 at 22:11
$begingroup$
could you post the function $c$?
$endgroup$
– LinAlg
Jan 22 at 22:11
$begingroup$
A naive approach would just be to discretize $t$ and solve the problem with each of the convex $c$ constraints at each $t$.
$endgroup$
– nathan.j.mcdougall
Jan 22 at 22:27
$begingroup$
A naive approach would just be to discretize $t$ and solve the problem with each of the convex $c$ constraints at each $t$.
$endgroup$
– nathan.j.mcdougall
Jan 22 at 22:27
1
1
$begingroup$
What you have is a convex semi-infinite program. See this review for some general approaches for solving such problems.
$endgroup$
– madnessweasley
Jan 22 at 23:22
$begingroup$
What you have is a convex semi-infinite program. See this review for some general approaches for solving such problems.
$endgroup$
– madnessweasley
Jan 22 at 23:22
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3083758%2fnonlinear-optimization-with-parametric-constraint%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3083758%2fnonlinear-optimization-with-parametric-constraint%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
$begingroup$
Such problems can (without restrictions on constrain't function $c$) involve a lot of local minima. I take it you are primarily interested in a global minimum, so any additional information about $c$ would help.
$endgroup$
– hardmath
Jan 22 at 21:51
$begingroup$
This is straightforward to code in Mathematica. Whether or not a solution can be computed depends, however, on the specific nature of $f$ and $c$ (of course).
$endgroup$
– David G. Stork
Jan 22 at 21:57
$begingroup$
could you post the function $c$?
$endgroup$
– LinAlg
Jan 22 at 22:11
$begingroup$
A naive approach would just be to discretize $t$ and solve the problem with each of the convex $c$ constraints at each $t$.
$endgroup$
– nathan.j.mcdougall
Jan 22 at 22:27
1
$begingroup$
What you have is a convex semi-infinite program. See this review for some general approaches for solving such problems.
$endgroup$
– madnessweasley
Jan 22 at 23:22