Skip to content

Commit 5004ae5

Browse files
committed
2 parents 1bf3a21 + 2d17d54 commit 5004ae5

File tree

7 files changed

+40
-12
lines changed

7 files changed

+40
-12
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Added
1212
'''''''
1313
- References within XML input files using the ``<include>`` tag.
1414
- Support for gmsh. (addresses `#16`_)
15+
- Citation to SoftwareX publication.
1516

1617
Fixed
1718
'''''''

LICENSE.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020 Georgia Tech Research Corporation
3+
Copyright (c) 2019-2020 Georgia Tech Research Corporation
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.rst

Lines changed: 22 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ MicroStructPy - Microstructure Mesh Generation in Python
33

44
|s-ci|
55
|s-license|
6-
|s-doi|
6+
7+
|s-doi1|
8+
|s-doi2|
79

810
|l-github| `Repository <https://github.com/kip-hart/MicroStructPy>`_
911
|l-rtd| `Documentation <https://docs.microstructpy.org>`_
@@ -134,15 +136,23 @@ Once built, the documentation will be in ``docs/build/``.
134136
Publications
135137
------------
136138

137-
If you use MicroStructPy in you work, please consider including this citation
139+
If you use MicroStructPy in you work, please consider including these citations
138140
in your bibliography:
139141

140142
K. A. Hart and J. J. Rimoli, Generation of statistically representative
141143
microstructures with direct grain geomety control,
142-
*Computer Methods in Applied Mechanics and Engineering*,
143-
370 (2020), pp. 113242.
144-
(`BibTeX <https://github.com/kip-hart/MicroStructPy/raw/master/docs/publications/cmame2020.bib>`_)
145-
(`DOI <https://doi.org/10.1016/j.cma.2020.113242>`_)
144+
*Computer Methods in Applied Mechanics and Engineering*, 370 (2020), 113242.
145+
(`BibTeX <https://github.com/kip-hart/MicroStructPy/raw/master/docs/publications/cmame2020.bib>`__)
146+
(`DOI <https://doi.org/10.1016/j.cma.2020.113242>`__)
147+
148+
K. A. Hart and J. J. Rimoli, MicroStructPy: A statistical microstructure mesh
149+
generator in Python, *SoftwareX*, 12 (2020), 100595.
150+
(`BibTeX <https://github.com/kip-hart/MicroStructPy/raw/master/docs/publications/swx2020.bib>`__)
151+
(`DOI <https://doi.org/10.1016/j.softx.2020.100595>`__)
152+
153+
The news article `AE Doctoral Student Kenneth A. Hart Presents MicroStructPy to the World <https://www.ae.gatech.edu/news/2020/07/ae-doctoral-student-kenneth-hart-presents-microstructpy-world>`__,
154+
written by the School of Aerospace Engineering at Georgia Tech,
155+
describes MicroStructPy for a general audience.
146156

147157
.. end-publications
148158
@@ -189,6 +199,10 @@ advised by Prof. Julian Rimoli.
189199
:target: https://github.com/kip-hart/MicroStructPy/blob/master/LICENSE.rst
190200
:alt: License
191201

192-
.. |s-doi| image:: https://img.shields.io/badge/DOI-10.1016%2Fj.cma.2020.113242-blue
202+
.. |s-doi1| image:: https://img.shields.io/badge/DOI-10.1016%2Fj.cma.2020.113242-blue
193203
:target: https://doi.org/10.1016/j.cma.2020.113242
194-
:alt: DOI
204+
:alt: CMAME DOI
205+
206+
.. |s-doi2| image:: https://img.shields.io/badge/DOI-10.1016%2Fj.softx.2020.100595-blue
207+
:target: https://doi.org/10.1016/j.softx.2020.100595
208+
:alt: SoftwareX DOI

docs/publications/cmame2020.bib

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ @article{Hart2020
33
title = {Generation of statistically representative microstructures with direct grain geomety control},
44
journal = {Computer Methods in Applied Mechanics and Engineering},
55
volume = {370},
6-
pages = {113242},
6+
artnum = {113242},
77
year = {2020},
88
issn = {0045-7825},
99
doi = "https://doi.org/10.1016/j.cma.2020.113242",

docs/publications/swx2020.bib

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
@article{Hart2020swX,
2+
title = "MicroStructPy: A statistical microstructure mesh generator in Python",
3+
journal = "SoftwareX",
4+
volume = "12",
5+
pages = "100595",
6+
year = "2020",
7+
issn = "2352-7110",
8+
doi = "https://doi.org/10.1016/j.softx.2020.100595",
9+
url = "http://www.sciencedirect.com/science/article/pii/S2352711020303083",
10+
author = "Kenneth A. Hart and Julian J. Rimoli",
11+
keywords = "Microstructure, Mesh generation, Polycrystal, Laguerre tessellation",
12+
abstract = "MicroStructPy is a statistical microstructure mesh generator written in Python. This software package includes classes and methods to generate a mesh by (i) creating a list of grain seed geometries, (ii) packing them into a domain, (iii) performing a Laguerre tessellation of the seed geometries, and (iv) performing quality unstructured meshing. Results can be visualized and compared with the specified microstructural properties. MicroStructPy accurately reproduces 2D and 3D polycrystalline microstructures with arbitrary number of phases, volume fractions and distributions, each including the possibility of elongated grains. It can also generate meshes for amorphous phases and porous materials. Meshes are suitable for direct numerical simulation, a prevalent technique in computational mechanics of materials and geomechanics. The package contains extensive documentation, including guides and demonstrations to facilitate adoption for new users."
13+
}

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# -- Project information -----------------------------------------------------
2626

2727
project = 'MicroStructPy'
28-
copyright = '2020, Georgia Tech Research Corporation'
28+
copyright = '2019-2020, Georgia Tech Research Corporation'
2929
author = 'Kenneth Hart'
3030

3131
# The short X.Y version

src/microstructpy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
import microstructpy.seeding
55
import microstructpy.verification
66

7-
__version__ = '1.3.5'
7+
__version__ = '1.4.0'

0 commit comments

Comments
 (0)