Numerical solution for boundary value problem
I need to solve a 4th order non-linear boundary value problem in the following form:
$$
left{begin{matrix}
x'_1 = f_1(t, x_1, x_2, x_3, x_4) & x_1(0) = a_1 \
x'_2 = f_2(t, x_1, x_2, x_3, x_4) & x_2(0) = a_2 \
x'_3 = f_3(t, x_1, x_2, x_3, x_4) & x_3(T) = b_1 \
x'_4 = f_4(t, x_1, x_2, x_3, x_4) & x_4(T) = b_2
end{matrix}right.
$$
If all the conditions are at the same point then I know what to do. But I have no idea how to deal with different points.
I've seen the solutions for BVP with two equations using the shooting method but unfortunately don't see how to generalize it to 4 equations.
So any ideas will be highly appreciated. Thanks.
EDIT. While I'm really interested in some general solution but here's the particular system which I need to solve now:
Here $lambda$ is some small positive integer (not greater than $30$) and $varepsilon$ is between $0.5$ and $0.001$.
differential-equations numerical-methods boundary-value-problem
|
show 2 more comments
I need to solve a 4th order non-linear boundary value problem in the following form:
$$
left{begin{matrix}
x'_1 = f_1(t, x_1, x_2, x_3, x_4) & x_1(0) = a_1 \
x'_2 = f_2(t, x_1, x_2, x_3, x_4) & x_2(0) = a_2 \
x'_3 = f_3(t, x_1, x_2, x_3, x_4) & x_3(T) = b_1 \
x'_4 = f_4(t, x_1, x_2, x_3, x_4) & x_4(T) = b_2
end{matrix}right.
$$
If all the conditions are at the same point then I know what to do. But I have no idea how to deal with different points.
I've seen the solutions for BVP with two equations using the shooting method but unfortunately don't see how to generalize it to 4 equations.
So any ideas will be highly appreciated. Thanks.
EDIT. While I'm really interested in some general solution but here's the particular system which I need to solve now:
Here $lambda$ is some small positive integer (not greater than $30$) and $varepsilon$ is between $0.5$ and $0.001$.
differential-equations numerical-methods boundary-value-problem
The shooting method can work here, too. You basically need to search a two-dimensional grid of values for the $x_1'(0)$ and $x_2'(0)$, and try to get the final values to land on the desired values. These can be pretty computationally intensive algorithms, just to warn you.
– Adrian Keister
Dec 12 '18 at 21:59
Do you need to roll your own or can you use the BVP solver of your preferred numerical software? bvp4c in matlab, solve_bvp in python scipy,...
– LutzL
Dec 12 '18 at 22:13
@LutzL I need something from matlab preferably. Will look now at bvp4c.
– Igor
Dec 12 '18 at 22:15
@LutzL: Not entirely sure. Might depend on the nature of the $f_i$. Definitely, if they're stiff, Igor should use a specialized solver for stiff DE's.
– Adrian Keister
Dec 12 '18 at 22:15
1
@Igor: no problem. It doesn't look stiff to me, but I'm not an expert.
– Adrian Keister
Dec 13 '18 at 0:31
|
show 2 more comments
I need to solve a 4th order non-linear boundary value problem in the following form:
$$
left{begin{matrix}
x'_1 = f_1(t, x_1, x_2, x_3, x_4) & x_1(0) = a_1 \
x'_2 = f_2(t, x_1, x_2, x_3, x_4) & x_2(0) = a_2 \
x'_3 = f_3(t, x_1, x_2, x_3, x_4) & x_3(T) = b_1 \
x'_4 = f_4(t, x_1, x_2, x_3, x_4) & x_4(T) = b_2
end{matrix}right.
$$
If all the conditions are at the same point then I know what to do. But I have no idea how to deal with different points.
I've seen the solutions for BVP with two equations using the shooting method but unfortunately don't see how to generalize it to 4 equations.
So any ideas will be highly appreciated. Thanks.
EDIT. While I'm really interested in some general solution but here's the particular system which I need to solve now:
Here $lambda$ is some small positive integer (not greater than $30$) and $varepsilon$ is between $0.5$ and $0.001$.
differential-equations numerical-methods boundary-value-problem
I need to solve a 4th order non-linear boundary value problem in the following form:
$$
left{begin{matrix}
x'_1 = f_1(t, x_1, x_2, x_3, x_4) & x_1(0) = a_1 \
x'_2 = f_2(t, x_1, x_2, x_3, x_4) & x_2(0) = a_2 \
x'_3 = f_3(t, x_1, x_2, x_3, x_4) & x_3(T) = b_1 \
x'_4 = f_4(t, x_1, x_2, x_3, x_4) & x_4(T) = b_2
end{matrix}right.
$$
If all the conditions are at the same point then I know what to do. But I have no idea how to deal with different points.
I've seen the solutions for BVP with two equations using the shooting method but unfortunately don't see how to generalize it to 4 equations.
So any ideas will be highly appreciated. Thanks.
EDIT. While I'm really interested in some general solution but here's the particular system which I need to solve now:
Here $lambda$ is some small positive integer (not greater than $30$) and $varepsilon$ is between $0.5$ and $0.001$.
differential-equations numerical-methods boundary-value-problem
differential-equations numerical-methods boundary-value-problem
edited Dec 12 '18 at 22:25
Igor
asked Dec 12 '18 at 21:47
IgorIgor
1,103918
1,103918
The shooting method can work here, too. You basically need to search a two-dimensional grid of values for the $x_1'(0)$ and $x_2'(0)$, and try to get the final values to land on the desired values. These can be pretty computationally intensive algorithms, just to warn you.
– Adrian Keister
Dec 12 '18 at 21:59
Do you need to roll your own or can you use the BVP solver of your preferred numerical software? bvp4c in matlab, solve_bvp in python scipy,...
– LutzL
Dec 12 '18 at 22:13
@LutzL I need something from matlab preferably. Will look now at bvp4c.
– Igor
Dec 12 '18 at 22:15
@LutzL: Not entirely sure. Might depend on the nature of the $f_i$. Definitely, if they're stiff, Igor should use a specialized solver for stiff DE's.
– Adrian Keister
Dec 12 '18 at 22:15
1
@Igor: no problem. It doesn't look stiff to me, but I'm not an expert.
– Adrian Keister
Dec 13 '18 at 0:31
|
show 2 more comments
The shooting method can work here, too. You basically need to search a two-dimensional grid of values for the $x_1'(0)$ and $x_2'(0)$, and try to get the final values to land on the desired values. These can be pretty computationally intensive algorithms, just to warn you.
– Adrian Keister
Dec 12 '18 at 21:59
Do you need to roll your own or can you use the BVP solver of your preferred numerical software? bvp4c in matlab, solve_bvp in python scipy,...
– LutzL
Dec 12 '18 at 22:13
@LutzL I need something from matlab preferably. Will look now at bvp4c.
– Igor
Dec 12 '18 at 22:15
@LutzL: Not entirely sure. Might depend on the nature of the $f_i$. Definitely, if they're stiff, Igor should use a specialized solver for stiff DE's.
– Adrian Keister
Dec 12 '18 at 22:15
1
@Igor: no problem. It doesn't look stiff to me, but I'm not an expert.
– Adrian Keister
Dec 13 '18 at 0:31
The shooting method can work here, too. You basically need to search a two-dimensional grid of values for the $x_1'(0)$ and $x_2'(0)$, and try to get the final values to land on the desired values. These can be pretty computationally intensive algorithms, just to warn you.
– Adrian Keister
Dec 12 '18 at 21:59
The shooting method can work here, too. You basically need to search a two-dimensional grid of values for the $x_1'(0)$ and $x_2'(0)$, and try to get the final values to land on the desired values. These can be pretty computationally intensive algorithms, just to warn you.
– Adrian Keister
Dec 12 '18 at 21:59
Do you need to roll your own or can you use the BVP solver of your preferred numerical software? bvp4c in matlab, solve_bvp in python scipy,...
– LutzL
Dec 12 '18 at 22:13
Do you need to roll your own or can you use the BVP solver of your preferred numerical software? bvp4c in matlab, solve_bvp in python scipy,...
– LutzL
Dec 12 '18 at 22:13
@LutzL I need something from matlab preferably. Will look now at bvp4c.
– Igor
Dec 12 '18 at 22:15
@LutzL I need something from matlab preferably. Will look now at bvp4c.
– Igor
Dec 12 '18 at 22:15
@LutzL: Not entirely sure. Might depend on the nature of the $f_i$. Definitely, if they're stiff, Igor should use a specialized solver for stiff DE's.
– Adrian Keister
Dec 12 '18 at 22:15
@LutzL: Not entirely sure. Might depend on the nature of the $f_i$. Definitely, if they're stiff, Igor should use a specialized solver for stiff DE's.
– Adrian Keister
Dec 12 '18 at 22:15
1
1
@Igor: no problem. It doesn't look stiff to me, but I'm not an expert.
– Adrian Keister
Dec 13 '18 at 0:31
@Igor: no problem. It doesn't look stiff to me, but I'm not an expert.
– Adrian Keister
Dec 13 '18 at 0:31
|
show 2 more comments
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%2f3037261%2fnumerical-solution-for-boundary-value-problem%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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
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%2f3037261%2fnumerical-solution-for-boundary-value-problem%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
The shooting method can work here, too. You basically need to search a two-dimensional grid of values for the $x_1'(0)$ and $x_2'(0)$, and try to get the final values to land on the desired values. These can be pretty computationally intensive algorithms, just to warn you.
– Adrian Keister
Dec 12 '18 at 21:59
Do you need to roll your own or can you use the BVP solver of your preferred numerical software? bvp4c in matlab, solve_bvp in python scipy,...
– LutzL
Dec 12 '18 at 22:13
@LutzL I need something from matlab preferably. Will look now at bvp4c.
– Igor
Dec 12 '18 at 22:15
@LutzL: Not entirely sure. Might depend on the nature of the $f_i$. Definitely, if they're stiff, Igor should use a specialized solver for stiff DE's.
– Adrian Keister
Dec 12 '18 at 22:15
1
@Igor: no problem. It doesn't look stiff to me, but I'm not an expert.
– Adrian Keister
Dec 13 '18 at 0:31