meshing in matlab
조회 수: 1 (최근 30일)
이전 댓글 표시
hi,,
if i have a circular area ,say with a diameter of 0.2m, how can i mesh it in matlab??
thank you
댓글 수: 0
답변 (2개)
Grzegorz Knor
2011년 11월 28일
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
댓글 수: 0
KSSV
2011년 12월 16일
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/
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Matrix Indexing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!