Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Mesured Acceleration as Input to ADAMS

Status
Not open for further replies.

pefl99

Mechanical
Apr 30, 2004
3
AT
Dear Forum,

I have 5 sets of Data representing x,y,z acceleration at
Point _A and y,Z accelerations at Point_B.

Is there a way to use this data to simulate the reaction of a Mechanism to those Accelerations?

Thx
Martin
 
Replies continue below

Recommended for you

Yes. You can either build a spline with them, and use that as an excitation, or you can read in the file. The latter sounds more straightforward, but it is not immediately obvious how to do it.

You may have to double integrate them first, to give displacements.

Here's the relevant part of the adm file where I applied a time history of force to a model

! adams_view_name='SFORCE_1'
Sforce/1
, Translational
, I = 67
, J = 68
, Actiononly
, Function = INTERP(time,1,1)
!
!------------------------------ DATA STRUCTURES --------------------------------
!
! adams_view_name='SPLINE_1'
! adams_view_units='no_units'
Spline/1
, File = /simple/shudderwft.rsp
, Channel = 6
!
! adams_view_name='SFORCE_1_MEA_1'
Variable/1
, Function = SFORCE(1,0,1,0)
!
! adams_view_name='SFORCE_1_MEA_2'
Variable/2
, Function = SFORCE(1,0,2,0)


you'll be able to do the same with a MOTION statement.




Cheers

Greg Locock
 
Hi Greg,

thx for your reply!

But I'm still a little *g* bit lost.

Duoble integrating the data is VERRY errorenous.
and as I'm quite new to this game what is an adm file what do I do with it where does it integrate into the simulation ...

I started out with Dynamic Designer but was able to persuade the company to go for the full range. Now I got the toy, but I'm overhelmed by it's possibilties.

Sorry to bother you or anybody else who is willing to support a bloody rooky.

cheers

Martin


and by the way forgive me my english.
 
Which package are you using?

Double integrating is not erroneous, you are going to trust ADAMS to do it anyway! However according to this velocity is better.


Note that you can only apply a MOTION to a joint.

Have you done all the ADAMS/View tutorials? You need to.

The adm file is a list of all the model statements that gets sent to the Solver. As such it is very good debugging tool, for the more integrated products, which do not explicitly create an adm file.


As a first step do the following tutorial


then convert it so that the slider motion is defined by one of your drive files.


Cheers

Greg Locock
 
Hi Greg,

thx for your advise!

I'm almost there

Martin
 
Greg I'm sure you can add an acceleration directly to a joint. In the general motion dialog box you can select the function to be an acceleration as a function of time and you can do it directly in command language using something like this:

var set var=.EH101_MMI_AC.MOTION_deck.t1_type int=3

Ben
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top