Code Monkey home page Code Monkey logo

aggregate_generator's Introduction

"aggregate_gen" -- An efficient C++ code for generating fractal cluster of spheres


History:

Oct 23, 2019:

  • Change the output result: output the aggregate files of all levels at once.
  • Change the output result: the user can specify the number of aggreagtes produced by a single execution (using different random seeds).
  • Improve reliability: Internal tests algorithm for non-overlapping and attached conditions are improved.

Aug 14, 2018:

  • Bugfix: An algorithm error causing the partial overlapping between some spherules has been fixed.
  • Improve reliability: Internal tests of non-overlapping and attached conditions are added.
  • Improve performance: The MonteCarlo search of an attached-and-nonoverlapped aggregate configuration is parallelized using openmp.

Oct 28, 2016:

  • Initial release.

General Descriptions:

  • A C++ code for calculating the geometrical coordinate of fractal-like cluster of spheres, using the tunable cluster-cluster aggregation (CCA) method.
  • A user is allowed to change the geometrical parameters: the number of spherules N, the fractal prefactor kf, and the fractal dimension Df.
  • The excecusion speed automatically improves with the available number of CPU cores.

Prerequisites:

  1. A C++ compiler supporting C++17 and openmp. The author tested the code using the g++ version 7.3.0.
  2. A C++ library for linear algebra "Eigen" with version 3.3.5 or newer. The author tested the code using the Eigen version 3.3.5.
  3. An automated compilation and build system "CMake". The author tested the code using the CMake version 3.10.2.

Usage:

  1. Modify the parameters in "CMakeLists.txt" according to your environment. In particular,please change the "CMAKE_CXX_COMPILER" (= C++ complier) and "include_directories" (= absolute path of Eigen folder).

  2. Compilation and linking are performed by

            cmake .
            make
  1. Run the executable by
           ./aggregate_gen_main [parameter_list]
    [parameter_list] == num_sph_SA levels kf Df num_agg

    num_sph_SA : Number of spherules in initial clusters in the 1st level of cluster-cluster aggregation (4).
    levels : Number of hierarchical levels in cluster-cluster aggregation (10).
    kf : Fractal prefactor (1.0).
    Df : Fractal dimension (2.5).
    num_agg : Number of aggregates generated using different random seeds.

    If you skip the [parameter_list], the code uses the default values in the parenthesis. Total number of spherules is *N* = num_sph_SA*2<sup>levels</sup>.

Output data

The result is written in a text file "agg???_N???_kf???_Df???.out", where the four strings ??? indicate the aggregate id number (0 ~ num_agg), total number of spherules N, the fractal prefactor kf, and the fractal dimension Df, respectively.

In this file, each row shows the cartesian coordinate "x y z" of each spherules relative to the centroid of cluster, where the length is scaled such that spherule radius is 1.0.

Accuracy

Maximum error of the center-to-center distance between two-spherules in contact never exceeds 0.005 (typically < 0.001). You can change the tolerance by changing the parameter "tol" defined in "aggregate_gen_main.cpp"

Allowed parameter range

Under the constraint of the fractal-scaling law, finding of an attached-and-nonoverlapped aggregate configuration could be unrealistic for compact (i.e., closely-packed) aggregates. To avoid the infinite looping of the search algorithm, please choose the geometric parameters (kf,Df) to be kf+Df < ~3.5.

Random number seed

If necessary, random number seed can be changed at line14-15 of "aggregate_gen_main.cpp".

    (line 14) default_random_engine re(random_device{}()); // random seed
    (line 15) //default_random_engine re; // fixed seed

By default, the seed of random_number sequence is automatically changed in each execution (using random_device{}()). Fixed seed will be used if you uncomment 15th line and comment out the 14th line.

Theory

This code uses the mathematical theory described in "Filippov, A.V. et al. 2000, Journal of Colloid and Interface Science 229, 261โ€“273".

Contact

[email protected], or, [email protected]

How to Cite

Moteki N. "aggregate_gen" -- An efficient C++ code for generating fractal cluster of spheres, nmoteki/aggregate_generator (v1.1), GitHub repository, Doi:10.5281/zenodo.3567236. 2019.

Licence

Please see LICENSE.txt

aggregate_generator's People

Contributors

nobuhiromoteki avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.