meshparts
Mechanical
- Feb 17, 2005
- 490
Hello,
I have posted here a simple model of a spindle system, composed of a beam, a spring and a point mass. The rotation of the spindle is transformed in a translation of the spring using CE's. On the other end of the spring is the point mass.
For this model I am doing a Full Harmonic Analysis with Material Damping for the spindle. The harmonic load is a moment on the left end of the spindle.
The Frequency Response of the System is computed as the quotient between the translation of the mass and the rotation of the spindle.
The problem is, that the Amplitude of the frequency response is bigger for high material damping then for low material damping! I always thought, it should be vice versa: low damping, high amplitude. This holds for a simple Sping-Mass system. So why not for my little more complex model?
So can you help me finding an explanation for this weird effect? Thanks in advance!
Regards,
Alex
I have posted here a simple model of a spindle system, composed of a beam, a spring and a point mass. The rotation of the spindle is transformed in a translation of the spring using CE's. On the other end of the spring is the point mass.
For this model I am doing a Full Harmonic Analysis with Material Damping for the spindle. The harmonic load is a moment on the left end of the spindle.
The Frequency Response of the System is computed as the quotient between the translation of the mass and the rotation of the spindle.
The problem is, that the Amplitude of the frequency response is bigger for high material damping then for low material damping! I always thought, it should be vice versa: low damping, high amplitude. This holds for a simple Sping-Mass system. So why not for my little more complex model?
So can you help me finding an explanation for this weird effect? Thanks in advance!
Regards,
Alex
Code:
fini
/clear
/prep7
mm=1/1000
pi=3.14
h=10*mm
et_mass=etyiqr(0,16)
et,et_mass,mass21
et_beam=etyiqr(0,16)
et,et_beam,beam188,0,1,0
et_spring=etyiqr(0,16)
et,et_spring,combin14,,1
mp_steel=mpinqr(0,0,16)
mp,ex,mp_steel,210e9
mp,dens,mp_steel,7800
mp,nuxy,mp_steel,0.3
!----------------------------------------------------------
!mp,damp,mp_steel,0.0025 ! LOW DAMPING -> LOW AMPLITUDE!!!
mp,damp,mp_steel,0.25 ! HIGH DAMPING -> HIGH AMPLITUDE!!!
!----------------------------------------------------------
mp_dummy=mpinqr(0,0,16)
mp,damp,mp_dummy,0.0
rc_mass=rlinqr(0,16)
r,rc_mass,225
rc_spring=rlinqr(0,16)
r,rc_spring,500.0e6,2000
sc_spindel=sectinqr(0,16)
sectype,sc_spindel,beam,csolid
secdata,32*mm/2
n,4, 0.0, 0.0 ! first spindle node
n,5, 245.0e-3, 0.0 ! midle spindle node
n,6, 490.0e-3, 0.0 ! last spindle node
n,7, 245.0e-3, 100.0e-3 ! first spring node
n,8, 345.0e-3, 100.0e-3 ! spring and mass node
type,et_spring
mat,mp_dummy
real,rc_spring
e,7,8
type,et_mass
real,rc_mass
e,8
type,et_beam
mat,mp_steel
secnum,sc_spindel
e,4,5
e,5,6
d,4,ux,,,,,uy,uz,roty,rotz ! Left Spindle end can only rotate about the x-axis (ROTX)
d,5,uy,,,,,uz,roty,rotz ! Middle Spindle end can only rotate and translate (UX and ROTX)
d,7,uy,,,,,uz,rotx,roty,rotz ! Spring can only translate in x
d,8,uy,,,,,uz,rotx,roty,rotz ! Spring can only translate in x
! Contrint equation: translate rotation of spindle in translation of spring
ce,1,0,7,ux,-1,5,rotx,h/(2*pi),5,ux,1
fini
/solu
alls
antype,harmic
hropt,full
f,4,mx,1
/esha,1
/pbc,all,,1
eplo
harfrq,0,2000
nsubst,500
kbc,1
eqslv,sparse
solve
finish
/post26
file,,rst
nsol,2,4,rot,x
nsol,3,8,u,x
quot,4,3,2,,,,,1,h/(2*pi)/2
plvar,4
/axlab,x,'Freq (Hz)'
/axlab,y,'Amplitude (dB)'
/gropt,logx,on
/gropt,logy,on
/xrange,10,1000
/yrange,default,,1
/repl