← Back to team overview

yade-dev team mailing list archive

Re: Questions Interaction

 

It should be ok. Interactions will be deleted only if there is no physical interation, disregarding geometry. enlargeFactor will (should) not affect the result. Your interaction law must contain requestDelete(i) to really delete non interacting pairs.

Bruno




luc scholtes a écrit :


2010/2/19 luc scholtes <lscholtes63@xxxxxxxxx <mailto:lscholtes63@xxxxxxxxx>>


    BTW, the idea was to set this larger interaction distance only for
    the first iterations in order to have a maximum number of cohesive
    links at the initiation of my simulations (within the cohesive
    range of my interaction law).


I have already found the answer for this part (...) It was in uniax.py ;)

For those who are interested, here is the procedure (correct me if I am wrong):

1 - labellize the bound dispatcher and interaction geometry dispatcher
BoundDispatcher([Bo1_Sphere_Aabb(),label='is2aabb'),
InteractionDispatchers( [Ig2_Sphere_Sphere_ScGeom(),label='ss2d3dg'])

2 - set the "size" of the interaction detector
is2aabb['aabbEnlargeFactor']=2.
ss2d3dg['distFactor']=2.

3 - run for the number of desired iter (1 should be sufficient)
O.run(1)
or
O.step()

4 - readjust the "size" of the interaction detector (-1 gives it the default value)
is2aabb['aabbEnlargeFactor']=-1.
ss2d3dg['distFactor']=-1.

5 - run your simulation
O.run(XXX)


------------------------------------------------------------------------

_______________________________________________
Mailing list: https://launchpad.net/~yade-dev
Post to     : yade-dev@xxxxxxxxxxxxxxxxxxx
Unsubscribe : https://launchpad.net/~yade-dev
More help   : https://help.launchpad.net/ListHelp


--
_______________
Bruno Chareyre
Associate Professor
Grenoble INP
Lab. 3SR
BP 53 - 38041, Grenoble cedex 9 - France
Tél : 33 4 56 52 86 21
Fax : 33 4 76 82 70 43
________________




References