How to extrapolate airfoil trailing edge to make it closed?

1 回表示 (過去 30 日間)
piston_pim_offset
piston_pim_offset 2024 年 5 月 23 日
コメント済み: Ayush Anand 2024 年 5 月 24 日
Hi everyone.
I am working on airfoils right now. When l plot the data, airfoil trailing edge comes open. l tried the accepted answer on this link ( https://www.mathworks.com/matlabcentral/answers/279331-extrapolation-and-estimation-of-data ), but it didn't work for me (gives unrelated negative values). Can anyone help me to solve this problem?
  3 件のコメント
piston_pim_offset
piston_pim_offset 2024 年 5 月 23 日
The code was like this:
data = xlsread('data.xlsx'); % Airfoil data
extr = linspace(1,0.9,100);
data_extr = interp1( data(:,1) , data(:,2) , extr ); % Extrapolation of trailing edge
plot(data(:,1) , data(:,2) , 'r') % Plot of airfoil from original data
hold on
plot(extr , data_extr , 'k') % Plot of trailing edge
Ayush Anand
Ayush Anand 2024 年 5 月 24 日
I can't reproduce the results without the actual data you are importing from "data.xlsx". If its not private data, would you mind sharing that as well?

サインインしてコメントする。

回答 (0 件)

カテゴリ

Help Center および File ExchangeAirfoil tools についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by