ok and such a drawing can be easy extracted from any CAD system, however I think a
simple parametrisation seams easier to use and implement. One maybe want to play with parameters
and does not have a vector graphics available. For optimisation generating these files on-line could be
problematic.
I propose to first use a parametric form and in a second step read in graphics.
A first version of a standalone parser, which only works if format including whitespaces is followed strictly, is attached. It's currently implented using regex. It would be nice if it used boost spirit. But currently haven't time to (re-)read tutorials and documentation.test.cpp
Hey looks great. How do you indent to implement this? A slit/pepper pot etc. has such a string as an attribute? We then need also need a efficient function for masking out the particles.
My idea is to compute for every rectangle and ellipse the bounding box. If a particle is inside the bounding box then we have to apply a coordinate tansformation to see whether the particle is inside.
A pepperpot with round holes (diameter 0.1 mm, distance in both x and y 0.2 mm [sorry, have no idea whether these numbers are realistic]) will look like this
repeat( // duplicate row of ellipses 100 times and // distribute copies evenly in y-direction with distance = 0.2 mm repeat( // duplicate ellipse 100 times and // distribute copies evenly in x-direction with distance = 0.2 mm translate( // shift ellipse to lower left corner ellipse( // define ellipse with major = minor = 0.1 mm, center = (0, 0) 0.0001, 0.0001 ), -0.01, -0.01 ), 100, 0.0002, 0.0 ), 100, 0.0, 0.0002 )
Currently I neglect the information of the periodicity that is introduced when using repeat(...), see in the method apply in the class Repeat. I think the query whether a particle is stopped could be optimized if we would store this information and use a modulo operation to map to one period length. For a single repeat this is easy to implement, but what about multiple nested repeats like in the example above? Does anyone have an information?
Maybe you need to explicitly say that the structure is periodic in a particular dimension.
repeat( // duplicate row of ellipses 100 times and // distribute copies evenly in y-direction with distance = 0.2 mm repeat( // duplicate ellipse 100 times and // distribute copies evenly in x-direction with distance = 0.2 mm translate( // shift ellipse to lower left corner ellipse( // define ellipse with major = minor = 0.1 mm, center = (0, 0) 0.0001, 0.0001 ), -0.01, -0.01 ), 100, 0.0002, 0.0 ), 100, is-periodic, 0.0, 0.0002 )
Just pushed a new branch ('flexiblecollimator') to the repository. Multi-slit / pepperpot is implemented but needs lot of work to improve performance. Currently we have to check for every hole and every time step whether a particle passes the hole. In the example above there are 10000 holes.
This should be improved for cases where repeat is used
Give me some more time. As written, I pushed into a new branch.
I created a new element ('FLEXIBLECOLLIMATOR', suggestions for a better name are welcome), the description of the arrangement of holes can be provided in a file ('FNAME') and the following commands are supported
I didn't replace the collimator element but created a new element. I think when using many holes the code can only be fast if we can map the repated holes to the original one and check once whether a particle passes (or not) instead of e.g. 10000 times.
There are algorithms that use trees, i.e. octree (3D) or quadtree (2D), to check collisions. However, I'm not an expert on this. Here's also a discussion mentioning this
ii. from the algorithmic geometry description create a 2D (3D) discretisation
of the material (copper of pepper pot) with M elements (triangles for example).
iii. depending on the accuracy create a tree T of depth d, representing the geometry
iv. N = Ippl::getLocalNum()
for i = 1 to N
isDead = isInside(R(i),T)
Quadtree (or just a grid) came also to my mind but we have the explicit information that we repeat stuff and I'm sure that we can have even better performance if we use this information. I'll try this first and use quadtree as backup solution.
I see that for a regular object such as a pepper pot but what if someone adds
changing hole radii or mixes ellipses with circles? I am sure users will do such
things if they can.
Just ran some tests with one million particles and varying number of equidistant holes (pepperpot) once using a naive approach and once with quadtrees.
For the generation of particles (using rng) and writing approximately half a million particles to disk 0.8 seconds are required. Thus instead of 2.974 seconds the quadtree alone requires approximately 2.2 seconds to sort out those particles that pass (for one million particles, 10201 holes, one core).
It's advantageous to use an odd number of repetitions. A grid of 101 x 101 circles (100 x 100 repetitions), one million particles requires 3.1 seconds to test. A grid of 102 x 102 circles, one million particles only 1.8 seconds. The reason is that less circles are in the coarsest level of the quadtree if the number of circles in each direction is even.
Here a comparison between 20 x 20 repetitions and 21 x 21 repetitions.
The first has 20 repetitions both in x- and y-direction. The 21 circles at x = -0.024 and the 21 circles at y = -0.024 (one is counted twice) are assigned to the coarsest level.
In the case of 21 repetitions in each direction no circle is in the coarsest level.