Quasi.Py: an Investigation Into Tessellating Three-Space with Quasicrystals

Total Page:16

File Type:pdf, Size:1020Kb

Quasi.Py: an Investigation Into Tessellating Three-Space with Quasicrystals Quasi.py: An Investigation into Tessellating Three-Space with Quasicrystals Michael J. Mangialardi Math 198: Hypergraphics 2006 University of Illinois at Urbana-Champaign Abstract continuous lines when the pattern was properly assembled. However, this The purpose of this exercise is to method was not perfect, as it can come to create a program that generates an pass that legal moves produce an error aperiodic lattice of three-dimensional and must be replaced. quasicrystals. This was accomplished using Then, in 1980, Dutch the DeBruijn dual method. This method mathematician Nicolas DeBruijn came up involves taking a star of vectors, each with two methods of repeating steps to direction normal to a face of a generate these non-repeating patterns. dodecahedron, and drawing planes normal The first of these is the projection to those vectors on unit intervals away method, in which the vertices of a higher from the origin. Then, at each point where dimensional lattice of cubes is put through three or more planes intersect, transport a mathematical test and those that pass are the original vectors and add them, and a projected into lower-dimensional space quasicrystal is formed. By cycling through and become the nodes of the all points of intersection, an aperiodic quasicrystals. DeBruijn’s second method, lattice is formed. the dual method is the superior of the two and goes as follows. First, define a star of vectors that a perpendicular to the sides of a dodecahedron. Then, construct planes at Background unit intervals along the vectors. At each point where three planes intersect, In 1974, mathematician and transport the original vectors and perform physicist Robert Penrose discovered that the vector addition of the vectors, and he could tessellate a two dimensional either a fat or a skinny rhombohedron, space quasiperiodically with two figures, a analogous to the fat and skinny rhombi of fat rhombus and a skinny one. This Penrose’s two dimensional tessellation, is tessellation is called quasiperiodic because drawn. If this is performed at every the pattern has no translational symmetry, location where three planes intersect, a yet it has five-fold rotational symmetry, quasiperiodic lattice is formed. something which was previously not thought to exist for tessellations. Penrose soon discovered a challenge in creating these tessellations: describing a foolproof Method rule set which does just that. He attempted to do so, along with the This program uses the DeBruijn reclusive mathematician Robert Ammann, dual method to generate the desired by decorating the tiles with bars that form quasiperiodic lattice of rhombohedra. This method involves taking a star of vectors, each with direction normal to a face of a which to connect the vertices. The dodecahedron, and drawing planes normal method then creates a drawable node for to those vectors on unit intervals away every index node and defines those from the origin. Then, at each point where drawable nodes to be line strips, drawing three or more planes intersect, transport the quasicrystal. the original vectors and add them, and a Lines 74-149 define the quasicrystal is formed. By cycling through calculatePosition method, given three all points of intersection, an aperiodic vectors, calculates the positions of lattice is formed. intersection of the planes defined by those This program makes use of the vectors, which give the positions of the syzygy library and the distributed scene- rhombohedra. This method takes three graph framework. This framework works vectors and the material node that will be by establishing a tree in which every node parent to the drawn rhombohedra as has the properties of its parent nodes and arguments. Because each vector defines passes on its traits to its daughters; nodes several planes, each spaced Nτ away from correspond to things such as materials, the origin, where N is a non-zero integer indices, drawables, transforms, and other and τ is the golden ratio, the first thing things necessary for computer graphics. that this method does is create a set of For more information on the syzygy nested while loops so that each distributed scene-graph framework, see permutation of planes can be accounted Ben Schaeffer’s paper on the subject. for. Then, for each plane, it generates its What follows is a line-by-line explanation equation in the form: of how that method was implemented in Px + Qy + Rz = C quasi.py in order to draw that lattice. where: Lines 1-5 import the syzygy C = Px0 + Qy0 + Rz0 library, as well as other libraries that are and P, Q, and R are the x, y, and z necessary for use in the program. Lines 6- ! components of the vector normal to the 32 are the default navigator as defined by plane. Then, Cramer’s rule is used to Ben Schaeffer in his Cosmos.py. These ! determine if and where the planes lines define how the user navigates within intersect. If the determinant of the the program. coefficients matrix is equal to zero, then Lines 33-73 are where the the planes do not intersect and the drawQuasiCrystal method is defined. method moves on and calculates the This method, as its name implies, draws a position of the rhombohedron and draws quasicrystal. It takes as arguments the it using the drawQuasiCrystal method three vectors that will define the generated defined above. solid, the x, y, and z coordinates of the Lines 150-171 define the “zero” vertex of the quasicrystal, and the addLights method. This method takes the material node that will become the parent root node as an argument and creates two of the quasicrystal. This method first white lights as daughters to the root node. creates a node to function as the set of Lines 172-179 set up the points defining the vertices of the distributed scene-graph framework, set rhombohedron to be drawn as a daughter the root node, and set buffer swap to of the material node passed as an manual. Lines 180-197 translate argument. Then it creates a series of index everything so that it is in front of the nodes as daughters of the points node viewer, set the navigation node, call the which will tell their corresponding addLights method, and create a material daughter drawable nodes the order in node and set the material properties of the The greatest challenge in writing rhombohedra. Lines 198-207 define the quasi.py is the fine tuning of the star of vectors that will be used to mathematics to generate the calculate the position of the rhombohedra. There are several upgrades rhombohedra. Lines 208-249 call the planned for future versions of quasi.py calculatePosition method for each First, a proper algorithm for selecting possible combination of three vectors and where to draw rhombohedra needs to be output a countdown so that the user developed because the current one, where knows that the program has not stalled the only criterion to be met is that the during the lengthy process of calculating determinant cannot be equal to zero, is the positions. Finally, lines 250-259 too permissive. Second, it would be nice establish the main loop of the program, to draw the rhombohedra one at a time so swap the buffers, update the navigator, that the user can see the structure being and set the viewer. created one rhombohedron at a time. Finally, it has been proposed to allow the user to select rhombohedra one at a time Execution and toggle whether the selected rhombohedron is viewed as a wire frame, To run the program, syzygy as a solid, or as a partial solid. version 1.0, Python version 2.4, and a I would like to thank George UNIX shell must be installed Then, Francis and Tony Robbin for their help in complete the following steps: developing the algorithm to calculate the 1. Open the UNIX shell. position of the rhombohedra. I would also 2. Navigate to the directory in which like to thank Ryan Mulligan and Kyle syzygy is installed. Wilkinson for helping to debug the code. 3. Start syzygy. 4. Navigate to the directory in which quasi.py is located. Sources 5. Type python quasi.py into the UNIX shell 1. Robbin, Tony. Shadows of Reality. New Haven, Connecticut: Yale University Press, 2006. Conclusion 2. Levine, Dov et al. “Quasicrystals with Arbitrary Orientational Symmetry,” Physical Review. 32(8):5547-50, October 1985. .
Recommended publications
  • WHAT IS...A Quasicrystal?, Volume 53, Number 8
    ?WHAT IS... a Quasicrystal? Marjorie Senechal The long answer is: no one is sure. But the short an- diagrams? The set of vertices of a Penrose tiling does— swer is straightforward: a quasicrystal is a crystal that was known before Shechtman’s discovery. But with forbidden symmetry. Forbidden, that is, by “The what other objects do, and how can we tell? The ques- Crystallographic Restriction”, a theorem that confines tion was wide open at that time, and I thought it un- the rotational symmetries of translation lattices in two- wise to replace one inadequate definition (the lattice) and three-dimensional Euclidean space to orders 2, 3, with another. That the commission still retains this 4, and 6. This bedrock of theoretical solid-state sci- definition today suggests the difficulty of the ques- ence—the impossibility of five-fold symmetry in crys- tion we deliberately but implicitly posed. By now a tals can be traced, in the mineralogical literature, back great many kinds of aperiodic crystals have been to 1801—crumbled in 1984 when Dany Shechtman, a grown in laboratories around the world; most of them materials scientist working at what is now the National are metals, alloys of two or three kinds of atoms—bi- Institute of Standards and Technology, synthesized nary or ternary metallic phases. None of their struc- aluminium-manganese crystals with icosahedral sym- tures has been “solved”. (For a survey of current re- metry. The term “quasicrystal”, hastily coined to label search on real aperiodic crystals see, for example, the such theretofore unthinkable objects, suggests the website of the international conference ICQ9, confusions that Shechtman’s discovery sowed.
    [Show full text]
  • Quasicrystals a New Kind of Symmetry Sandra Nair First, Definitions
    Quasicrystals A new kind of symmetry Sandra Nair First, definitions ● A lattice is a poset in which every element has a unique infimum and supremum. For example, the set of natural numbers with the notion of ordering by magnitude (1<2). For our purposes, we can think of an array of atoms/molecules with a clear sense of assignment. ● A Bravais lattice is a discrete infinite array of points generated by linear integer combinations of 3 independent primitive vectors: {n1a1 + n2a2 + n3a3 | n1, n2, n3 ∈ Z}. ● Crystal structures = info of lattice points + info of the basis (primitive) vectors. ● Upto isomorphism of point groups (group of isometries leaving at least 1 fixed point), 14 different Bravais lattice structures possible in 3D. Now, crystals... ● Loosely speaking, crystals are molecular arrangements built out of multiple unit cells of one (or more) Bravais lattice structures. ● Crystallographic restriction theorem: The rotational symmetries of a discrete lattice are limited to 2-, 3-, 4-, and 6-fold. ● This leads us to propose a “functional” definition: A crystal is a material that has a discrete diffraction pattern, displaying rotational symmetries of orders 2, 3, 4 and 6. ● Note: Order 5 is a strictly forbidden symmetry → important for us. Tessellations aka tilings Now that we have diffraction patterns to work with, we consider the question of whether a lattice structure tiles or tessellates the plane. This is where the order of the symmetry plays a role. The crystals are special, as they display translational symmetries. As such, the tiling of their lattice structures (which we could see thanks to diffraction patterns) are periodic- they repeat at regular intervals.
    [Show full text]
  • A Review of Transmission Electron Microscopy of Quasicrystals—How Are Atoms Arranged?
    crystals Review A Review of Transmission Electron Microscopy of Quasicrystals—How Are Atoms Arranged? Ruitao Li 1, Zhong Li 1, Zhili Dong 2,* and Khiam Aik Khor 1,* 1 School of Mechanical & Aerospace Engineering, Nanyang Technological University, 50 Nanyang Avenue, Singapore 639798, Singapore; [email protected] (R.L.); [email protected] (Z.L.) 2 School of Materials Science and Engineering, Nanyang Technological University, 50 Nanyang Avenue, Singapore 639798, Singapore * Correspondence: [email protected] (Z.D.); [email protected] (K.A.K.); Tel.: +65-6790-6727 (Z.D.); +65-6592-1816 (K.A.K.) Academic Editor: Enrique Maciá Barber Received: 30 June 2016; Accepted: 15 August 2016; Published: 26 August 2016 Abstract: Quasicrystals (QCs) possess rotational symmetries forbidden in the conventional crystallography and lack translational symmetries. Their atoms are arranged in an ordered but non-periodic way. Transmission electron microscopy (TEM) was the right tool to discover such exotic materials and has always been a main technique in their studies since then. It provides the morphological and crystallographic information and images of real atomic arrangements of QCs. In this review, we summarized the achievements of the study of QCs using TEM, providing intriguing structural details of QCs unveiled by TEM analyses. The main findings on the symmetry, local atomic arrangement and chemical order of QCs are illustrated. Keywords: quasicrystal; transmission electron microscopy; symmetry; atomic arrangement 1. Introduction The revolutionary discovery of an Al–Mn compound with 5-fold symmetry by Shechtman et al. [1] in 1982 unveiled a new family of materials—quasicrystals (QCs), which exhibit the forbidden rotational symmetries in the conventional crystallography.
    [Show full text]
  • Some Considerations Relating to the Dynamics of Quasicrystals
    Some considerations relating to the dynamics of quasicrystals M. Pitk¨anen Email: [email protected]. http://tgdtheory.com/public_html/. November 12, 2012 Contents 1 The dynamics of quasicrystals, the dynamics of K¨ahleraction, symbolic dynamics, and the dynamics of self-organization 1 1.1 The non-determinism for the dynamics of quasicrystals contra non-determinism of K¨ahleraction . .1 1.2 The dynamics of quasicrystals as a model for fundamental dynamics or high level sym- bolic dynamics? . .2 1.3 Could ordered water layers around biomolecules be modelled as quasicrystal like structure?3 2 What could be the variational principle behind self-organization? 4 2.1 Why Negentropy Maximization Principle should favor quasicrystals? . .5 2.2 Maximal capacity to represent information with minimal metabolic energy costs as a basic variational principle? . .5 2.3 A possible realization for 4-D dynamics favoring quasicrystal like structures . .6 2.4 Summary . .7 1 The dynamics of quasicrystals, the dynamics of K¨ahlerac- tion, symbolic dynamics, and the dynamics of self-organization The dynamics of quasicrystals looks to me very interesting because it shares several features of the dynamics of K¨ahleraction defining the basic variational principle of classical TGD and defining the dynamics of space-time surfaces. In the following I will compare the basic features of the dynamics of quasicrystals to the dynamics of preferred extremals of K¨ahleraction [K1]. Magnetic body carrying dark matter is the fundamental intentional agent in TGD inspired quantum biology and the cautious proposal is that magnetic flux sheets could define the grid of 3-planes (or more general 3-surfaces) defining quasi-periodic background fields favoring 4-D quasicrystals or more general structures in TGD Universe.
    [Show full text]
  • A Quasicrystal for Cherry Valley-1
    The Visual and Structural Properties of Quasicrystals Key words: Quasicrystal Sculpture, Quasicrystal Architecture, Stability A Quasicrystal for Cherry Valley A visually rich and complex quasicrystal sculpture is quickly assembled with relatively few standard parts of only three types. Quasicrystals fill space with a non-repeating pattern; parts repeat, but not at regular intervals. In two dimensions, the pattern might be a Penrose tessellation, although other similar patterns could also be in this category. In three dimensions, the units are two skewed cubes, and in a lattice structure these can be made with rods and dodecahedral nodes. All the rods are of the same length; all the nodes are the same and in the same orientation; all the faces of the lattice are the same rhomb, and can be filled with identical plates. For the Cherry Valley Sculpture Exhibition of 2012, I made a quasicrystal sphere. It has a triacontahedral hull – a 30 sided figure that derives from the fusion of a regular dodecahedron and a regular icosahedron. Nested inside my hull is a rhombic icosahedron and nested inside that is a rhombic dodecahedron. Even though all the parts are standard, the sculpture has 2-fold symmetry (of squares), 3-fold symmetry (of triangles and hexagons), and 5-fold symmetry (of star pentagons), depending on the location of the viewer. This wonderful complexity of aspect is also apparent in the shadows that the sculpture casts. Structural considerations As an artist, I am primarily concerned with the visual properties of quasicrystals; for a wider application to architecture, however, the structural and rigidity properties of these structures must be understood.
    [Show full text]
  • Quasicrystals
    Volume 106, Number 6, November–December 2001 Journal of Research of the National Institute of Standards and Technology [J. Res. Natl. Inst. Stand. Technol. 106, 975–982 (2001)] Quasicrystals Volume 106 Number 6 November–December 2001 John W. Cahn The discretely diffracting aperiodic crystals Key words: aperiodic crystals; new termed quasicrystals, discovered at NBS branch of crystallography; quasicrystals. National Institute of Standards and in the early 1980s, have led to much inter- Technology, disciplinary activity involving mainly Gaithersburg, MD 20899-8555 materials science, physics, mathematics, and crystallography. It led to a new un- Accepted: August 22, 2001 derstanding of how atoms can arrange [email protected] themselves, the role of periodicity in na- ture, and has created a new branch of crys- tallography. Available online: http://www.nist.gov/jres 1. Introduction The discovery of quasicrystals at NBS in the early Crystal periodicity has been an enormously important 1980s was a surprise [1]. By rapid solidification we had concept in the development of crystallography. Hau¨y’s made a solid that was discretely diffracting like a peri- hypothesis that crystals were periodic structures led to odic crystal, but with icosahedral symmetry. It had long great advances in mathematical and experimental crys- been known that icosahedral symmetry is not allowed tallography in the 19th century. The foundation of crys- for a periodic object [2]. tallography in the early nineteenth century was based on Periodic solids give discrete diffraction, but we did the restrictions that periodicity imposes. Periodic struc- not know then that certain kinds of aperiodic objects can tures in two or three dimensions can only have 1,2,3,4, also give discrete diffraction; these objects conform to a and 6 fold symmetry axes.
    [Show full text]
  • Conformal Quasicrystals and Holography
    Conformal Quasicrystals and Holography Latham Boyle1, Madeline Dickens2 and Felix Flicker2;3 1Perimeter Institute for Theoretical Physics, Waterloo, Ontario N2L 2Y5, Canada, N2L 2Y5 2Department of Physics, University of California, Berkeley, California 94720, USA 3Rudolf Peierls Centre for Theoretical Physics, University of Oxford, Department of Physics, Clarendon Laboratory, Parks Road, Oxford, OX1 3PU, United Kingdom Recent studies of holographic tensor network models defined on regular tessellations of hyperbolic space have not yet addressed the underlying discrete geometry of the boundary. We show that the boundary degrees of freedom naturally live on a novel structure, a conformal quasicrystal, that pro- vides a discrete model of conformal geometry. We introduce and construct a class of one-dimensional conformal quasicrystals, and discuss a higher-dimensional example (related to the Penrose tiling). Our construction permits discretizations of conformal field theories that preserve an infinite discrete subgroup of the global conformal group at the cost of lattice periodicity. I. INTRODUCTION dom [12{24]. Meanwhile, quantum information theory provides a unifying language for these studies in terms of entanglement, quantum circuits, and quantum error A central topic in theoretical physics over the past two correction [25]. decades has been holography: the idea that a quantum These investigations have gradually clarified our un- theory in a bulk space may be precisely dual to another derstanding of the discrete geometry in the bulk. There living on the boundary of that space. The most concrete has been a common expectation, based on an analogy and widely-studied realization of this idea has been the with AdS/CFT [1{3], that TNs living on discretizations AdS/CFT correspondence [1{3], in which a gravitational of a hyperbolic space define a lattice state of a critical theory living in a (d + 1)-dimensional negatively-curved system on the boundary and vice-versa.
    [Show full text]
  • 2007 136Th Annual Meeting & Exhibition Linking Science and Technology for Global Solutions
    2007 136th Annual Meeting & Exhibition Linking Science and Technology for Global Solutions Technical Program Program-at-a-Glance ..............................................................2 Session Listing .......................................................................8 Monday AM ...........................................................................16 Monday PM ............................................................................63 Tuesday AM .........................................................................117 Tuesday PM .........................................................................164 Wednesday AM ...................................................................223 Wednesday PM ...................................................................274 Thursday AM .......................................................................327 General Posters ..................................................................359 Index ....................................................................................363 2007 136th Annual Meeting & Exhibition Monday Tuesday Wednesday Thursday ROOM AM PM AM PM AM PM AM Materials Materials Intellectual Intellectual Materials Materials Materials Processing under Processing under Property in Property in Processing under Processing under Processing under the Influence of the Influence of Materials Materials the Influence of the Influence of the Influence of External Fields: External Fields: Science: Patents, Science: Patents, External Fields: External Fields:
    [Show full text]
  • Reframing Generated Rhythms and the Metric Matrix As Projections of Higher-Dimensional LaIces in Sco Joplin’S Music *
    Reframing Generated Rhythms and the Metric Matrix as Projections of Higher-Dimensional Laices in Sco Joplin’s Music * Joshua W. Hahn NOTE: The examples for the (text-only) PDF version of this item are available online at: hps://www.mtosmt.org/issues/mto.21.27.2/mto.21.27.2.hahn.php KEYWORDS: meter, rhythm, beat class theory, syncopation, ragtime, poetry, hyperspace, Joplin, Du Bois ABSTRACT: Generated rhythms and the metric matrix can both be modelled by time-domain equivalents to projections of higher-dimensional laices. Sco Joplin’s music is a case study for how these structures can illuminate both musical and philosophical aims. Musically, laice projections show how Joplin creates a sense of multiple beat streams unfolding at once. Philosophically, these structures sonically reinforce a Du Boisian approach to understanding Joplin’s work. Received August 2019 Volume 27, Number 2, June 2021 Copyright © 2021 Society for Music Theory Introduction [1] “Dr. Du Bois, I’ve read and reread your Souls of Black Folk,” writes Julius Monroe Troer, the protagonist of Tyehimba Jess’s 2017 Pulier Prize-winning work of poetry, Olio. “And with this small bundle of voices I hope to repay the debt and become, in some small sense, a fellow traveler along your course” (Jess 2016, 11). Jess’s Julius Monroe Troer is a fictional character inspired by James Monroe Troer (1842–1892), a Black historian who catalogued Black musical accomplishments.(1) In Jess’s narrative, Troer writes to W. E. B. Du Bois to persuade him to help publish composer Sco Joplin’s life story.
    [Show full text]
  • The Image and Imagination of the Fourth Dimension in Twentieth-Century Art and Culture
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by UT Digital Repository 7KH,PDJHDQG,PDJLQDWLRQRIWKH)RXUWK'LPHQVLRQLQ7ZHQWLHWK&HQWXU\ $UWDQG&XOWXUH /LQGD'DOU\PSOH+HQGHUVRQ &RQILJXUDWLRQV9ROXPH1XPEHUV:LQWHUSS $UWLFOH 3XEOLVKHGE\-RKQV+RSNLQV8QLYHUVLW\3UHVV '2,FRQ )RUDGGLWLRQDOLQIRUPDWLRQDERXWWKLVDUWLFOH KWWSVPXVHMKXHGXDUWLFOH Access provided by The University Of Texas at Austin, General Libraries (30 Aug 2016 16:41 GMT) The Image and Imagination of the Fourth Dimension in Twentieth-Century Art and Culture Linda Dalrymple Henderson University of Texas at Austin Abstract: One of the most important stimuli for the imaginations of modern artists in the twentieth century was the concept of a higher, unseen fourth dimension of space. An outgrowth of the n-dimensional geom- etries developed in the nineteenth century, the concept predated the definition of time as the fourth dimension by Minkowski and Einstein in relativity theory. Only the popularization of relativity theory after 1919 brought an end to the widespread public fascination with the supra-sensible fourth dimension between the 1880s and 1920s. Ini- tially popularized by figures such as E. A. Abbott, Charles Howard Hin- ton, Claude Bragdon, and P. D. Ouspensky (as well as science-fiction writers), the fourth dimension was a multivalent term with associa- tions ranging from science, including X-rays and the ether of space, to idealist philosophy and mystical “cosmic consciousness.” This essay focuses on the differing approaches to higher spatial dimensions in the cubism of Pablo Picasso and Juan Gris, the suprematism of Ka- zimir Malevich, and The Large Glass project of Marcel Duchamp in the early twentieth century.
    [Show full text]
  • Nanotechnology and Quasicrystals: from Self Assembly to Photonic Applications
    Nanotechnology and Quasicrystals: From self assembly to photonic applications. Ron Lifshitz Raymond and Beverly Sackler School of Physics & Astronomy Tel Aviv University, 69978 Tel Aviv, Israel. After providing a concise overview on quasicrystals and their discovery more than a quarter of a century ago, I consider the unexpected interplay between nanotechnology and quasiperiodic crystals. Of particular relevance are efforts to fabricate artificial functional micro- or nanostructures, as well as efforts to control the self-assembly of nanostructures, where current knowledge about the possibility of having long-range order without periodicity can provide significant advantages. I discuss examples of systems ranging from artificial metamaterials for photonic applications, through self-assembled soft matter, to surface waves and optically-induced nonlinear photonic quasicrystals. 1 Nanotechnology and quasicrystals? When organizers of the NATO Advanced Research Workshop on nanotechnology, held in St. Petersburg in June 2008, asked me to deliver a keynote lecture on quasicrystals I was certain that they had made a mistake. I have been studying quasicrystals for over 15 years and investigating nanomechanical systems for just about a decade, and although one always finds connections between different scientific fields, I had never expected such an invitation. Nevertheless, the organizers insisted and explained that they wanted to learn about the possibility of exploiting nontrivial symmetries—perhaps imitating what viruses do—and in general, learn the lesson of a scientific community that was forced by nature to keep an open mind and “think outside of the box”. This chapter is motivated by my presentation on quasicrystals at the NATO ARW on nanotechnology in St.
    [Show full text]
  • Table of Contents (PDF)
    January 31, 2012 u vol. 109 u no. 5 u 1355–1808 Cover image: A bright pink seed pod and older senescent seed pods harboring black seeds are shown on the terminal structure, called a cephalium, of a Melocactus plant. Fang Chen et al. found that the dark coats enveloping the seeds of Melocactus, other cactus species, and the vanilla orchid contain a lignin polymer formed by the oxidative polymerization of an unusual monolignol known as caffeyl alcohol. The findings could help researchers develop lignin bioengineering methods while also providing insights into the diversity of land plants. See the article by Chen et al. on pages 1772–1777. Image courtesy of Broderick Stearns (Samuel Roberts Noble Foundation, Ardmore, OK). From the Cover 1772 Lignin polymers in nature 1396 Extraterrestrial quasicrystals 1437 Magnetic fields and enzyme reactions 1607 Timing cytokine secretion from T cells 1691 Antibiotics in agriculture Contents COMMENTARIES 1357 Are biochemical reactions affected by weak magnetic fields? THIS WEEK IN PNAS P. J. Hore See companion article on page 1437 1355 In This Issue 1359 Travels in time: Assessing the functional complexity of T cells W. Nicholas Haining See companion article on page 1607 LETTERS (ONLINE ONLY) E206 Femtosecond laser vaporization that preserves PNAS PLUS (AUTHOR SUMMARIES) protein-folded structure: An unproven idea Kathrin Breuker, Owen S. Skinner, and Fred W. McLafferty BIOLOGICAL SCIENCES E207 Reply to Breuker et al.: How laser electrospray mass spectrometry (LEMS) measures condensed phase BIOCHEMISTRY protein
    [Show full text]