필터 지우기
필터 지우기

non constant PDE toolbox coefficients with second order derivatives.

조회 수: 1 (최근 30일)
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;

채택된 답변

Alan Weiss
Alan Weiss 2017년 6월 13일
No, the state structure does not support uxx or uyy, as documented.
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
Ravi Kumar
Ravi Kumar 2017년 6월 14일
Could you share your script, and necessary data, for the nonlinear system of PDEs that did not converge?
Kaveh Gharibi
Kaveh Gharibi 2017년 6월 15일
I figured it out. My C matrix was wrong. Pay attention when converting the problem to Matlab divergence format.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Eigenvalue Problems에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by