get solution in spesific point in the domain after solving pde

5 views (last 30 days)
hi, after solving pde on some domain i've created using: u=assempde(b,p,e,t,c,a,f)
is it possible to extract the value in a spesific point in that domain?
thank you.

Accepted Answer

Bill Greene
Bill Greene on 17 Sep 2013
There are several ways to do this. Here is one simple one:
% p is the point matrix from initmesh
% u is the solution from, e.g. assempde
F = TriScatteredInterp(p(1,:)', p(2,:)', u);
x = .5; y = .8; % location of a point in the model
upt = F(x,y);
Bill

More Answers (0)

Tags

Products

Community Treasure Hunt

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

Start Hunting!