Presentation is loading. Please wait.

Presentation is loading. Please wait.

S6-1 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation SECTION 6 OVER-RUNNING PULLEY.

Similar presentations


Presentation on theme: "S6-1 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation SECTION 6 OVER-RUNNING PULLEY."— Presentation transcript:

1 S6-1 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation SECTION 6 OVER-RUNNING PULLEY

2 S6-2 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation

3 S6-3 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation OVER-RUNNING PULLEY n Model the spring behavior of a one-way clutch in an over-running pulley (ORP) which might be installed, for example, in an engine’s front-end accessory drive. n What’s in this section: u Subroutine Use u Details of ORP VARSUB u Compiling Subroutines u Working with Your User Library u Hysteresis Modeling u SHF Function u Requests u Workshop 11: Over-Running Pulley

4 S6-4 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation SUBROUTINE USE n Overview u Linking external FORTRAN, C, or C++ subroutines is a powerful way to perform advanced modeling tasks. l Useful when modeling phenomena dependant on logical procession of events that can’t easily be represented within the standard MSC.ADAMS functions and expressions. l Preferable method for skilled programmers. l Helps avoid cluttered MSC.ADAMS models. n Implementation Procedure: Major Steps u Write external subroutine u Associate subroutine with corresponding MSC.ADAMS modeling element (make sure model passes correct number of parameters to subroutine) u Compile subroutine u Link MSC.ADAMS library (.dll,.so,.sl)

5 S6-5 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation DETAILS OF ORP VARSUB n Initially, when the hub and sheave sit peacefully static (or are at the exact same rotational velocity), the clutch spring is unloaded. At some point, negative relative velocity occurs (-WZ) between these parts. The spring loads up because relative angular displacement is increasing. At some point, this –WZ slows while the spring is still loading, because it continues to have relative displacement (Q). n Eventually, -WZ slows to -d. At this point, the relative displacement will be some value, Qchange, and the relative velocity will become positive (+WZ). As the relative velocity changes from -d to d, the spring torque is transitioned from the loading torque at Qchange, to the unloading torque at Qchange. This is done with the STEP function. Actually, in this transition change, the targets of the STEP function (loading and unloading torques at Qchange) change slightly because there is still a little relative velocity, and therefore, a little change in the relative angular displacement. Once the positive relative velocity exceeds d, the spring torque exactly follows the unload torque curve.

6 S6-6 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation DETAILS OF ORP VARSUB (CONT.) n The VARSUB is required because of how the overrunning pulley works. The overrunning pulley spring will eventually “max-out” at a value, even though it continues to rotate in the same direction. In other words, -WZ could be so large that the loading curve passes Qmax, and the torque levels off to the maximum torque. At some point, however, the relative velocity will change directions (+WZ), and a value must be obtained from the unloading curve. The VARSUB senses the angular displacements and velocities and resets Q = Qmax, and then the correct values are obtained from the unloading curve (since relative velocity is now positive). n Similarly, +WZ can be large enough to cause Q to be less than zero, therefore you are “over-running.” Here, the spring has no resistance torque (or some nominal value for friction). However, the relative velocity can change sign again and the VARSUB will reset Q = 0 for loading.

7 S6-7 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation DETAILS OF ORP VARSUB (CONT.) n Following is a description of the VARSUB details to calculate Ө.

8 S6-8 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation DETAILS OF ORP VARSUB (CONT.) n Following is a description of the VARSUB details to calculate Ө (Cont.)

9 S6-9 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation DETAILS OF ORP VARSUB (CONT.)

10 S6-10 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation DETAILS OF ORP VARSUB (CONT.)

11 S6-11 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation DETAILS OF ORP VARSUB (CONT.)

12 S6-12 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation DETAILS OF ORP VARSUB (CONT.)

13 S6-13 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation COMPILING SUBROUTINES n To compile your subroutine, use the compiler flags specified in the documentation, and indicated in the MSC.ADAMS Menu as shown below: (Continued on next page)

14 S6-14 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation COMPILING SUBROUTINES (CONT.) n Notes: u The compiler flags are platform-dependent. u Either source code or object files can be entered (for source code, it will be automatically compiled).

15 S6-15 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation WORKING WITH YOUR USER LIBRARY n Once you’ve linked the subroutines, you can link them in standalone ADAMS/Solver, or in ADAMS/View. u In ADAMS/View, from the Settings menu, point to Solver, and then select Solver Executable. Specify the file in the Solver Library text box.

16 S6-16 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation HYSTERESIS MODELING n Many mechanical components have properties that exhibit hysteresis-based behavior. For example, rotational spring may load up according to one curve, unload according to another, and loop around in frequent transition between the two. n Representing this behavior is not easily done directly with a standard modeling element in MSC.ADAMS. But, you can model it using SPLINE data referenced inside of step functions.

17 S6-17 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation HYSTERESIS MODELING (CONT.) n Example n Detail Description of this Hysteresis Function u WZ is the independent variable of the STEP function, which is used to switch back and forth between the two curves, load_curve and unload_curve, so that when the rotational spring changes direction, it does not instantly jump to another curve, causing a discontinuity. The rate at which it changes from one curve to another is controlled by -d and d.

18 S6-18 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation HYSTERESIS MODELING (CONT.) n Detail Description of this Hysteresis Function (Cont.) u The spring behavior is controlled by Q (calculated by the VARSUB) as the independent variable of the splines, and torque as the dependent variable in AKISPL. In many cases, the torque may reach a maximum point, at which Q continues to increase, but the torque remains constant. This should be controlled by a VARSUB, so that the Q fed to this AKISPL function will not go past the maximum value, and will reset when the direction reverses. n To Summarize: u The torque is dependent on the angular displacement. u The step function is used to transfer between the loading and unloading curves. u A VARSUB is used to reset the angle when the maximum angle is reached and when changing directions.

19 S6-19 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation SHF FUNCTION n The motion in this workshop is driven by an SHF function. The SHF function evaluates a simple harmonic function. The following equation defines SHF: SHF = a*sin(*(x-x0)-phi)+b n Format u SHF (x, x0, a, w, phi, b)

20 S6-20 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation SHF FUNCTION (CONT.) n Arguments

21 S6-21 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation SHF FUNCTION (CONT.) n Examples u This MOTION statement uses SHF to define the harmonic function: SHF = 5+PI*sin(360D*(time-25D)) u The motion has a shift of 25 degrees, has an amplitude of PI, has a frequency of 1 cycle (360D) per time unit, has zero phase shift, and has an average value of displacement of 5 units.

22 S6-22 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation REQUESTS n Output requests, like measures, are useful ways to obtain the data from specific output channels. Their advantages include: u Obtaining output data in reference frames other than GCS. u Using comments and labels. u Written out to a separate output file (.req) n Types of Requests u Force u Displacement u Velocity u Acceleration

23 S6-23 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation REQUESTS (CONT.) n Types of Requests (Cont.) u User-Defined Functions (Do not use F1 or F5; they are placeholders for magnitude calculations) Note: ADAMS/View can use F1 and F5, but these will not be valid upon.reg file retrieval. u Subroutine (REQSUB)

24 S6-24 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation


Download ppt "S6-1 ADM703, Section 6, August 2005 Copyright  2005 MSC.Software Corporation SECTION 6 OVER-RUNNING PULLEY."

Similar presentations


Ads by Google