找回密码
 注册
Simdroid-非首页
查看: 83|回复: 0

[基础知识] adams/solver帮助里发现的资料,感觉挺有用的

[复制链接]
发表于 2014-2-18 10:24:25 | 显示全部楼层 |阅读模式 来自 上海
Discontinuities
•         Discontinuities are the root cause of most simulation problems. Avoid them.
•         Examples of discontinuous functions: MIN, MAX, DIM, MOD, IF.
•         Discontinuous displacements and velocities cause corrector and integrator failures.
•         Discontinuous accelerations cause integration failures (requires infinite force).
•         Discontinuous forces cause corrector failures.
Units
•         Widely separated magnitudes in a matrix can cause numeric difficulties (conditioning problems).
•         Be careful when using inconsistent units.
•         Choose units so that model states (displacements and velocities) are reasonable values. For example, choosing "mm" for displacements of a rocket which travels thousands of kilometers is a poor choice.
•         Choose units so that stiffness values are not very large.
•         Choose time units appropriate to the phenomena being studied.
Dummy Parts
•         A dummy part is any part with zero or very small mass.
•         Sometimes dummy parts are useful; but generally, avoid using them.
•         Avoid connecting dummy parts with compliant connections (BEAMs, BUSHINGs, and so on). If the mass of the dummy part = 0, then the acceleration, a = F/m = F/0 = infinite. Even if the mass is very small, a = F/m = very large number. Therefore, small masses/moments of inertia introduce high frequencies into the system, which is usually undesirable since it has detrimental effects on the solver.
•         If you must use dummy parts, then constrain all DOF, since with no DOF for the dummy part, a=F/m is not an issue.
•         Dummy parts should be massless; 0.0 (or unassigned), not 1e-20.
Joints
•         Avoid using FIXED joints. A FIXED joint adds equations to your system that aren’t necessary when two or more parts can be combined or merged into a single part.
•         Avoid using many FIXED joints to lock parts to ground. Enormous torques may develop due to large moment arms.
•         If you must lock something to ground with a FIXED joint, consider assigning it a very large mass/inertia so that it can behave like ground, or consider merging it to ground (for more information, see Simcompanion Knowledge Base Article KB8013580).

•         When possible, create a FIXED joint at the center-of-mass (cm) of the lightest part, to minimize the reaction forces/torques.
•         Avoid redundant constraints. Adams eliminates them by looking at pivots in a constraint Jacobian, which are in no particular order. As a result, the physical meaning may be disregarded.
Motions
•         Ideally, motions should impose continuous accelerations.
•         Avoid using splines in a motion (function based on time is ideal).
•         If you must use splines as motion, use their velocity form (see Simcompanion Knowledge Base Article KB8015319 for more information). This is true for both GSTIFF and SI2_GSTIFF integrators.

•         Avoid using motion as a function of variables (that is, states).
•         In general, cubic splines (CUBSPL) may work better on motions than the Akima. The derivatives of the cubic are better than those of the Akima, so they’re more useful in forces than in motions (see Simcompanion Knowledge Base Article KB8013252 for more information).

Forces
•         If using data, approximate forces with smooth, continuous splines.
•         Don’t define a spring damper with spring length=0.
•         Make sure velocities are correct in force expressions. For example, in this damping function:
-c*vx(i,j,j )
the 4th term is missing --^
The 4th term defines the reference frame in which the time derivatives are taken, and this may be important.
Contacts
•         Contacts should penetrate before statics. Models with impacts should have slight penetration in model position when doing statics.
•         All tires should penetrate the road. Models with tires should have slight penetration in model position when doing statics. For example, if only rear tires penetrate, the static position could be a handstand.
•         Contact properties are model dependent. See the CONTACT statement, and Simcompanion Knowledge Base Article KB8015613 for a starting point. Adjustment of the properties to match experimental results is expected.
Subroutines
•         If possible, use an Adams function over a subroutine.
•         If you receive errors in your model, eliminate user subroutines so they’re not the source of the errors.
•         Verify that your compiler is compatible with the current version of Adams.
Simulation/Integrators
•         Perform initial static first, when applicable. Note that a static solution may be more difficult to find than a dynamic solution. If you care only about the dynamic solution and cannot find static equilibrium, then either increase your error tolerance or forget about the static simulation.
•         15-20 static iterations is suspect.
•         If GSTIFF won't start, it’s most likely a problem with initial conditions.
•         Don't let the integrator step over important events. Short duration events like an impulse can be captured by setting maximum time step, HMAX, to value less than impulse width.
•         Use HMAX so that Adams/Solver acts as a fixed-step integrator.
•         Spikes in results output may come from changes in step size. Reduce HMAX or try setting HINIT=HMAX. Run with SI2 instead.
•         Adams/Solver uses a body 3-1-3 rotation sequence (psi, theta, phi). Theta=0d (or 180d) is bad (Euler singularity). If the z-axis of part cm is parallel to z-axis of ground, there will be a Euler singularity.
•         For Euler Singularities, Theta=90D will have good pivots. Models will run better, and won't act like there is a discontinuity.
•         Truncation (or round-off) errors accumulate when you let MAXIT go larger than 6. The theory of GSTIFF says 2-3 iterations is desirable; it breaks down if it uses more than 4 or 5.
Debugging
•         Try to understand mechanism from a physical standpoint.
•         Use building blocks of concepts that worked in the past. Add enhancements to the model using crawl-walk-run approach.
•         Test with a small model to isolate problems.
•         Have graphics for visualizing motion.
•         Look at damping terms as a source of errors. Incorrect sign and missing terms are typical mistakes.
•         Turn on DEBUG/EPRINT.
•         Turn gravity off, since it can accentuate modeling errors.
•         Models should have no warnings during simulation (for example, redundant constraints, splines, and so on).
•         Understand numerical methods (for example, understand your integrator).
•         Look for results which become very large in magnitude; this could indicate a discontinuity.
Miscellaneous Tips
•         Avoid very large numbers and very small numbers. Be wary when your model contains numbers like 1e+23 or 1e-20.
•         Choose the right set of units. Length units of millimeters may not be appropriate if you’re modeling an aircraft landing on runway.
•         Use a reasonable time scale. If duration of dynamic event time is short, consider using milliseconds units.
•         Extend the range of spline data beyond the range of need.
•         Don’t write function expressions that can potentially divide by zero (for example, use the MAX function to prevent this: function =8/MAX(0.01,your_function).
•         Add damping so frequencies can dissipate.
•         Avoid very high damping rates. The high damping cause a rapid decay in response, which is difficult for an integrator to follow.
•         Avoid toggles, dual solutions, or bifurcations.
•         Don’t use 1.0 for the exponent in IMPACT or BISTOP functions. This creates a “corner” (that is, a non-smooth function). Instead, try 2.2 for the exponent.
您需要登录后才可以回帖 登录 | 注册

本版积分规则

Simapps系列直播

Archiver|小黑屋|联系我们|仿真互动网 ( 京ICP备15048925号-7 )

GMT+8, 2024-11-2 13:33 , Processed in 0.025591 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.5 Licensed

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表