<div dir="ltr"><div><div>Hi,<br><br></div>  I'm hoping to have active particles (or fields?) that define layers within a plate, with assigned densities that affect the model. In CitcomS, I model bouyant basaltic crust, harzburgite and dense eclogite layers that move with the subducting plate and affect its total bouyancy over periods of >30 Ma. I hope that helps.<br>
<br></div> - Katrina Arredondo<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Oct 15, 2013 at 9:27 AM, Eric Heien <span dir="ltr"><<a href="mailto:emheien@ucdavis.edu" target="_blank">emheien@ucdavis.edu</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im"><br>
On Oct 14, 2013, at 1:29 PM, Wolfgang Bangerth wrote:<br>
<br>
>> If you have N particles and processor i covers a fraction V_i of the<br>
>> total domain volume, then processor i creates N*V_i particles.  This<br>
>> creates a reasonably random looking distribution, but statistically<br>
>> it's highly non-random because each subdomain has a set number of<br>
>> particles.<br>
><br>
> That's true, but I think it's not too much of a problem. After all, we don't use these particles for random integration or anything else that requires truly statistically distributed particles. Basically, we want to trace where particles come from and where they go, and so the trajectory is more important than the details of their initial distribution. At least, that's my view. Do I miss something?<br>

<br>
</div>I think we'd need the scientists to weigh in on this.  For tracking trajectories I agree having a true random distribution isn't too important.  However, many users want to represent material properties with particles where a random distribution may be more important.<br>

<div class="im"><br>
>> That sounds fine, as long as we make sure the user knows.  Actually<br>
>> the original idea of generating particles on a single processor and<br>
>> sending them to other processors will fix all these problems,<br>
>> including the random seed issue, as well as ensuring results are<br>
>> identical regardless of the number of processors used.  I might try<br>
>> coding this up soon to see how complex it is, and with the Generator<br>
>> class it will be easy to keep this separate from other<br>
>> implementations.<br>
><br>
> Would this scale? You'd either need to send particles in lots of small packages, or store a lot of particles on a single processor...<br>
<br>
</div>Good question.  I did a few tests on Stampede and it looks like it will scale reasonably well.  If we assume 1e9 particles with id+XYZ (4 doubles = 32 bytes) per particle, we need to broadcast ~30 GB from the root process in many small packages.<br>

<br>
Number of tasks= 256 My rank= 0<br>
Bcast 131072 doubles (1.000000 MB) takes 0.001406 seconds. 711.060478 MB/sec<br>
Bcast 262144 doubles (2.000000 MB) takes 0.003084 seconds. 648.465996 MB/sec<br>
Bcast 524288 doubles (4.000000 MB) takes 0.007491 seconds. 533.962737 MB/sec<br>
<br>
Number of tasks= 1024 My rank= 0<br>
Bcast 131072 doubles (1.000000 MB) takes 0.001876 seconds. 533.071689 MB/sec<br>
Bcast 262144 doubles (2.000000 MB) takes 0.003831 seconds. 522.028270 MB/sec<br>
Bcast 524288 doubles (4.000000 MB) takes 0.008793 seconds. 454.887641 MB/sec<br>
<br>
Number of tasks= 4096 My rank= 0<br>
Bcast 131072 doubles (1.000000 MB) takes 0.002373 seconds. 421.451682 MB/sec<br>
Bcast 262144 doubles (2.000000 MB) takes 0.004993 seconds. 400.559061 MB/sec<br>
Bcast 524288 doubles (4.000000 MB) takes 0.011756 seconds. 340.251219 MB/sec<br>
<br>
Each of these is the average of 100 broadcasts.  At the kind of transfer rates we see above, sending 30GB of particle data would take a minute or two, which would occur once during initialization.  This can be improved further by intelligently sending particles only to processes that have a chance of containing them (track bounding boxes at the root process).  And transmission likely won't be the slowest part, but rather determining if a particle is in a particular cell, which has to occur no matter what method we use.<br>

<br>
I'll look in the literature to see if there's a better way of doing this sort of thing but this seems reasonable from what I can tell.<br>
<span class="HOEnZb"><font color="#888888"><br>
-Eric<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
_______________________________________________<br>
Aspect-devel mailing list<br>
<a href="mailto:Aspect-devel@geodynamics.org">Aspect-devel@geodynamics.org</a><br>
<a href="http://geodynamics.org/cgi-bin/mailman/listinfo/aspect-devel" target="_blank">http://geodynamics.org/cgi-bin/mailman/listinfo/aspect-devel</a><br>
</div></div></blockquote></div><br><br clear="all"><br>-- <br><br><div>Katrina Arredondo<br><span><span>Ph</span>.D. Candidate</span><br>Geodynamics/Subduction Zones<br>University of California, Davis<br>
Department of Geology<br>
One Shield Avenue, Davis CA 95616<br>
<br></div>
</div>