How do i find geometry properties of triangles?
조회 수: 1 (최근 30일)
이전 댓글 표시
I want to write a code to find the polar moment of inertia of an airfoil. Being a complex shape, a friend suggested a numerical estimate. I wrote a code to create the airfoil geometry and split it up into triangles using delaunay. I now need to find the moment of inertia about x and y for each triangle and use the parallel axis theorem to relate those to the centroid.
I have the delaunay triangulation complete but how can i find the Ix and Iy of each triangle? I don't even know where to start.
here's the code i have:
chord = 0.25; %chord of airfoil
nacanum = 12; % NACA XX## number for the airfoil
t = nacanum/100; %max thickness of airfoil
x=0:0.005:chord; %points along x axis from 0 to chord length
distratio = x/chord; %ratio of points along x to the chord
% function generating top half of airfoil
yt = 5*t*(0.2969*sqrt(distratio)-0.126*distratio-0.3516*distratio.^2+0.2843*distratio.^3-0.1015*distratio.^4);
ytneg=yt*-1; %generatingg bottom half of airfoil
yfull= [yt ytneg]; % full points for y axis of airfoil
y=yfull';
x2=flipud(x);
xfull=[x x2];%full points for x axis of airfoil
x=xfull';
TR=delaunayTriangulation(x,y); %triangulation of the airfoil
triplot(TR,x,y) %plotting the triangulation
댓글 수: 0
채택된 답변
KSSV
2016년 12월 22일
You can access x,y coordinates of each triangle like below:
nodes = TR.ConnectivityList ; % nodal connectivity matrix
coor = TR.Points ; % coordinates
ntri = size(nodes,1) ; % number of triangles
% loop for each triangle
for i = 1:ntri
xi = coor(nodes(i,:),1) ; % x coordinates of i'th rriangle
yi = coor(nodes(i,:),2) ; % y coordinates of i'th triangle
% do what you want
end
But let me tell you, your mesh of air foil is very bad. I suggest you to go through the following meshing package: https://in.mathworks.com/matlabcentral/fileexchange/25555-mesh2d-automatic-mesh-generation
댓글 수: 4
KSSV
2016년 12월 28일
tsearch problem, can be sorted by minor editing the code. I have done it very long ago, if I get time I will check it. Mean while go through the above link.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Delaunay Triangulation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!