Git repo for my interdiffusion paper
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Alex Selimov 1a54e3918e
Add abstract to README
6 months ago
img Iniatialize repo 6 months ago
pandoc_lua_filters Iniatialize repo 6 months ago
README.md Add abstract to README 6 months ago
article.docx Iniatialize repo 6 months ago
article.md Iniatialize repo 6 months ago
article.pdf Iniatialize repo 6 months ago
references.bib Add missing references 6 months ago

README.md

Abstract

Intermixing of chemical species as a result of interdiffusion during processing leads to the development of diffuse interface structures which have distinct properties compared to the atomically sharp interface. The effect of interdiffusion on interface properties is complex due to the opposing effects of interdiffusion induced changes to the interface structure, namely the presence of solute atoms and a reduced misfit dislocation density, on the interface shear strength. Representative {111} Cu/Ni interfaces with different levels of interdiffusion are generated and subjected to shear loading using atomistic methods to study the effects of these interface structure changes on the interface response to shear. It is found that interdiffused models exhibit improved interface shear strength relative to the atomically sharp case; however, shear strength does not increase monotonically with solute concentration. The distribution of maximum changes in energy per misfit node, as filtered using microrotation vector analysis, suggest heterogeneous interface resistance to sliding, also confirmed by non-uniform misfit node displacements. The number of solute atoms near misfit node centroids does not correlate well with misfit node displacements indicating the importance of the longer-range misfit dislocation structure. Increased activation of misfit dislocation glide is associated with larger solute concentrations as a result of the larger misfit node displacements. Change in energy analysis, however, reveals that misfit dislocations do not contribute significantly to the interface resistance to sliding and interface sliding is instead dominated by the misfit node behavior. These results highlight the importance of modeling more realistic diffuse interface structures and motivate additional studies into the competing effects of solute content and misfit density.

Notes on pandoc

Requirements:: pandoc and pandoc-crossref

All of the paper itself is written in article.md using pandoc flavor markdown combined with pandoc-crossref. References for pandoc compatible markdown can be found at . Some benefits of markdown are:

  • You can use your normal .bib reference file to automatically manage references.
  • Pandoc markdown allows for tables using simple styling as observed in article.md.
  • Equations can be written with latex styling
  • You can reference figures and equations and have them automatically update!

This build uses a few lua filters included to get nicer behavior with word.

How to build::

md->pdf:

pandoc article.md --pdf-engine=xelatex --lua-filter=./typesetting/scholarly-metadata.lua --lua-filter=./typesetting/author-info-blocks.lua  --filter=pandoc-crossref --citeproc --bibliography=references.bib --csl=typesetting/els.csl  -o article.pdf

md->docx:

pandoc article.md --lua-filter="./pandoc_lua_filters/scholarly-metadata.lua"  --lua-filter="./pandoc_lua_filters/pagebreak.lua" --filter=pandoc-crossref --citeproc --bibliography="./references.bib" -o article.docx