Sorting of points in 2D
이전 댓글 표시
Dear All,
I face issue in arranging the airfoil coordinates coming from a CAD program. The coordinates are arranged from minumum x value to maximum x value. But I require to arrange the points starting from Trailing Edge ( Max X coordinate) and then proceed on top side all the way to Leading Edge ( Minimum X coordinate) and then again proceed in the bottom side and terminate in the Trailing Edge.
The input.txt ( required input file to be sorted)
Output.txt (the coordinates sorted manually).
I have several airfoil coordinates of similar nature, so a matlab function could help me out doing the job manually everytime.
Any help is really appreciated.
Thanks in Advance,
K Vijay Anand
댓글 수: 3
Ameer Hamza
2020년 10월 17일
Can you create a small input and output file? Maybe with a maximum of 20 lines. That will help in understanding the pattern.
KSSV
2020년 10월 17일
One way is to use the below rocedure:
Vijay Anand
2020년 10월 17일
편집: Vijay Anand
2020년 10월 17일
채택된 답변
추가 답변 (1개)
Vijay Anand
2020년 10월 18일
편집: Vijay Anand
2020년 10월 18일
0 개 추천
댓글 수: 2
Steven Lord
2020년 10월 18일
Consider using the movmean function included in MATLAB.
Stephen23
2020년 10월 19일
I did some more experimentation and got better results replacing the moving average with a polynomial fitted to the data. First I tried polyfit, but quickly realized that the end points need to be specified. Luckily this FEX submission
allows constraints to be specified, including points that the curve has to pass through:
pts = Inp{[1,end],:}; % polynomial must pass through the leading & trailing edges
pwr = mmpolyfit(Inp.x,Inp.y, 5, 'Point',pts) % fit order 5 polynomial
tmp = polyval(pwr, Inp.x); % replaces TMP in the original answer
And checking the fit:
plot(Inp.x,Inp.y,'-*', Inp.x,tmp,'-+')

카테고리
도움말 센터 및 File Exchange에서 Airfoil tools에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



