MSI Researchers win award for Materials Prototyping Facility

MSI Researchers win award for Materials Prototyping Facility

Congratulations to MSI researchers for their successful award from the M. J. Murdock Charitable Trust. The award for $476,000 will support the “Oregon Rapid Materials Prototyping (RaMP) Facility”. RaMP will house flexible state-of-the-art tools for depositing inorganic films and nanostructures via atomic layer deposition and sputtering as well as micro-patterning those films into devices and test architectures. The facility will allow researchers to quickly deposit, characterize, and pattern thin-film inorganic materials to fabricate prototypes and test devices with applications in energy, optical communications/computation, and human health.

The ability to deposit function inorganic thin films and process them into (three-dimensional) functional device architectures will further high-impact basic science in nanophotonic and quantum opto-mechanical
devices, solar photovoltaic and photoelectro-­chemical devices, electron optics, and sensing.
RaMP will also be used by industry and local start-­ups, outside academic users, and for education,
accelerating a master’s internship track in semiconductors devices and thin film materials that connects to the Northwest’s electronics industry. MSI principal investigators on this proposal include professors Shannon Boettcher, Miriam Deutch, Mark Lonergan, Hailin Wang, and Benjamín Alemán, and Institute of Neuroscience professor Shawn Lockery.

Sara Mason Abstract

Fundamental Insights about Al Nanoclusters and Mineral Surfaces from Density Functional Theory

 

Sara Mason

Professor of Chemistry

University of Iowa

 

Adsorption reactions between aqueous and solid phases influence contaminant transport and fate, and are also fundamentally related to technological applications such as batteries and heterogeneous catalysis.  Essential chemical information about environmental interface structure-reactivity relationships is becoming accessible through quantum mechanical modeling.  Computational studies provide a perfectly controllable, safe, and affordable means to interpret experimental information, to predict properties that cannot be measured, and to develop conceptual, molecular-level understanding of these systems.  While the ability of metal hydroxide surfaces to bind contaminants has been established, identification of the specific reactivity factors and a mechanistic understanding of the adsorption process is lacking. We highlight how we use density functional theory (DFT) studies to extract new chemical understanding of the surface and particle properties that dictate reactivity and discuss ongoing work and future goals, including issues of DFT accuracy and towards the development of new conceptual models.  Long term goals include harnessing our new molecular-level understanding of environmental surfaces towards the rational design of engineered sorbents.

The Parallel Recursion Project

 


Welcome to the Parallel Recursion Project Page. Please skip to the  Introduction for more information.
surface.jpg
The figure shows the magnitudes and distribution of the components of  the 100th transformation vector (tridiagonal basis vector) for a two-dimensional square lattice. The x-y plane in the figure corresponds to the lattice plane, the magnitude of the components is plotted along the z-axis and is also color-coded.

Introduction

The PaRP (Parallel Recursion Project) is a software package for materials science numerical simulations on high-performance computing platforms. It is based on the dynamic recursion method which is a method suited for physical systems that can be expressed in terms of sparse matrices (Hamiltonians). The latter is possible for all physical systems whose interactions are short-ranged in real space.

We have developed a high-performance extensible simulation engine in C++ that currently uses threads to exploit the power of parallel execution on shared-memory multi-processors. In the future, we will also incorporate message-passing interfaces to support modern hybrid platforms consisting of clusters of shared-memory multi-processors.

Our primary objective has been to perform first-principles calculations of microscopic quantities on systems of macroscopic size, such as 1015–and this is only the beginning!

The dynamic recursion method is another player in the world of simulation tools. As such is coexists with methods like molecular dynamics, Monte Carlo, fluid dynamics, etc. but is not directly related to these. Despite numerous recent advances in software and hardware, many of these tools struggle to the present day with the seemingly hopeless problem of 1023 coupled differential equations in macroscopic condensed-matter systems. With PaRP, the dynamic recursion method allows us for the first time to bridge the gap between microscopic and macroscopic worlds in a numerical context.

The Problem, Motivation, and Physics

This kind of potential is necessary to be prepared for tomorrow’s applications in physics. One of the coming challenges in numerical physics is the quest for correlated systems. Many interesting phenomena arise from correlations and interactions between electrons, ions, excitons, etc. Examples are superconductivity, the fractional quantum Hall effect, metal-insulator transitions, phase transitions, etc. The intrinsic difficulty with these systems is their enormous state-space or, in other words, the mindboggling number of configurations of the system that must be accounted. Consider that a system with 100 electrons has already 2100 distinct states. To store all configurations, one would need 2100 bits (= 257TByte ~ 1017TByte)!! Without approximations, this is obviously beyond the scope of what any numerical method (or analytic for that matter–except maybe for a number of narrow special cases) can be reasonably expected to achieve.

What to do? The obvious thing of limiting the number of electrons (or particles, in general) included is hardly a viable option–not only because it has been done in times when computers were more wimpy–but also because of other reasons: On the one hand, the probabilistic nature of quantum mechanics usually prevents a simple extrapolation from microscopic to mesoscopic or macroscopic systems. On the other hand, the smallest experimentally accessible systems in solid state physics, such as quantum dots, still contain on the order of thousands of electrons.

Therefore, clever approximations are needed to cope with sheer size of the task. The dynamic recursion has auch an approximation built-in, in that it stresses local quantities over global quantities. Local quantities are most strongly dominated by the immediate surroundings of the site (or state) of interest, e.g. in a lattice.Whatever happens far away from that site of interest only weakly influences the local quantity and can be neglected altogether beyond a certain distance. This lies at the heart of the recursion method and is sometimes also called “black body theorem,” in reminiscence of the fact that the electro-magnetic mode density in a cavity is insensitive to the actual shape of the cavity.

An interesting side-effect of this “black-body theorem” is that numerical errors, which are inevitably incurred with finite precision computer arithmetic, do not grossly distort the result because their influence, too, decays with distance and does so at an exponential rate. Dynamic recursion takes the recursion method one step further by systematically exploiting this insensitivity to errors. It is then possible to omit small contributions to the local quantity without introducing run-away errors. Thereby, sticking with our example, not all the 2100 electronic states must be represented in computer memory at all times, but only the ones with “large” contributions. This is what makes these problems tractable.

The Objectives, Solutions, and Computer Science

When developing a large software package or library, one of the goals should be to make it accessible to other users and application programmers. With the recursion method, this has been tricky. In the past, a number of applications based on the recursion method have been developed and a library of recursion-related routines, the Cambridge Recusion Library (Fortran) exists. As a result of the recursion method’s being a rather general purpose technique with wide applicability, it is difficult to design a library which satisfies all possible applications for different materials, Hamiltonians, models, etc. In fact, in the past library support has therefore been limited to helper routines, with the application programmer bearing the brunt of the work, namely writing the central routines for storing the Hamiltonian matrix and the associated transformation vectors and for multiplying them. This was not only time-consuming but it also required considerable programming skill on the part of the physicist wishing to employ the recursion method for a specific simulation. Coincidentally, the user-supplied code is the most CPU-time and memory intensive portion, thus critically affecting performance.

A new implementation was therefore desired that remedies these deficiencies and also supports the latest high-performance hardware architectures. From a computer science point of view, our objectives can be summarized as follows:

  • Automatic storage scheme for Hamiltonian matrix and associated vectors
  • Built-in matrix-vector-multiplication algorithm interfacing with this storage scheme
  • Automatic partitioning of problem and data structures for concurrent execution.
  • Definition of an API that hides details of matrix storage, multiplication routines and parallel execution.
  • Extensiblity and adaptability to a wide range of physics problems while re-using existing code.
  • Employing modern object-oriented (C++) facilities of encapsulation, inheritance, templates to achieve these objectives to produce highly adaptable, low-overhead and easy-to-read code.

We have developed an initial prototype in C++ using the pthread library for thread-based concurrent execution on shared-memory systems (currently SGI Power Challenge). Today’s highest-performance platforms, however, consist of clusters of shared-memory multiprocessors interconnected with high-speed links (HIPPI). This unique architecture requires a thread-based approach inside each shared-memory machine and a message-passing strategy between machines. At the same tim, one has to ensure that the memory affinity of data structures is high, because if ignored effects like network latency, non-uniform memory access and cache misses will all degrade performance to the point where muli-processing gains are wiped out.

Our future efforts will focus on supporting these hybrid architectures, e.g. SGI array systems or Linux clusters. One option is to add MPI support for communication between machines. The other option is to rewrite the code using existing portable threads and communications packages such as Tulip, SMARTS and Nexus. In addition, we are evaluating to what extent we can adapt our interfaces to conform to standard scientific applications frameworks such  POOMA. to scripting interfaces such as SILOON, or to component models which are supported by projects such as Ligature.

In past and present work, the value of visualization of recursion vectors has been underappreciated. In the figure above, which is a first attempt at displaying the recursion vectors, we notice patterns that are reminiscent of interference, but their interpretation is as yet unclear. We believe important physical insights may be gained from visualization. For example, in disordered systems that we have investigated this interference-like pattern breaks down and grows at a disorder-dependent rate. Our first steps towards visualization have been done by gathering data from the parallel application on one node and dumping them to disc. These data are then processed and displayed in a second stage with differenct applications. The amount of data generated this way is enormous (several hundred MB for only 200 levels–corresponding to a 3D sample of 400*400*400 sites), so that this procedure is too crude to handle larger simulations. In order to follow a recursion simulation run in real time and step-by-step, we would need to employ high-performance parallel visualization tools such as the ACL visualizaton tools with parallel point-to-point transfers (e.g. PAWS). This avenue, although promising and interesting, is currently not pursued, mostly due to a lack of manpower.

References

  • Arnold, W., Investigation of the Localization in Disordered Systems, Ph.D. Thesis, University of Oregon, (2000).
  • Arnold, W., Haydock, R.,  A Parallel, Object-Oriented Implementation of the Dynamic Recursion Method  (postscript, 258KB), ISCOPE ’98 Conference Proceedings, series: Lecture Notes in Computer Science, © Springer-Verlag (1998)
  • Haydock, R., The Recursive Solution of the Schrödinger Equation, in Solid State Physics, edited by H. Ehrenreich et al. (Academic Press, New York), 35, (1980)
  • Nex, C.M.M., Comp. Phys. Comm., 34, p. 101 (1984)
  • Te, R.L., Phys. Rev. B, 49, no. 16, p. 10845, (1994)

Contributors and Collaborators

Wolfram T. Arnold, Roger Haydock.
We wish to thank Sameer Shende (TAU) for invaluable input and support, Janice Cuny and John Conery for useful discussions.

Thank you for visiting. Check back frequently for updates.
If you have comments or suggestions, email Roger Haydock at haydock@darkwing.uoregon.edu

Last modified: Tuesday, June 11, 2002

Wolfram Arnold Research Page

Thanks for your interest in my research page. As almost anything on the web, this is a page under construction; please forgive the crude format.

Parallel Recursion Project Web Page

Publications and Theses

ISCOPE ’98

      Conference Proceedings, series:

Lecture Notes in Computer Science

    , © Springer-Verlag (1998)

 

    Diplomarbeit (Master’s Thesis), Universität Ulm, Germany (1998).

 

Last modified: Tuesday, June11, 2002

Undergraduate

University of Oregon undergraduates interested in materials science or performing research in an MSI-related lab should review the research pages of MSI faculty and email the appropriate faculty requesting information about any available undergraduate research openings.

Summer Research Programs:

Spend your summer at the University of Oregon and get hands-on experience in a materials science lab!

The University of Oregon offers a variety of programs for undergraduates to learn about different aspects of materials science and get hands-on research experience in the lab. Whether you are looking for a one week or ten week experience, you’ll have the opportunity to work alongside graduate students and faculty using state-of-the-art instruments during the week and enjoy the local recreation adventures on the weekends.

Undergraduates who are looking for a summer-long research project to gain vital skills in the lab should check out:

Research Experience for Undergraduates (REU)
With the National Science Foundation, MSI sponsors a ten week summer undergraduate research program for Physics and Chemistry Majors to participate in a wide variety of exciting research projects. It’s not all work, however. Having local and regional adventures are a vital component of the program.

Funded in part by the National Science Foundation , these all expenses paid, one-week experience provides undergraduate chemistry and physics majors with the necessary background to understand specialized areas of materials science. All programs involve class time and career discussions to supplement the labs, and tours of local industries illustrate the large-scale implementation of the chemical processes discussed.

NSF Summer Program in Solid State & Materials Chemistry
This is a nine-week summer program in solid state chemistry research for undergraduate and college faculty, under the direction of a recognized authority in the field. A stipend plus a housing supplement and travel expenses are paid for all participants by the program.

In-Situ (S)TEM/DTEM: From High Spatial Resolution to High Temporal Resolution

Nigel Browning
Fundamental & Computational Sciences Directorate
Pacific Northwest National Laboratory
Richland, WA

October 9, 2015

The last few years have seen a paradigm change in (scanning) transmission electron microscopy ((S)TEM) with unprecedented improvements in spatial, spectroscopic and temporal resolution being realized by aberration correctors, monochromators and pulsed photoemission sources. Spatial resolution now extends to the sub-angstrom level, spectroscopic resolution into the sub-100meV regime and temporal resolution for single shot imaging is now on the nanosecond timescale (stroboscopic imaging extends this even further to femtoseconds). The challenge now in performing experiments in an (S)TEM is to implement the in-situ capabilities that will allow both engineering and biological systems to be studied under realistic environmental conditions. Performing experiments using in-situ stages or full environmental microscopes presents numerous challenges to the traditional means of analyzing samples in an electron microscope – we are now dealing with the variability of dynamic process rather than a more straightforward static structure. In this presentation, I will discuss the recent developments in the design and implementation of in-situ stages being pursued at the Pacific Northwest National laboratory (PNNL). Examples of the use of these capabilities for the direct imaging of interfaces and defects, to identify the fundamental processes involved in nucleation and growth of nanostructures from solution, and to investigate the electrochemical processes taking place in next generation battery systems will be presented. As the in-situ stages have been designed to be incorporated into both high spatial resolution aberration corrected (S)TEM as well as into high temporal resolution Dynamic TEM (DTEM), the potential for future experiments to study fast dynamics, including those in live biological structures, will also be discussed.

Approaching Complex Scientific Problems with Nuclear Magnetic Resonance and Computational Chemistry

Karl T. Mueller
Laboratory Fellow, Physical and Computational Sciences Directorate, Pacific
Northwest National Laboratory, Richland, WA 99352
Professor, Department of Chemistry, Penn State University, University Park, PA
16802

Nuclear magnetic resonance (NMR) is a powerful tool for investigating complex systems especially when we are fortunate enough to have sensitivity, selectivity, resolution, and available spectrometer time working in our favor. However, we are not always so fortunate. With many collaborative friends and colleagues, we are able to take both simple and complicated NMR experiments and apply them to solve difficult problems in materials and chemical sciences. My research teams at PNNL and Penn State have applied solid-­‐ and solution-­‐state NMR studies to problems in materials, energy, and environmental sciences, especially focusing on the nature of reactive sites on surfaces and solvation dynamics in battery electrolyte systems. Where sensitivity concerns are present, the use of nuclides such as 31P and 19F (or even 13C in enriched probe molecules) and the employment of methods such as “surface-­‐selective” cross-­‐polarization have provided quantification and identification of reactive sites. In addition, the use of pulsed-­‐field-­‐gradient diffusion methods for measuring translational motion reveals key features of ion solvation that control performance in multi-­‐component battery electrolytes. These ideas and
related NMR methods can then be used to probe dynamics or kinetics, and examples will be provided where the exceptional information content provided by NMR experiments, combined with both quantum chemical and classical molecular dynamics simulations, proves critical for addressing complex problems.