4DOF Spur Gear System - Eigenvalues not corresponding with the Eqns?

AI Thread Summary
The discussion centers on modeling a four degree of freedom spur gear system and the challenges faced in achieving steady-state simulations in MATLAB. The user initially struggled with eigenvalues, finding multiple zero-frequency modes, which indicated issues with their equations of motion and stiffness matrix. After incorporating the stiffness of bearings into the stiffness matrix, the user successfully obtained three positive eigenvalues and one zero, aligning with the expected system behavior. Additional questions arose regarding variable assumptions and initial conditions for the equations, highlighting the complexities of the modeling process. The conversation underscores the importance of correctly defining system dynamics to ensure accurate simulation results.
Sirsh
Messages
262
Reaction score
10
Hi there,

I am modelling a four degree of freedom system which is the dynamics of two spur gears in mesh, having two rotational and two translation degrees of freedom, respectively, a diagram exhibiting the system can be seen below.

4dofsysgear.jpg


I have derived the equations of motion (EOM) and rearranged into ODEs as seen:
eqs.jpg


Where the force and torque relations are (used in the derivation process):
eqs1.jpg

Following this I have made rewritten equations 1-4 into matrix form, creating mass and stiffness matrices.
eqs2.jpg

I have been having trouble achieving steady state of this system in my simulations using Simulink and MATLAB, so I was advised to check the eigenvalues of the dynamic matrix as well as make sure that the mass matrix is diagonal while the stiffness matrix is symmetrical - they both are.

The dynamic matrix is defined as the inverse of the mass matrix multiplied by the stiffness matrix, e.g. Dyn = inv(M)*K.

Now, I have input all this into MATLAB with the corresponding values for each of the parameters. However, I can never achieve purely positive eigenvalues for this system, as I'm told is required and may be the issue with my simulation, and where if they're not all positive (including one zero) then the system of equations are incorrect. However, I have reviewed literature on spur gear dynamics and the equations are the same...

This is exhibited below as an output of my MATLAB eigenvalue calculating script:
matlab.jpg

matlab1.jpg


Any help would be appreciated greatly, as I am an undergraduate student researching solo. So any advice on my interpretation of either the system dynamics or eigenvalue interpretation would be helpful from you all.

Thanks, Sirsh.
 
Engineering news on Phys.org
I think I can help. Let's start with the eigenvalues, which correspond to (the squares of) your modal frequencies. Since the system you have has exactly one way of moving without causing any forces (when the gears rotate opposite directions according to their gear ratio), you should have exactly one zero-frequency mode. You have three, so yes, something isn't right.

Looking at your stiffness matrix, I noticed there weren't any terms involving the addition of multiple stiffnesses. Whenever motions are coupled by springs, there will be interaction, signaled by stiffness matrix terms containing more than one stiffness.

I believe this all results from your torque and force equations. As written, you are only including the force from the deflection of the stiffness connecting the gears - only kmb appears, not either ks. You need to include the stiffnesses of your bearings; F=kx. Remember that in using F=ma, it's the resultant force applied to the mass, not just one. So each mass in your system should have a combined "bearing force" and "gear tooth" force acting on it.
 
  • Like
Likes John Taco and Sirsh
Randy Beikmann said:
I think I can help. Let's start with the eigenvalues, which correspond to (the squares of) your modal frequencies. Since the system you have has exactly one way of moving without causing any forces (when the gears rotate opposite directions according to their gear ratio), you should have exactly one zero-frequency mode. You have three, so yes, something isn't right.

Looking at your stiffness matrix, I noticed there weren't any terms involving the addition of multiple stiffnesses. Whenever motions are coupled by springs, there will be interaction, signaled by stiffness matrix terms containing more than one stiffness.

I believe this all results from your torque and force equations. As written, you are only including the force from the deflection of the stiffness connecting the gears - only kmb appears, not either ks. You need to include the stiffnesses of your bearings; F=kx. Remember that in using F=ma, it's the resultant force applied to the mass, not just one. So each mass in your system should have a combined "bearing force" and "gear tooth" force acting on it.

Hi Randy, thanks so much for your input!

I have updated my stiffness matrix to include the stiffness of the bearings which is now:
eqs2rev.jpg

And by solving the updated dynamic matrix, has yielded three purely positive eigenvalues with one zero.

So it seems like its responding as it should, now to see the simulation results!
 
By the way, you can also use Matlab to get the eigenvectors, which are the mode shapes corresponding to each modal frequency (the square root of the eigenvalues). And you can state the eigenvalue problem using the mass and stiffness matrices directly:

[V,D]=eig(K,M)

The columns of V are the eigenvectors, and the diagonal of D is the list of eigenvalues.
 
Hi,
thanks so much for sharing your answers and work.
I am analyzing this gear modeling and I have three questions:
1) I think the variables are:
Ѳ_p
Ѳ_g
x_p
x_g
T_p (torque)
T_g (torque)
There are 4 equations and 6 variables. How to solve this?
Do I have to assume values for T_p and T_q? are they equal?

2) could I assume that Ks=Kmb?

3) what are the initial values for the variables and derived variables?John Taco
 
I need some assistance with calculating hp requirements for moving a load. - The 4000lb load is resting on ball bearing rails so friction is effectively zero and will be covered by my added power contingencies. Load: 4000lbs Distance to travel: 10 meters. Time to Travel: 7.5 seconds Need to accelerate the load from a stop to a nominal speed then decelerate coming to a stop. My power delivery method will be a gearmotor driving a gear rack. - I suspect the pinion gear to be about 3-4in in...
Thread 'Calculate minimum RPM to self-balance a CMG on two legs'
Here is a photo of a rough drawing of my apparatus that I have built many times and works. I would like to have a formula to give me the RPM necessary for the gyroscope to balance itself on the two legs (screws). I asked Claude to give me a formula and it gave me the following: Let me calculate the required RPM foreffective stabilization. I'll use the principles of gyroscopicprecession and the moment of inertia. First, let's calculate the keyparameters: 1. Moment of inertia of...
Thread 'Turbocharging carbureted petrol 2 stroke engines'
Hi everyone, online I ve seen some images about 2 stroke carbureted turbo (motorcycle derivation engine). Now.. In the past in this forum some members spoke about turbocharging 2 stroke but not in sufficient detail. The intake and the exhaust are open at the same time and there are no valves like a 4 stroke. But if you search online you can find carbureted 2stroke turbo sled or the Am6 turbo. The question is: Is really possible turbocharge a 2 stroke carburated(NOT EFI)petrol engine and...
Back
Top