User:EAS4200C.F08.WIKI.A/Homework3
Contents |
Shear Flow [edit]
Curved Panels [edit]
Below is an image of a curved panel in the (x,y,z) coordinates.
Note: Sometimes (y,z) coordinates are used for the axes in plane of the cross section of the panel instead of (x,y) coordinates.
Below is an image of another curved panel with thickness t. A force will be applied to the panel which can be seen in the next image below.
Below is a cross sectional view of the same curved panel with force F acting on it at an angle θ above the horizontal (y-axis). The cross section goes from point A to point B. It's height is b and it's width is a.




= shear flow
Here's a closer look at the panel where the force is acting. You can see it's acting on and parallel with section dl.
| Resultant Shear Force Vector |
|---|
|
|
| Resultant Magnitude |
|---|
|
Relate |
Closed Thin-Walled Cross Section [edit]

Below is the cross section of a closed thin-walled area. There is a force acting on section dl.
= the distance from the origin to section dl
= the distance from the origin to the force that is perpendicular to the force vector.


Take a closer look where the force acts on on section dl.




= Average Area
Below is an image of the average area of the cross section of a curved panel:
| Proving The Area of a Triangle |
|---|
| The easiest way of proving the area od a triangle is to transform the triangle into a parallelogram. To do so follow these simple steps.
1. Create a triangle ABC 2. Create a line CD that is parallel to line AB 3. Create a line AE that is parallel to line CB 4. Extend lines AE and CD until they intersect at point F 5. Shape ABCF is a parallelogram 6. The parallelogram is composed of two triangles, both identical to the original triangle ABC 7. The Area of a parallelogram is base * height. 8. Half of this area equals the area of the original triangle.
|
Open Thin Walled Cross-Sections [edit]
The torque of the depicted thin walled structure is

This is also equivalent to the location of the resultant force acting parallel to the line connecting the two ends of the object.
Uniform Circular Cylinder: Non-Warping [edit]
We will now take a look at a uniform circular cylinder cross-section. This cross-section behaves as a rigid disk.
We will look at the infinitesimal area
at a distance
away from the origin. The torque here can be described by the following equation;

It must be noted that;
, 
where
is the strain modulus and
is the shear strain. Together they comprise Hooks Law which is used to describe the deformation of the disk. The variable
is the force and when multiplied by the displacement produces the moment around the origin.The shear strain is described by the following equation;

where
which is defined as the rate of twist. Since
is proportional to
which is also proportional to
, the shear stress
gets smaller in the material closer to the core because the distance away from the core
gets smaller. Therefore it is more efficient and cost effective to remove material to make the cylinder lighter. The limits of the material will be tested but if calculations are done correctly then there shouldn't be anything to worry about.
The torque can be represented by the following;

where
is a function of
and
.

The strain modulus and rate of twist is not a function of
or
and is why they come out of the integral. The resulting integral is defined as the second polar moment of inertia.

| Second Polar Moment Of Inertia: Solid Circular Cross Section |
|---|
| We start with the equation for the polar moment of inertia
where a is the radius of the cross-section and dA represents the differential area. We then notice that the radius is a function of the area where the area of a circle is given by
Integrate the above equation and you get;
|
Hollow Circular Cross-Section: Thin Walled [edit]
The analysis of a hollow circular cross section with thin walls (ie. t << a), is conducted as follows:
(inner radius)
(outer radius)
The equation for the polar moment is done by superimposing 'empty' circle on top of one solid circle, and the resulting equation is as follows:

This can be expanded as:

If an average radius of the cross section is then defined as:

And it is noted that, since t is very small,

and

and

Therefore,

and noting that 
J can then be expressed as:

J can then be expressed in terms of the average radius by noting that:

With
it's easily seen that J is proportional to
, with
being a proportionality factor.
Solid Circular Cross-Section vs Hollow Thin Walled Cross-Section [edit]
In order to compare these two cross-sections, we will be using the figure from the text Mechanics of Aircraft Structures by C.T. Sun. The figure is depicted below with all dimensions labeled on the figure.
We will first compute the area for each cross-section.


As the computtion shows, the areas are similar despite the size difference. We will next compute the polar moment of inertia for each cross section.


Comparing the two Polar moment of inertia shows that the thin walled cross-section is a better torsional member than the solid cross-section. Since its polar moment of inertia (measure of its resistance to torsion) is much larger, it is a more desirable cross-section to use. The polar moment of inertia for the solid cross-section is only
of the polar moment of inertia for the hollow thin walled cross-section.

If the thickness to equal
, where
represents a new hollow thin walled cross-section, what would this inner radious
equal such that the polar moment of inertia for figure (a) equals that of the new figure (c)?
| Answer |
|---|
|
Matlab Project Discription [edit]
For HW 3, the team was asked to analyze a NACA 4-digit airfoil series. The discription of the problem can be seen here. A diagram showing the shape of the airfoil in this series can be found on this website. The group is asked to break up the airfoil into a number (ns) of discrete sections in order to analyze the geometry of the airfoil.
In order to complete this problem the student must first understand how to discretize an object into triangular segments in order to find the area of the object. A diagram of how this is done is provided below.
Using this, the following equations can be used in order to find the area of the shaded region.

Here,
and 
With

Now that the basic foundation of the analysis has been discussed, the MATLAB code along with its execution is displayed below.
| MATLAB Code |
|---|
Airfoil Function [edit]function Airfoil(m,p,ta,c,P_0) m = m/100; p = p/10; ta = ta/100; check = 1; j = 1; while check ==1
ns = 20*j;
y = linspace(0,1,ns);
for i = 1:ns
if y(i)<=p
z_c(i) = (m/p^2)*(2*p*y(i)-y(i)^2);
theta(i) = atan((m/p^2)*(2*p-2*y(i)));
else
z_c(i) = (m/(1-p)^2)*((1-2*p)+2*p*y(i)-y(i)^2);
theta(i) = atan((m/(1-p)^2)*(2*p-2*y(i)));
end
z_t(i) = 5*ta*(.2969*y(i)^.5-.1260*y(i)-.3516*y(i)^2+.2843*y(i)^3-.1015*y(i)^4);
y_u(i) = (y(i) - z_t(i)*sin(theta(i)))*c;
z_u(i) = (z_c(i) + z_t(i)*cos(theta(i)))*c;
y_l(i) = (y(i) + z_t(i)*sin(theta(i)))*c;
z_l(i) = (z_c(i) - z_t(i)*cos(theta(i)))*c;
end
Area = 0;
for i = 1:ns-1
PQ = [0 y_u(ns-i)-y_u(ns-i+1) z_u(ns-i)-z_u(ns-i+1)];
r = [0 y_u(ns-i+1)-P_0(2) z_u(ns-i+1)-P_0(3)];
a = cross(r,PQ)/2;
Area = Area + a;
end
for i = 1:ns-1
PQ = [0 y_l(i+1)-y_l(i) z_l(i+1)-z_l(i)];
r = [0 y_l(i)-P_0(2) z_l(i)-P_0(3)];
a = cross(r,PQ)/2;
Area = Area + a;
end
NS(j) = ns;
A_BAR(j) = Area(1);
if j ~= 1
if abs((A_BAR(j)-A_BAR(j-1))/A_BAR(j-1))*100<.01
check = 0;
end
end
j = j+1;
end A_bar = A_BAR(j-1) subplot(2,1,1), plot(y_u,z_u,y_l,z_l), xlabel('y'), ylabel('z'), title('NACA 2415 Airfoil') subplot(2,1,2), plot(NS,A_BAR), xlabel('ns'), ylabel('A_b_a_r'), title('ns vs. A_b_a_r') NACA 2415 Airfoil in MATLAB command window [edit]EDU>> Airfoil(2,4,15,.5,[0 0 0]) A_bar = 0.0253 EDU>> Airfoil(2,4,15,.5,[0 0.19 0.01]) A_bar = 0.0255 EDU>> Airfoil(2,4,15,.5,[0 0.25 -1]) A_bar = 0.0256 |
Torsion [edit]
Torsion of uniform, non circular bars leads to warping of the cross section, which is defined as an axial displacement along the x-axis (ie, along the bars length due to the conventions used in class) of a point on the deformed, or rotated, cross section. A schematic representation is shown below.
= the y-component of the displacement vector 
and
= the z-component of the displacement vector 
It should be noted (and easily seen) from the figure that
is not on a circle centered at the origin with radius
and
in fact has a larger magnitude than 
This is due to the line
having a vertical and horizontal displacement from 
However, since the angles associated with twist in torsion are likely to be relatively small, one can use small angle approximations and assume that the magnitude of 


With
, this makes
and 
The rate of twist angle,
, is defined as
Where
is the angle of rotation. The horizontal displacement (displacement in the y-direction) is
- (1)

The vertical displacement of a point of the cross section (displacement in the z-direction) can be determined from
Where
can be substituted in place of
and
can be substituted in place of
, thus resulting in the following
- (2)

The displacement due to warping along the x-axis is defined as
- (3)

Equations 1, 2, and 3 make up the kinematic assumptions.
Roadmap for Torsional Analysis [edit]
The following list lays out a general step by step roadmap of equations to apply for the torsional analysis of an aircraft wing:
- A. Kinematic assumptions (equations 1, 2, and 3 above)
- B. Strain-displacement relation given by the two equations:
- C. Equilibrium equations for stresses:



- But, since
and
are independent of x in the displacement field, the equations reduce to the following:

- D. Prandt stress funtion
:
- E. Strain compatibility equation:
- F. Equation for

- G. Boundary conditions for
:
- The traction free boundary condition
on a lateral surface yields the following:

- thus,
is a constant. But, this constant becomes arbitrary since it is a solid section with only one contour boundary, thus

- The traction free boundary condition
- H. Resultant torque:
- I.
where
- J. Twist angle

- where
is the curvilinear coordinate along a thin wall
- K. 1) Multicelled Section
-
- For cells where

- For cells where
-
= Shear flow in cell i.
-
= "average" area in cell i.
-
- Define:
torque generated by one cell.
- Define:
- 2) Shape of airfoil is "rigid" in the plane
however it can warp out of the plane.
The twist angle equation applied to cell i.
-
= Shear Modulus of cell i
-
= thickness of walls on cell i. This is a linear curve coordinate along the cell wall.
Pb 1.1: Rectangular single cell section with modification.
Now more general with a single cell section:



Shear flow comes from the torque equation: 

Twist angle:
index for the segment number.
There is only one cell for
so it reduces to
in the equation above. You would normally have two indexes for multicelled section
.

Note:is and elongated S, standing for continuous summation.
is a discrete sum.
Individual Contributions [edit]
Christopher PergolaEAS4200C.F08.WIKI.A 18:14, 8 October 2008 (UTC)
Braden Barnes Eas4200c.f08.wiki.b 19:54, 7 October 2008 (UTC)
Eric Viale Eas4200c.f08.wiki.c 22:15, 7 October 2008 (UTC)
Michael Rolle Eas4200c.f08.wiki.d 18:29, 8 October 2008 (UTC)
Jeff Huenink Eas4200c.f08.wiki.f 03:10, 8 October 2008 (UTC)
Chris Fontana Eas4200c.f08.WIKI.E 13:11, 8 October 2008 (UTC)










![\begin{vmatrix}
\begin{vmatrix}
\overrightarrow{F}
\end{vmatrix}
\end{vmatrix} = [(F_y)^2 + (F_z)^2]^{1/2}](http://upload.wikimedia.org/math/c/d/b/cdb32b093eeea6fcbb66040f33583790.png)
![{\color{blue}\begin{vmatrix}\begin{vmatrix}\overrightarrow{F}\end{vmatrix}\end{vmatrix} = q[a^2 + b^2]^{1/2}}](http://upload.wikimedia.org/math/4/8/2/4827b8e588302749a000522c26ef86be.png)
= length of straight line AB











with
and simplify to obtain the final solution for the second moment of inertia for a solid circular cross-section;





















and
are independent of x in the displacement field, the equations reduce to the following:
:




on a lateral surface yields the following:


where


is the curvilinear coordinate along a thin wall

= Shear flow in cell i.
= "average" area in cell i.
torque generated by one cell.
however it can warp out of the plane.
= Shear Modulus of cell i
= thickness of walls on cell i. This is a linear curve coordinate along the cell wall.
is and elongated S, standing for continuous summation.
is a discrete sum.