Chpack

Introduction

Chpack is a fast Julia set of in-core solvers to estimate effective parameters of material samples from raw images using Pixel-Based Finite Element Method (PFEM), with a focus on the use of ordinary personal computers. The software was implemented in Julia as long as the resulting code is as simple as it would be if it were written using a scripting language (such as Python or Matlab/Octave). On the other hand, as Julia takes advantage of a just-in-time (JIT) technology, the codes can also be as efficient as codes written using compiled programming languages (such as in C/C++ or Fortran).

The conventional Finite Element Method in the image-based numerical analysis usually leads to an extensive system of equations that requires a substantial amount of memory or out-of-core methods to be solved. In that sense, Chpack is an efficient PFEM software to estimate the effective parameters of heterogeneous materials using the Element-by-Element technique in conjunction with the Preconditioned Conjugate Gradient method (PCG).

Important notes and features

  • The code now works with Julia 1.4.1. All you need to do is to check out the master branch:
  • Direct solver using a LU factorization method from LinearAlgebra.jl
  • Iterative solver using a Preconditioned Conjugate Gradient method based in Shewchuk algorithm
  • Compute effective property for physical problems governed by Laplace equation, Continuum Mechanics equations and Stokes equation
  • Read binary RAW images from CT scan data
  • Chpack solvers require a header file in JSON containing some specific parameters to guide the analysis

Requirements

The following libraries are required, which are likely already installed on your system:

How to run

Linux or Windows

Firstly, it is important to state that, even though two input files are needed, when running the codes, Chpack takes a single input, a string containing the name of the model (without file extensions), hence the need to give the same name to correlated RAW and JSON files.

Users can run ch2ap.jl, for example, directly from the terminal, but they need to bear in mind that Julia compiles the code before running, meaning that each call will take some extra time to compile (for relatively small models, this usually takes more time than the analysis itself). Certainly, if no changes are made to ch2pp.jl, there’s no need to compile the same code over and over again. In light of this, the authors suggest that users run ch2pp.jl from within the Julia environment, as follows.

a. Start the Julia REPL:

julia

P.S.: Make sure that you’re on the Chpack directory.

b. Include Chpack package:

pkg> add Chpack
using Chpack

c. Run the homogenize function:

Chpack.ch2pp.homogenize(model_filename)

d. To obtain time metrics for each time ch2pp is run, simply add the Julia macro @time before the call presented above.

@time Chpack.ch2pp.homogenize(model_filename)

Input files

Two files are needed for the analysis to be run. One describes the geometry of the model (a binary RAW file), the other sets specific analysis parameters (a JSON file). Both files must have the same name, just different extensions. You can also have more information in our user guide.

  1. RAW file

The first input is a binary RAW file, that represents images of the microscale of a heterogeneous material with 8-bit data (integer values within the range 0 to 255). As the model is characterized as pixel-based, an image input is necessary to define the Finite Element mesh, admitting that each pixel is a quadrilateral element. The contents of the file are depicted graphically in Figure 1, where the numbers in red indicate the index of each pixel on an array that stores the 8-bit data.

Figure 1: Visual representation of the contents of a RAW input file for ch2pp.jl.

  1. JSON header file

A second input file is necessary for ch2pp.jl to be run, containing specific parameters to guide the FEM analysis. Figure 2 exposes the data that needs to be provided on a JSON file, that must have the same name as the RAW file that describes the geometry of the model.

{
    "type_of_analysis": 0,
    "type_of_solver": 0,
    "type_of_rhs": 0,
    "voxel_size": 1.0,
    "solver_tolerance": 1e-06,
    "number_of_iterations": 1000,
    "image_dimensions": [
        100,
        100,
        1
    ],
    "refinement": 1,
    "number_of_materials": 2,
    "properties_of_materials": [
        [
            0,
            5
        ],
        [
            255,
            6
        ]
    ],
    "volume_fraction": [
        90.32,
        9.68
    ],
    "data_type": "uint8"
}
  • Solver tolerance (solver_tolerance): The maximum accepted residual value for the Preconditioned Conjugate Gradient (PCG) Method, adopted to solve the large system of algebraic equations associated with the Finite Element Method.
  • Number of iterations (number_of_iterations): The maximum accepted number of iterations to be run on the PCG method.
  • Image dimensions (image_dimensions): An array of three positive integer values, associated with the dimensions of the model in pixels, on x, y, and z (left to right, up to down, and near to far), respectively. As pfem4ec.jl currently only works for 2D models, the dimension z is unused.
  • Type of solver (type_of_solver): A flag to indicate if the system of equations must be solved with the PCG method or a direct method (matrix factorization). 0 = PCG, 1 = Direct method. It is advised that the PCG solver is adopted, especially for large models.
  • Type of right-hand side (type_of_rhs): A flag to switch between conditions being set on the domain or boundary of the model. 0 = Domain, 1 = Boundary.
  • Refinement (refinement): A positive integer value to indicate the mesh refinement from the provided image. By setting this as 1, each pixel becomes a single quadrilateral finite element. If it is set as 2, for example, each pixel will be equally subdivided into 4 quadrilateral finite elements (1x1 becomes 2x2, in this case). In an analogous fashion, if set as 3, each pixel becomes 9 equal quadrilateral finite elements, and so on.
  • Number of materials (number_of_materials): A positive integer value to specify how many different materials are present on the heterogeneous model.
  • Properties of materials (properties_of_materials): An array of two values for each material. The first value is an integer between 0 and 255, which correlates the materials with a grayscale color read from the RAW file. The second value is a floating-point number that provides the electrical conductivity of this specific material, assuming that it is isotropic.
  • Volume fraction (volume_fraction): This is not an input parameter to ch2pp.jl. It contains an array of percentages that indicate the proportion of occurrence of each material on the respective model. This is generated by the pytomoviewer application and is interesting for users to quickly identify any predominant materials on a determined model.

Example usage

For now, ch2pp.jl output consists of feedback of the analysis that is printed on the terminal called the program. Users are provided with an estimation of allocated memory, convergence metrics for the PCG numerical method, a stamp for each function called by ch2pp along the process and, finally, the resulting effective homogenized conductivity matrix.

pkg> add Chpack
julia> using Chpack
julia> @time Chpack.ch2pp.homogenize(p100x100)
---------------------------
.Building Model!
   .Reading JSON!
   .Reading RAW!
   .Generating the Map of DOFs (Degrees of Freedom)!
---------------------------
.Estimating memory!
   10000 DOFs
   0.501608 MB
---------------------------
.Solving
   .Computing each element conductivity matrix!
   .Jacobi Preconditioner!

  Case 1
   .Computing RHS!
   .PCG Solver!
    90 steps
    Residue = 8.225005242547675e-7
   .Updating Constitutive Matrix!

  Case 2
   .Computing RHS!
   .PCG Solver!
    90 steps
    Residue = 8.225005242547666e-7
   .Updating Constitutive Matrix!
---------------------------
Effective Properties:

C[1,:] = [5.08885401446448, -2.353672812205332e-18]
C[2,:] = [1.9984014443252816e-18, 5.08885401446448]
--------------------------------------

Citation

  • Toolkit for image-based numerical homogenization (alongside pyTomoviewer and chfem_gpu). Link to paper
    Obs.: If you use Chpack in your academic work, it is kindly requested that you cite this reference.

Lopes, Pedro CF, et al. (2023). Simulation toolkit for digital material characterization of large image-based microstructures. Computational Materials Science 219 (2023): 112021 https://doi.org/10.1016/j.commatsci.2023.112021

Or, using the following BibTeX entry:

@article{toolkit2023,
    title = {Simulation toolkit for digital material characterization of large image-based microstructures},
    author = {Pedro C.F. Lopes and Rafael S. Vianna and Victor W. Sapucaia and Federico Semeraro and Ricardo Leiderman and André M.B. Pereira},
    journal = {Computational Materials Science},
    volume = {219},
    pages = {112021},
    year = {2023},
    publisher={Elsevier}
}

Acknowledgements

This research was carried out in association with the ongoing R&D project registered as ANP nº 21289-4, “Desenvolvimento de modelos matemáticos, estatísticos e computacionais para o aperfeiçoamento da caracterização petrofísica de reservatórios por Ressonância Magnética Nuclear (RMN)" (UFF/Shell Brasil/ANP), sponsored by Shell Brasil under the ANP R&D levy as “Compromisso de Investimentos com Pesquisa e Desenvolvimento”. The authors also recognize the support from CAPES, CNPq and FAPERJ.