Question: The tail sweep angle and the tail dihedral angle are tentatively considered to be the same as those of the wing. The reasons are presented

The tail sweep angle and the tail dihedral angle are tentatively considered to be the same as those of the wing. The reasons are
presented in Section 6.7:
\Lambda _(h)=10deg,\Gamma _(h)=5degi_(h) C_(L_(\alpha ))=(C_(l_(\alpha -h)))/(1+(C_(l_(\alpha _(-h))))/(\pi *AR_(h)))=(6.7)/(1+(6.7)/(3.14*18.6))=6.1(1)/(rad)
The tail angle of attack in cruise is:
\alpha _(h)=(C_(L_(h)))/(C_(L_(\alpha _(l))))=(-0.121)/(6.1)=-0.018rad=-1.02deg
To calculate the tail created lift coefficient, the lifting line theory is employed as introduced in Section 5.14. The following MATLAB m-file is utilized to calculate the tail lift coefficient with an angle of attack of -1.02 deg.
CODE:
clc
clear
N =9; %(number of segments-1)
S =2.277; % m2
AR =18.6; % Aspect ratio
lambda =0.8; % Taper ratio
alpha_(t)wist =0.00001; % Twist angle (deg)
a_(h)=-1.02; % tail angle of attack (deg)
a_(2)d =6.1; % lift curve slope ((1)/(r)ad)
alpha_(0)=0.000001; % zero-lift angle of attack (deg)
b = sqrt(AR*S); % tail span
MAC =( S)/(b); % Mean Aerodynamic Chord
Croot =(1.5*(1+lambda)*MAC)/(1+lambda+lambda2); % root chord
theta = p(i)/(2*N):p(i)/(2*N):p(i)/(2);
alpha=a_(h)+alpha_(t)wist:-alpha_(t)wis(t)/(N-1):a_(h);
% segment's angle of attack
z =((b)/(2))*cos(theta);
c = Croot *(1-(1-lambda)*cos(theta)); % Mean
Aerodynamics chord at each segment
mu = c * a_(2)d ()/()(4* b);
LHS = mu .*(alpha-alpha_(0))/(57.3); % Left Hand Side
% Solving N equations to find coefficients A(i):
for i=1:N
for j=1:N
B(i,j)=sin((2*j-1)* theta(i))*(1+(mu(i)*)/(sin(theta(i)))
(2*j-1));
end
end
A=(B)/(t)ranspose(LHS);
for i =1:N
sum1(i)=0;
sum2(i)=0;
for j =1 : N
sum1(i)= sum1(i)+(2*j-1)* A(j)*sin((2*j-1)*theta(i));
sum2(i)= sum2(i)+ A(j)*sin((2*j-1)*theta(i));
end
end
CL_(t)ail = pi * AR * A(1)
The output of this m-file is:
CL_(t)ail =-0.095
The tail is expected to generate a CL_(h) of -0.121, but it generates a CL_(h) of -0.0959. To increase the tail lift coefficient to the desired value, we need to increase the tail angle of attack. With trial and error and using the same m. file, we find that the tail angle of attack of -1.29 deg generates the desired tail lift coefficient.
Hence: alpha(h)=-1.29deg
INSTRUCTIONS:
PLEASE WRITE EXTRA CODE UNDER THE CODE PROVIDED SO THAT THE PROGRAM OUTPUTS CL LIFT AS -0.121 INSTEAD OF -0.095 USING TRIAL AND ERROR. Extra values are given in the image provided
The tail sweep angle and the tail dihedral angle

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!