Introduction to Bash and Python¶
Terminal¶
The terminal is a shell designed to let us interact with the computer and its filing system with a basic set of commands:
user@machine:~$ # user operating at machine, in the directory ~ (= user's home directory)
user@machine:~$ ls . # list contents of the current directory
user@machine:~$ ls foo # list contents of directory foo, relative to the dcurrent directory ~ (= ls ~/foo = ls /home/user/foo)
user@machine:~$ ls /tmp # list contents of /tmp
user@machine:~$ cd foo # change directory to foo
user@machine:~/foo$ ls ~ # list home directory (= ls /home/user)
user@machine:~/foo$ cd bar # change to bar (= cd ~/foo/bar)
user@machine:~/foo/bar$ cd ../../foo2 # go to the parent directory twice, then to foo2 (cd ~/foo/bar/../../foo2 = cd ~/foo2 = cd /home/user/foo2)
user@machine:~/foo2$ cd # go to the home directory (= ls ~ = ls /home/user)
user@machine:~$
Keys¶
Useful keys on the command-line are:
<tab> |
show possible completions of what is being typed (use abundantly!) |
^C (=Ctrl+C) |
delete current line |
^D |
exit the shell |
↑↓ |
move up and down in the command history |
^C |
interrupt currently running program |
^\ |
kill currently running program |
Shift-PgUp |
scroll the screen up (show past output) |
Shift-PgDown |
scroll the screen down (show future output; works only on quantum computers) |
Starting yade¶
If yade is installed on the machine, it can be (roughly speaking) run as any other program; without any arguments, it runs in the “dialog mode”, where a command-line is presented:
user@machine:~$ yade
Welcome to Yade 2022.01a
TCP python prompt on localhost:9002, auth cookie `adcusk'
XMLRPC info provider on http://localhost:21002
[[ ^L clears screen, ^U kills line. F12 controller, F11 3d view, F10 both, F9 generator, F8 plot. ]]
Yade [1]: #### hit ^D to exit
Do you really want to exit ([y]/n)?
Yade: normal exit.
The command-line is in fact python
, enriched with some yade-specific features. (Pure python interpreter can be run with python
or ipython
commands).
Instead of typing commands one-by-one on the command line, they can be be written in a file (with the .py extension) and given as argument to Yade:
user@machine:~$ yade simulation.py
For a complete help, see man yade
Exercises
Open the terminal, navigate to your home directory
Create a new empty file and save it in
~/first.py
Change directory to
/tmp
; delete the file~/first.py
Run program
xeyes
Look at the help of Yade.
Look at the manual page of Yade
Run Yade, exit and run it again.
Yade basics¶
Yade objects are constructed in the following manner (this process is also called “instantiation”, since we create concrete instances of abstract classes: one individual sphere is an instance of the abstract Sphere, like Socrates is an instance of “man”):
Yade [1]: Sphere # try also Sphere?
Out[1]: yade.wrapper.Sphere
Yade [2]: s=Sphere() # create a Sphere, without specifying any attributes
Yade [3]: s.radius # 'nan' is a special value meaning "not a number" (i.e. not defined)
Out[3]: nan
Yade [4]: s.radius=2 # set radius of an existing object
Yade [5]: s.radius
Out[5]: 2.0
Yade [6]: ss=Sphere(radius=3) # create Sphere, giving radius directly
Yade [7]: s.radius, ss.radius # also try typing s.<tab> to see defined attributes
Out[7]: (2.0, 3.0)
Particles¶
Particles are the “data” component of simulation; they are the objects that will undergo some processes, though do not define those processes yet.
Singles¶
There is a number of pre-defined functions to create particles of certain type; in order to create a sphere, one has to (see the source of utils.sphere for instance):
Create Body
Set Body.shape to be an instance of Sphere with some given radius
Set Body.material (last-defined material is used, otherwise a default material is created)
Set position and orientation in Body.state, compute mass and moment of inertia based on Material and Shape
In order to avoid such tasks, shorthand functions are defined in the utils module; to mention a few of them, they are utils.sphere, utils.facet, utils.wall.
Yade [8]: s=utils.sphere((0,0,0),radius=1) # create sphere particle centered at (0,0,0) with radius=1
Yade [9]: s.shape # s.shape describes the geometry of the particle
Out[9]: <Sphere instance at 0x5ef0d90>
Yade [10]: s.shape.radius # we already know the Sphere class
Out[10]: 1.0
Yade [11]: s.state.mass, s.state.inertia # inertia is computed from density and geometry
Out[11]:
(4188.790204786391,
Vector3(1675.516081914556253,1675.516081914556253,1675.516081914556253))
Yade [12]: s.state.pos # position is the one we prescribed
Out[12]: Vector3(0,0,0)
Yade [13]: s2=utils.sphere((-2,0,0),radius=1,fixed=True) # explanation below
In the last example, the particle was fixed in space by the fixed=True
parameter to utils.sphere; such a particle will not move, creating a primitive boundary condition.
A particle object is not yet part of the simulation; in order to do so, a special function O.bodies.append (also see Omega::bodies and Scene) is called:
Yade [14]: O.bodies.append(s) # adds particle s to the simulation; returns id of the particle(s) added
Out[14]: 0
Packs¶
There are functions to generate a specific arrangement of particles in the pack module; for instance, cloud (random loose packing) of spheres can be generated with the pack.SpherePack class:
Yade [15]: from yade import pack
Yade [16]: sp=pack.SpherePack() # create an empty cloud; SpherePack contains only geometrical information
Yade [17]: sp.makeCloud((1,1,1),(2,2,2),rMean=.2) # put spheres with defined radius inside box given by corners (1,1,1) and (2,2,2)
Out[17]: 6
Yade [18]: for c,r in sp: print(c,r) # print center and radius of all particles (SpherePack is a sequence which can be iterated over)
....:
Vector3(1.351210202403189786,1.684558263739352135,1.208348319118069725) 0.2
Vector3(1.796592943159432076,1.443116848081577697,1.782478671920064262) 0.2
Vector3(1.344933830065217606,1.500005823326058696,1.613128893896287552) 0.2
Vector3(1.799213047695476186,1.317455673130210059,1.236175890558382839) 0.2
Vector3(1.687501168901458959,1.77391650259991307,1.468020278398068257) 0.2
Vector3(1.393693774056127044,1.216546713386051248,1.328777038400033472) 0.2
Yade [19]: sp.toSimulation() # create particles and add them to the simulation
Out[19]: [1, 2, 3, 4, 5, 6]
Boundaries¶
utils.facet (triangle Facet) and utils.wall (infinite axes-aligned plane Wall) geometries are typically used to define boundaries. For instance, a “floor” for the simulation can be created like this:
Yade [20]: O.bodies.append(utils.wall(-1,axis=2))
Out[20]: 7
There are other conveinence functions (like utils.facetBox for creating closed or open rectangular box, or family of ymport functions)
Look inside¶
The simulation can be inspected in several ways. All data can be accessed from python directly:
Yade [21]: len(O.bodies)
Out[21]: 8
Yade [22]: O.bodies[10].shape.radius # radius of body #10 (will give error if not sphere, since only spheres have radius defined)
[0;31m---------------------------------------------------------------------------[0m
[0;31mIndexError[0m Traceback (most recent call last)
Cell [0;32mIn[22], line 1[0m
[0;32m----> 1[0m [43mO[49m[38;5;241;43m.[39;49m[43mbodies[49m[43m[[49m[38;5;241;43m10[39;49m[43m][49m[38;5;241m.[39mshape[38;5;241m.[39mradius [38;5;66;03m# radius of body #10 (will give error if not sphere, since only spheres have radius defined)[39;00m
[0;31mIndexError[0m: Body id out of range.
Yade [23]: O.bodies[12].state.pos # position of body #12
[0;31m---------------------------------------------------------------------------[0m
[0;31mIndexError[0m Traceback (most recent call last)
Cell [0;32mIn[23], line 1[0m
[0;32m----> 1[0m [43mO[49m[38;5;241;43m.[39;49m[43mbodies[49m[43m[[49m[38;5;241;43m12[39;49m[43m][49m[38;5;241m.[39mstate[38;5;241m.[39mpos [38;5;66;03m# position of body #12[39;00m
[0;31mIndexError[0m: Body id out of range.
Besides that, Yade says this at startup (the line preceding the command-line):
[[ ^L clears screen, ^U kills line. F12 controller, F11 3d view, F10 both, F9 generator, F8 plot. ]]
- Controller
Pressing
F12
brings up a window for controlling the simulation. Although typically no human intervention is done in large simulations (which run “headless”, without any graphical interaction), it can be handy in small examples. There are basic information on the simulation (will be used later).- 3d view
The 3d view can be opened with F11 (or by clicking on button in the Controller – see below). There is a number of keyboard shortcuts to manipulate it (press
h
to get basic help), and it can be moved, rotated and zoomed using mouse. Display-related settings can be set in the “Display” tab of the controller (such as whether particles are drawn).- Inspector
Inspector is opened by clicking on the appropriate button in the Controller. It shows (and updates) internal data of the current simulation. In particular, one can have a look at engines, particles (Bodies) and interactions (Interactions). Clicking at each of the attribute names links to the appropriate section in the documentation.
Engines¶
Engines define processes undertaken by particles. As we know from the theoretical introduction, the sequence of engines is called simulation loop. Let us define a simple interaction loop:
Yade [24]: O.engines=[ # newlines and indentations are not important until the brace is closed
....: ForceResetter(),
....: InsertionSortCollider([Bo1_Sphere_Aabb(),Bo1_Wall_Aabb()]),
....: InteractionLoop( # dtto for the parenthesis here
....: [Ig2_Sphere_Sphere_ScGeom(),Ig2_Wall_Sphere_ScGeom()],
....: [Ip2_FrictMat_FrictMat_FrictPhys()],
....: [Law2_ScGeom_FrictPhys_CundallStrack()]
....: ),
....: NewtonIntegrator(damping=.2,label='newtonCustomLabel') # define a label newtonCustomLabel under which we can access this engine easily
....: ]
....:
Yade [25]: O.engines
Out[25]:
[<ForceResetter instance at 0x6836090>,
<InsertionSortCollider instance at 0x6243bd0>,
<InteractionLoop instance at 0x684a070>,
<NewtonIntegrator instance at 0x626d1e0>]
Yade [26]: O.engines[-1]==newtonCustomLabel # is it the same object?
Out[26]: True
Yade [27]: newtonCustomLabel.damping
Out[27]: 0.2
Instead of typing everything into the command-line, one can describe simulation in a file (script) and then run yade with that file as an argument. We will therefore no longer show the command-line unless necessary; instead, only the script part will be shown. Like this:
O.engines=[ # newlines and indentations are not important until the brace is closed
ForceResetter(),
InsertionSortCollider([Bo1_Sphere_Aabb(),Bo1_Wall_Aabb()]),
InteractionLoop( # dtto for the parenthesis here
[Ig2_Sphere_Sphere_ScGeom(),Ig2_Wall_Sphere_ScGeom()],
[Ip2_FrictMat_FrictMat_FrictPhys()],
[Law2_ScGeom_FrictPhys_CundallStrack()]
),
GravityEngine(gravity=(0,0,-9.81)), # 9.81 is the gravity acceleration, and we say that
NewtonIntegrator(damping=.2,label='newtonCustomLabel') # define a label under which we can access this engine easily
]
Besides engines being run, it is likewise important to define how often they will run. Some engines can run only sometimes (we will see this later), while most of them will run always; the time between two successive runs of engines is timestep (\(\Dt\)). There is a mathematical limit on the timestep value, called critical timestep, which is computed from properties of particles. Since there is a function for that, we can just set timestep using utils.PWaveTimeStep:
O.dt=utils.PWaveTimeStep()
Each time when the simulation loop finishes, time O.time
is advanced by the timestep O.dt
:
Yade [28]: O.dt=0.01
Yade [29]: O.time
Out[29]: 0.0
Yade [30]: O.step()
Yade [31]: O.time
Out[31]: 0.01
For experimenting with a single simulations, it is handy to save it to memory; this can be achieved, once everything is defined, with:
O.saveTmp()