Changing properties of spheres causing problems.

Asked by Emon Mitra

In the gravity deposition followed by uniaxial compression example if I change the physical properties of the sphere using the following code:

idAlumina=O.materials.append(FrictMat(density=3.95e3,young=30e9,poisson=.3,frictionAngle=.5236))

The gravity deposition and uniaxial compression both get really slow. If I use default values, the compression typically starts in 8000 iterations or less but with these properties the compression doesn't start till at least 80000 iterations have passed. Does anybody have any idea why this is happening and how to solve it?

Question information

Language:
English Edit question
Status:
Solved
For:
Yade Edit question
Assignee:
No assignee Edit question
Solved by:
Jan Stránský
Solved:
Last query:
Last reply:
Revision history for this message
Best Jan Stránský (honzik) said :
#1

Hi Emon,
check time step (O.dt) in both cases ;-) time step depends on material
stiffness and since stiffness ratio in your cases (default and proposed by
you) is 300, your time steps should be in ratio approx. 17
(sqrt(stiffness)) resulting in what you see..
cheers
Jan

2014-05-02 4:47 GMT+02:00 Emon Mitra <email address hidden>:

> New question #248023 on Yade:
> https://answers.launchpad.net/yade/+question/248023
>
> In the gravity deposition followed by uniaxial compression example if I
> change the physical properties of the sphere using the following code:
>
>
> idAlumina=O.materials.append(FrictMat(density=3.95e3,young=30e9,poisson=.3,frictionAngle=.5236))
>
> The gravity deposition and uniaxial compression both get really slow. If I
> use default values, the compression typically starts in 8000 iterations or
> less but with these properties the compression doesn't start till at least
> 80000 iterations have passed. Does anybody have any idea why this is
> happening and how to solve it?
>
> --
> You received this question notification because you are a member of
> yade-users, which is an answer contact for Yade.
>
> _______________________________________________
> Mailing list: https://launchpad.net/~yade-users
> Post to : <email address hidden>
> Unsubscribe : https://launchpad.net/~yade-users
> More help : https://help.launchpad.net/ListHelp
>

Revision history for this message
Emon Mitra (emon-mitra) said :
#2

Thanks Jan Stránský, that solved my question.