my equations are:
F" = F^2 + HF' - G^2
G" = 2FG - HG'
H' = -2F
BC: F(0)=0 F(inf)=0 G(0)=1 G(inf)=0 H(0)=0
Thanks
thanks
it solved with following code :
dydx=@(x,y)[y(2) ; y(1)^2+y(5)*y(2)-y(3)^2 ; y(4) ; 2*y(1)*y(3)+y(5)*y(4) ; -2*y(1) ];
BC=@(ya,yb)[ya(1) ; yb(1) ; ya(3)-1 ; yb(3) ; ya(5)];
yint=@(x)[0.4 ; 0 ; 0.2 ; 0 ; .6 ];
solint=bvpinit(linspace(0,20,2000),yint);
S=bvp4c(dydx,BC,solint);
for i=1:4
S=bvp4c(dydx,BC,S);
end
In cases where an analytical solution is not obtainable, a very simple technique is the finite-difference method. See Lecture 9 here:
http://emlab.utep.edu/ee5390cem.htm.
You missed a negative sign defining y(4). It should be 2*y(1)*y(3)-y(5)*y(4).
Is it possible to conduct a molecular dynamics simulation to see the effects of a specific carbohydrate on the structure of lipids (e.g., micelle structure)? I am a beginner in this field and plan...
03 August 2024 3,371 3 View
I am using a windows system, what software I should use for hydration shell analysis with molecular dynamics?
02 August 2024 3,143 4 View
Can we patent a process flow diagram developed using a process simulator but no actual cases is carried out? For example consider a process for certain product manufacture where a new process flow...
31 July 2024 781 1 View
I am new to Micromechanics and having similar problem with understanding the implementation of the formula's. I would appreciate if anyone can guide me on how to go about getting a scalar value...
30 July 2024 969 0 View
Dear All Gromacs User I would like to restart MD without using checkpint .cpt files? I heard there is a way for acheiveing this. Any input and sugegstions are most welcome. Thanking You Budheswar
29 July 2024 3,084 8 View
If I want to calculate molecular dynamics (Gromacs), do I first need to optimize the geometry of the molecule? For example, I first draw the molecule in Avogadro, and then what? I guess I can't...
28 July 2024 673 3 View
Please, what is the memory consumption of the Matlab function quad tree decomposition procedure [S = qtdecomp(I)] with respect to the input set I?
27 July 2024 5,455 2 View
Hello. I have the geometry of a blade in CAD file (stp) and I want to prepare the blade for meshing with turboGrid. I must import this file into designModeler and then transfer to the...
27 July 2024 356 3 View
Hello, I am a research scholar currently working on a project involving image segmentation, and I am interested in using differential evolution for this purpose . I would greatly appreciate it if...
25 July 2024 9,926 1 View
Hello!!! I want to implement the Swerling characteristics functions (CF) directly in MATLAB without using its Fourier integral pairs...the Swerling CFs are actually Laplace Transform of the signal...
23 July 2024 4,925 1 View