How to find Faces related to a Cell in pde ?
2 ビュー (過去 30 日間)
古いコメントを表示
Hi I am trying to see if there is FindFace command or something that allows me to see the Faces linked to a cell in the pde toolbox. I want to get away from having to assign the boundary conditions to the appropriate Faces everytime I change a parameter by plotting the geometry. Thanks, Best regards, Souvik
1 件のコメント
Fernando Freire Ribeiro
2019 年 4 月 4 日
Hello Souvik,
Did you get the solution for your problem? I am facing the same. Thanks.
Fernando
回答 (1 件)
Siju Thomas
2019 年 4 月 10 日
Hi,
There is an undocumented function, findFaces within the PDE Toolbox that can list the IDs of the faces associated with a cell. Below is an example of its usage:
% create a PDEModel object
pdem = createpde();
% create geometry
pdem.Geometry = multicuboid(1,1,1);
% find faces associated with the Cell
pdem.Geometry.findFaces('region','Cell',1)
Please note that the findFaces function is only an internal function and does not have a fully developed API for it.
Siju
4 件のコメント
Matias Bulacio
2019 年 9 月 13 日
Hi Siju, you can find more details in this post I made https://la.mathworks.com/matlabcentral/answers/480160-for-the-pde-toolbox-how-to-get-the-edges-faces-ids-of-a-geometry-without-plotting-them?s_tid=prof_contriblnk.
Thanks!
ADSW121365
2020 年 3 月 27 日
Is this a function which is likely to be removed in future releases given it is undocumented?
参考
カテゴリ
Help Center および File Exchange で Geometry and Mesh についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!