Boundary conditions for pdenonlin
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
In order to solve nonlinear system of pde's I need to supply, together with the pde specification, a boundary condition file or matrix:
pdenonlin(b,p,e,t,c,a,f)
where b is the Boundary condition input, p,e,t are the mesh input, and c,a,f are the coefficients.
Matlab enable us to get the boundary conditions matrix Q,G,H,R by
[Q,G,H,R]=assemb(b,p,e)
What are these matrix uses for? Are they an alternative input for pde solver? if so, how?
Thanks!
0 comentarios
Respuesta aceptada
Deepak Ramaswamy
el 19 de Jul. de 2013
Q,G,H,R are alternative ways to specify boundary conditions for assempde() (static & linear case). Typically you would use them along with the matrix representations of the PDE coefficients such as: K,M,F.
pdenonlin doesn't read the matrix form. As to why one would use the matrix form even for linear cases, they are useful in some cases. I've used them for efficiently solving 4th order PDEs, applying periodic and other global BCs and also creating state space models.
for info on how to specify "b", check out http://www.mathworks.com/help/pde/ug/boundary-conditions-for-scalar-pde.html
Deepak
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Boundary Conditions en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!