meshing in matlab

hi,,
if i have a circular area ,say with a diameter of 0.2m, how can i mesh it in matlab??
thank you

回答 (2 件)

Grzegorz Knor
Grzegorz Knor 2011 年 11 月 28 日

0 投票

See:
Or if you have pdetool:
eventually something like this:
[x,y] = meshgrid(-.2:.01:.2);
x = x(:);
y = y(:);
idx = x.^2+y.^2 < 0.2^2;
x(~idx) = [];
y(~idx) = [];
dt = DelaunayTri(x,y);
triplot(dt)
axis equal
KSSV
KSSV 2011 年 12 月 16 日

0 投票

Hi
You can refer my homepage link for meshing in MATLAB. I have done meshing of plates and shells in MATLAB.
Link:
https://sites.google.com/site/kolukulasivasrinivas/
Check the plates and shell pages under MATLAB FEA. Share your experience (comments, likes, suggestions) on the CODE if have used it.
Sreenu
https://sites.google.com/site/kolukulasivasrinivas/

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

質問済み:

2011 年 11 月 28 日

Community Treasure Hunt

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

Start Hunting!

Translated by