get solution in spesific point in the domain after solving pde
2 次查看(过去 30 天)
显示 更早的评论
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.
0 个评论
采纳的回答
Bill Greene
2013-9-17
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
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 PDE Solvers 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!