19mm Dia x 720mm Fibreglass Tube Natural Frequency
19mm Dia x 720mm Fibreglass Tube Natural Frequency
(OP)
I need to calculate the natural frequency of a 19mm Dia x 1.6wall x 720mm long Fibreglass Tube. I am trying to calculate the critical speed of of this member as it is developing vibrations at around 80km/h (wind speed). I would to see if the critical speed is close to this 80km/h.
If it is I will need to see what can be done to design out this problem, ie increase thickness, stiffness, length etc dampening etc...
If it is I will need to see what can be done to design out this problem, ie increase thickness, stiffness, length etc dampening etc...





RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
Does the tube roll? Or are you talking a frequecy like Karman vortex frequency?
Where is the tube supported?
Per Den Hartog's Mechanical vibrations
wn = a * sqrt(E*I/(mu*l^4)
where E is Young's Modulus in psi, mu is linear density in lbm/inch, l is length i ninches, I is moment of inertia ...
I=(1/64)*pi*(Douter^4-Dinner^4) (units inch^4
a is a unitless constant as follows:
If the tube in cantlevered, a=3.52
If the tube is simply supported both ends, a=9.87
Free/Free => a=22
There are about 10 other boundary condition coefficients listed
=====================================
Eng-tips forums: The best place on the web for engineering discussions.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
Does above formula output a frequency?
What does mu denote in the above formula?
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
f = w/(2*Pi)
mu in the linear density in lbm/inch
For your geometry (cantilever), use a=3.52 for the first bending mode, a=22 for the 2nd bending mode, and a=121 for the 3rd bending mode.
There are acoustic resonances possible as well... the harmonic series of those will depend on whether the tube is open at one or both ends.
I think the frequency of vortex shedding if the flow is perpendicular to the tube is predicted by
f = 0.22 * V/D
For V=80km/hr and D=19, that would give f = 257hz.
You might want to check this formula from another source...vortex stuff is not my thing.
=====================================
Eng-tips forums: The best place on the web for engineering discussions.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
The angle of the airflow can change depending on where this is mounted.
Position a = perpendicular flow.
Position b = 45deg up from perpendicular.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
=====================================
Eng-tips forums: The best place on the web for engineering discussions.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
=====================================
Eng-tips forums: The best place on the web for engineering discussions.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
E = 30000 Mpa
Density = 1663 kg/m3
Not sure how this equates to a Linear density in lbs/in
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
Youngs modulus of E= 30000Mpa converts to 4351132lbs/in2.
I have corrected to rod OD to 16mm ID 14mm
Which has an I = 1328.9 metric = 0.00319 imperial
Density of 1663kg/m^3 = 0.06007969 lbs/in^3
Length L = 720mm = 28.34in
Putting all this info in gives the following values:
1st Mode 55.26 rads/sec = 8.79Hz
2nd Mode 345.43 rads/sec = 54.97Hz
3rd Mode 1899.87 rads/sec = 302.37Hz
Calculating the vortex shedding frequency from the given formula f = 0.22 * V/D with:
D = 16 mm
V = 22.22 (80km/h)
gives:
f = 305.53 Hz (Pretty close to the 3rd mode)
also if velocity = 22 m/s then freq = 302.5 Hz
Now I just need to verify these results somehow!
I'm open to sugestions on this, what do people think?
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
Feel free to check my math:
Ishaft:=Pi/64*(Douter^4-Dinner^4);
Ishaft:=pi/64*((20.6*mm)^4-(19.0*mm)^4);
Ishaft := .245e4*mm^4
mu:=A*rho=Pi*D*t*rho
mu:=pi*19*mm*1.6*mm*(1663*kg/m^3)*(m/(1000*mm))^2;
mu := .1588238449*kg/m
f1 := 1/(2*Pi)*a1 * sqrt(E*Ishaft/(mu*L^4));
f1 := 1/(2*pi)*3.52 * sqrt(30000E6*Pascal*Ishaft/(mu*(720*mm)^4) *kg/(m*second^2*Pascal));
f1 := 23.2/second
f3:=f1*22/3.52;
f3 := 145./second
f3:=f1*121/3.52;
f3 := 798./second
=====================================
Eng-tips forums: The best place on the web for engineering discussions.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
=====================================
Eng-tips forums: The best place on the web for engineering discussions.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
One way to confirm the results would be using a strobe if the vibrations are big enough to see. If you can freeze the shaft at that frequency then you can confirm the frequency and the shape.
Direct measurement of the frequency with an accelerometer and data collector would be nice as long as the accel is not so heavy that it changes the system. Also you could move the accel up and down to try to map the operating deflection shape.
I tried the calc again with revised numbers and still different thatn your results...I may have made an error.
Ishaft:=Pi/64*(Douter^4-Dinner^4);
IshaftVALUE:=subs({Douter=16*mm,Dinner=14*mm,Pi=pi},Ishaft);
IshaftVALUE := .133e4*mm^4
mu:=Pi*(Douter^2-Dinner^2)/4*rho;
muVALUE:=evalf(subs({Douter=16*mm,Dinner=14*mm,rho=1663*kg/m^3,Pi=pi},mu)*(m/(1000*mm))^2);
muVALUE := .780e-1*kg/m
ConversionVALUE:=kg/(m*second^2*Pascal);
EVALUE:=30000E6*Pascal;
LVALUE:=720*mm;
f1 := 1/(2*pi)*a1 * sqrt(E1*Ishaft1/(mu1*L1^4)*conversion);
f1:=subs({E1=EVALUE,Ishaft1=IshaftVALUE,conversion=ConversionVALUE,mu1=muVALUE,L1=LVALUE,a1=3.52},f1);
f1 = 24.3 hz
f2:=f1*22/3.52;
f2 = 152. hz
f3:=f1*121/3.52;
f2 = 836. hz
Anyone else have comments on the calcs or ways to confirm?
=====================================
Eng-tips forums: The best place on the web for engineering discussions.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
=====================================
Eng-tips forums: The best place on the web for engineering discussions.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
=====================================
Eng-tips forums: The best place on the web for engineering discussions.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
http://www.vibrationdata.com/beam.exe
Tom Irvine
www.vibrationdata.com
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
Is this working on the same theory that we have been discussing.
ie.
Per Den Hartog's Mechanical vibrations
wn = a * sqrt(E*I/(mu*l^4)
also is this formula correct for calculating the vortex shedding frequency for a closed end circular hollow section dia 16mm x 720mm long, f = 0.22 * V/D.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
For the cantilever case, I get the following frequencies:
f1 = 24.4 Hz
f2 = 152.7 Hz
f3 = 427.6 Hz
The "a" factor for f3 is 61.6972 per this reference.
I calculated the vortex shedding frequency as
f = 0.21 * V / OD
For straight flow with V = 80 km/hr, fv = 291.7 Hz.
For the 45 degree angle of attack, you want the velocity normal to the cylinder, so multiply by sin(45). This results in fv = 145.8 Hz which seems pretty close to f2 (152.7 Hz).
Steve
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
As far as the third frequency, mine doesn't agree. Mine does obeys the ratio of f3/f2 = a3/a2 as I have it listed above a3/a2 = 121/22. It must be either you made an error or I transcribed the coeeficients wrong. I'll check those coefficients when I get home tonight.
=====================================
Eng-tips forums: The best place on the web for engineering discussions.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
=====================================
Eng-tips forums: The best place on the web for engineering discussions.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
I have just borrowed Thompsons, Theory of Vibration, I think I really do need a text on this topic.
The result looks good, I'll make sure it all seems Ok then I will get back to you guys with result.
RE: 19mm Dia x 720mm Fibreglass Tube Natural Frequency
a1=3.52
a2=22.0
a3=61.7 (I had used 121)
a4=121
a5=200
=====================================
Eng-tips forums: The best place on the web for engineering discussions.