non constant PDE toolbox coefficients with second order derivatives.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Kaveh Gharibi
il 11 Giu 2017
Commentato: Kaveh Gharibi
il 15 Giu 2017
I need to specify coefficients in PDE tool box. My coefficients are related to the second derivatives not first derivatives. Can I use state.uyy and state.uxx and state.uxy as second derivatives? You can see the code here. Thank you so much.
function amatrix = acoefminsurf(region,state)
n1 = 16;
nr = numel(region.x);
amatrix = zeros(n1,nr);
normrev=-(sqrt( state.uyy(4,:).^2+state.uxx(4,:).^2-2*state.uxy(4,:).^2 ) );
amatrix(2,:) = normrev;
amatrix(7,:) = normrev;
amatrix(12,:) = normrev;
0 Commenti
Risposta accettata
Alan Weiss
il 13 Giu 2017
I suppose that you might try to increase the number of variables in your equation, such as making a system [u,v] and having v = ux so that uxx = vx. But I make no guarantees that you can really do this successfully. You would have to come up with coefficients and boundary conditions for the system.
Good luck,
Alan Weiss
MATLAB mathematical toolbox documentation
3 Commenti
Ravi Kumar
il 14 Giu 2017
Could you share your script, and necessary data, for the nonlinear system of PDEs that did not converge?
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Geometry and Mesh in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!