I have a set of five second order odes and the 10 bcs which are also coupled. Can any one suggest a reading material or an example which solves set of two ODEs with mixed boundary conditions using MATLAB or any other software like mathematica?
Your question is too vague. If you wrote a system of equations it would be easier to help.
In MATLAB firstly you have to change the second order equation to set of first order equations and the solve with one of the ode solvers.
http://www.mathworks.com/help/matlab/math/ordinary-differential-equations.html#brfg9jq-1
There is also function ode15i, which solve fully implicit differential equations:
http://www.mathworks.com/help/matlab/ref/ode15i.html
Here is an example of use:
http://www.mathworks.com/help/matlab/math/ordinary-differential-equations.html#brfhad3-1
If you want to solve boundary value problem this article could be helpful:
http://www.mathworks.com/help/curvefit/examples/solving-a-nonlinear-ode-with-a-boundary-layer-by-collocation.html
{X, Y} = {x, y} /. DSolve[{
x'[t] == -c1*x[t]/c2 + c1*(y[t] - x[t])/c2,
y'[t] == -c1*(y[t] - x[t])/c2, x[0] == 0, y[0] == 1},
{x, y}, t]
Manipulate[Plot[Evaluate[{X[t], Y[t]} /. {c1 -> a, c2 -> b}], {t, 0, 10},
PlotRange -> {0, 1}, PlotStyle -> Thick, Filling -> {1 -> {2}}],
{{a, 1.3, "c1"}, 1, 3, Appearance -> "Labeled"},
{{b, 2.5, "c2"}, 1, 3, Appearance -> "Labeled"}]
No, @Julia.
Which solution reveals the microstructure and features of nickel-based alloys?
02 March 2021 2,221 3 View
Which tools can be used to generate machine codes for additive manufacturing?
02 March 2021 7,220 2 View
I am searching for a good place for the Post Doc,
02 March 2021 4,053 3 View
Working on chandrayaan-2 DFSAR data, there are three datasets available: 1) Slant range image data product: The slant range complex image file. Each pixel is represented by two 4-byte floating...
02 March 2021 8,481 3 View
Hello, The Cranet website does not provide any lead to the data obtained from their multinational survey on HRM practices. Any help on accessing the data would be most appreciated. Thank...
01 March 2021 9,536 3 View
Is there any book chapter/book, webpage or research article available to understand genome-wide gene identification?
28 February 2021 8,095 1 View
For an overfit data set the cross validation error will be much bigger than the training error. Is it true or false?
23 February 2021 3,616 2 View
In my opinion, the RG site is useful in solving scientific problems and shows the researcher's ability. Besides, the separation of the H-index from the self-citations and the overall index is an...
22 February 2021 3,894 6 View
I performed a Proton NMR of graphene powder prepared by electrochemical exfoliation technique. It shows some peaks. But I can't understand it.
21 February 2021 8,947 3 View
To sort the scanned document image I have to determine the class of document. But no of classes of image will keep on adding even after training. So at time of inference first I will detect unseen...
16 February 2021 4,501 3 View
Dear Researchers I am trying to perform a PIL simulation using STM32F4 Discovery board and comunication serial USB TO TTL. During simulation I receive the following timeout error: An error...
01 March 2021 2,327 1 View
The following code (see 1st 2 images attached) is used to produce PID controller values that are designed to control the system (G). The code finds the PID controller values (noted as k) by using...
28 February 2021 6,560 14 View
I have input and output data set for "ANFIS modeling in MATLAB", and I am getting some negative predicted values of output in testing. However, the predicted values of output in training are...
28 February 2021 3,459 3 View
I have two groups of brain samples, control and treated for example. It was total RNA nova seq sequencing. I tried all the available pipeline like: star+rsem+deseq2, Hista+stringtie+cuffdiff,...
27 February 2021 356 6 View
I am required to learn about Flyback converters and I got stuck not knowing to full design of the power supply flyback converter Based USB Charger Model using Simulink, especially the design model...
25 February 2021 5,435 2 View
I do need the Matlab code of Fractal Discrete Cosine Transform (FDCT). Can anyone who has already implement this code, help me with the implementation of this transform?
24 February 2021 5,602 2 View
Hi Hope you are well. Can you please share your code for D2D implementation in Matlab. I want to implement D2D in Matlab based Vienna simulator and struggling to deploy D2D. Thanks
24 February 2021 9,378 3 View
Dear colleagues If anyone has a model of multi-effect distillation in EES or MATLAB software, please send it to me.
24 February 2021 7,282 1 View
Hi, I am a third year chemistry undergrad doing my group project in which I need to predict the HPLC retention time of 20 aromatic molecules. to do this we require the chemical properties of these...
24 February 2021 1,384 3 View
I use Matlab 2014b to capture some images with a PointGrey camera connected with USB3 port. I initialize the camera in a function which basically execute these followed lines : vid =...
22 February 2021 6,386 1 View