Desmond User's Guide

Total Page:16

File Type:pdf, Size:1020Kb

Desmond User's Guide Desmond User’s Guide Desmond Version 2.2 / Document Version 0.3 June 2009 D. E. Shaw Research Notice The Desmond User’s Guide and the information it contains is offered solely for educa‐ tional purposes, as a service to users. It is subject to change without notice, as is the software it describes. D. E. Shaw Research assumes no responsibility or liability regarding the correctness or completeness of the information provided herein, nor for damages or loss suffered as a result of actions taken in accordance with said informa‐ tion. No part of this guide may be reproduced, displayed, transmitted, or otherwise copied in any form without written authorization from D. E. Shaw Research. The software described in this guide is copyrighted and licensed by D. E. Shaw Research under separate agreement. This software may be used only according to the terms and conditions of such agreement. Copyright © 2009 by D. E. Shaw Research. All rights reserved. Trademarks Ethernet is a trademark of Xerox Corporation. InfiniBand is a registered trademark of systemI/O Inc. Intel and Pentium are trademarks of Intel Corporation in the U.S. and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries. All other trademarks are the property of their respective owners. June 2009 Preface Intended audience This guide is intended for computational scientists using Desmond to prepare configura‐ tion and structure files for molecular dynamics simulations. It assumes a broad familiarity with the concepts and techniques of molecular dynamics simulation. Prerequisites Desmond runs on Intel™‐based Linux® systems with Pentium™ 4 or more recent proces‐ sors; running CentOS 3 (RHEL3) or later. Linux clusters can be networked with either Ethernet™ or Infiniband®. To build the source code, Desmond requires gcc Version 4.1.2 and glibc Version 2.3. Viparr requires a recent version of Python; we recommend Version 2.5.1. This guide assumes that someone has prepared Desmond executables for you, either by installing a binary release or by building an executable. About this guide This manual contains the following sections: Key Concepts explains the basic ideas underlying Desmond and describes how Desmond fits into a workflow. June 2009 D. E. Shaw Research i Desmond User’s Guide Running explains the basics of working with configuration files; describes how to invoke the var‐ Desmond ious Desmond executables, including in parallel; and describes how to configure the Desmond executables and built‐in plugins, as well as the optional profiling mechanism. The Global Cell discusses Desmond’s parallelization strategies and describes how to configure the global cell. Preparing a describes how Desmond interprets a structure file, and explains how to use the scripts structure file provided to add force field and constraint information to the structure file. Calculating provides a high‐level overview of configuring force fields; then discusses the computa‐ force and tions involved in, and how to configure, the various interactions. It also describes addi‐ energy tional off‐atom interaction sites. Constraints describes the constraints available to eliminate the fastest vibrational motions and how to configure them. Dynamics summarizes the basic concepts of particle dynamics and describes how to configure the migration interval, timestep scheduling, pressure, and temperature. It also describes each of the available dynamical systems, and how to configure them. Free Energy explains the concepts necessary to configure ligand‐binding and alchemical free‐energy Simulations simulations and those using the Bennett acceptance ratio method, as well as describing how to prepare a structure file for free energy simulations. Extending provides practical details for implementing a plugin, describes the C++ base classes Desmond available for you to subclass, and explains how to load your plugin, what happens when it begins execution, and what happens when it stops. Units explains how numbers provided as configuration parameters are interpreted. Configuration describes configuration file syntax. syntax Clone Radius provides the full set of restrictions on the size of the clone radius, for those who need Restrictions more than the practical guidelines given in Chapter 3. References provides bibliographic information for references given in the text. License includes the licensing restrictions for using Desmond and some of its companion soft‐ Information ware. Format conventions Command lines appear in a monospaced font; in some cases, bolding draws your atten‐ tion to a particular part of the command: mdsim --include equil.cfg Placeholders intended to be replaced by actual values are obliqued: mdsim --tpp 4 --restore checkpoint_file Configuration file examples also appear in a monospaced font: mdsim = { title = w last_time = t1 checkpt = { ... } plugins = [ ... ] ii D. E. Shaw Research June 2009 Format conventions ... } Configuration files are divided into sections, which can in turn contain other sections; parameters occur at all levels. When discussed in the context of their particular section, configuration parameters appear by name in a monospace font, thus: plugins. When discussed outside of the context of their sections, however, configuration parame‐ ters appear as a keypath, in which the name of each enclosing section appears in order from outermost to innermost, separated by periods. For example, force.non- bonded.far.sigma refers to the sigma configuration parameter in the far subsection of the nonbonded subsection of the force section of the configuration file. About the equations The equations in this document are concerned with scalars, vectors, and matrices of vari‐ ous sorts. To help clarify the type of a quantity, equations in this manual use the following conventions: •An upper‐ or lowercase letter without bolding or arrows, such as A or a , is a scalar. •An arrow over a variable, such as A or a , indicates three variables as a three‐dimen‐ sional vector. •A boldfaced lowercase letter, such as a ,is a vector of unspecified dimension, th withai indicating the i element of the vector. •A boldfaced uppercase letter is a matrix of unspecified dimensions, though usually 33× , with Aij being the element of row i and column j in matrix A . Certain quantities that are ‐3n dimensional vectors, such as r , the positions of n particles, are indexed differently. The manual does not use ri to refer to one of its 3n components, th but instead ri denotes the i three‐dimensional vector in r , which is the position of the th i particle in this case. June 2009 D. E. Shaw Research iii Desmond User’s Guide iv D. E. Shaw Research June 2009 Contents Preface i Intended audience . i Prerequisites . i About this guide . i Format conventions. ii About the equations. iii 1. Key Concepts. 1 What is Desmond? . 1 Forces . 2 Particles. 3 Force fields . 4 Space . 4 Time. 5 Dynamics. 5 Using Desmond . 6 Input . 7 Executables and scripts . 7 Output . 7 Workflow. 8 Customizing Desmond . 9 June 2009 D. E. Shaw Research v Desmond User’s Guide 2. Running Desmond . 11 About configuration . 11 Invoking Desmond . 12 Restoring from a checkpoint . 14 Using plugins . 14 Running Desmond in parallel . 16 Configuring Desmond applications . 17 mdsim. 17 minimize . 18 remd. 19 vrun . 21 Naming output files . 22 Configuring the built‐in plugins. 23 anneal . 23 Biasing Force . 24 compute_forces . 27 energy_groups . 27 eneseq . 28 maeff_output . 29 posre_schedule. 29 randomize_velocities . 30 status . 31 trajectory . 31 Configuring optional sections . 32 profile . 32 3. The Global Cell. 35 Parallelization . 35 Configuration . 37 4. Preparing a structure file. 41 Format . 41 Global cell . 43 Particles and pseudoparticles . 43 Force field sections . 44 Adding force field information . 45 Available force fields . 45 Input and output files . 46 Running Viparr . 47 Options to Viparr . 47 Specifying multiple force fields . 48 User‐defined force fields . 49 Adding constraints . 49 Running the build_constraints script . 50 vi D. E. Shaw Research June 2009 5. Calculating force and energy. 51 Configuring force fields . 51 Bonded, pair, and excluded interactions . 54 Stretch terms ..
Recommended publications
  • Molecular Dynamics Simulations in Drug Discovery and Pharmaceutical Development
    processes Review Molecular Dynamics Simulations in Drug Discovery and Pharmaceutical Development Outi M. H. Salo-Ahen 1,2,* , Ida Alanko 1,2, Rajendra Bhadane 1,2 , Alexandre M. J. J. Bonvin 3,* , Rodrigo Vargas Honorato 3, Shakhawath Hossain 4 , André H. Juffer 5 , Aleksei Kabedev 4, Maija Lahtela-Kakkonen 6, Anders Støttrup Larsen 7, Eveline Lescrinier 8 , Parthiban Marimuthu 1,2 , Muhammad Usman Mirza 8 , Ghulam Mustafa 9, Ariane Nunes-Alves 10,11,* , Tatu Pantsar 6,12, Atefeh Saadabadi 1,2 , Kalaimathy Singaravelu 13 and Michiel Vanmeert 8 1 Pharmaceutical Sciences Laboratory (Pharmacy), Åbo Akademi University, Tykistökatu 6 A, Biocity, FI-20520 Turku, Finland; ida.alanko@abo.fi (I.A.); rajendra.bhadane@abo.fi (R.B.); parthiban.marimuthu@abo.fi (P.M.); atefeh.saadabadi@abo.fi (A.S.) 2 Structural Bioinformatics Laboratory (Biochemistry), Åbo Akademi University, Tykistökatu 6 A, Biocity, FI-20520 Turku, Finland 3 Faculty of Science-Chemistry, Bijvoet Center for Biomolecular Research, Utrecht University, 3584 CH Utrecht, The Netherlands; [email protected] 4 Swedish Drug Delivery Forum (SDDF), Department of Pharmacy, Uppsala Biomedical Center, Uppsala University, 751 23 Uppsala, Sweden; [email protected] (S.H.); [email protected] (A.K.) 5 Biocenter Oulu & Faculty of Biochemistry and Molecular Medicine, University of Oulu, Aapistie 7 A, FI-90014 Oulu, Finland; andre.juffer@oulu.fi 6 School of Pharmacy, University of Eastern Finland, FI-70210 Kuopio, Finland; maija.lahtela-kakkonen@uef.fi (M.L.-K.); tatu.pantsar@uef.fi
    [Show full text]
  • Maestro 10.2 User Manual
    Maestro User Manual Maestro 10.2 User Manual Schrödinger Press Maestro User Manual Copyright © 2015 Schrödinger, LLC. All rights reserved. While care has been taken in the preparation of this publication, Schrödinger assumes no responsibility for errors or omissions, or for damages resulting from the use of the information contained herein. Canvas, CombiGlide, ConfGen, Epik, Glide, Impact, Jaguar, Liaison, LigPrep, Maestro, Phase, Prime, PrimeX, QikProp, QikFit, QikSim, QSite, SiteMap, Strike, and WaterMap are trademarks of Schrödinger, LLC. Schrödinger, BioLuminate, and MacroModel are registered trademarks of Schrödinger, LLC. MCPRO is a trademark of William L. Jorgensen. DESMOND is a trademark of D. E. Shaw Research, LLC. Desmond is used with the permission of D. E. Shaw Research. All rights reserved. This publication may contain the trademarks of other companies. Schrödinger software includes software and libraries provided by third parties. For details of the copyrights, and terms and conditions associated with such included third party software, use your browser to open third_party_legal.html, which is in the docs folder of your Schrödinger software installation. This publication may refer to other third party software not included in or with Schrödinger software ("such other third party software"), and provide links to third party Web sites ("linked sites"). References to such other third party software or linked sites do not constitute an endorsement by Schrödinger, LLC or its affiliates. Use of such other third party software and linked sites may be subject to third party license agreements and fees. Schrödinger, LLC and its affiliates have no responsibility or liability, directly or indirectly, for such other third party software and linked sites, or for damage resulting from the use thereof.
    [Show full text]
  • Kepler Gpus and NVIDIA's Life and Material Science
    LIFE AND MATERIAL SCIENCES Mark Berger; [email protected] Founded 1993 Invented GPU 1999 – Computer Graphics Visual Computing, Supercomputing, Cloud & Mobile Computing NVIDIA - Core Technologies and Brands GPU Mobile Cloud ® ® GeForce Tegra GRID Quadro® , Tesla® Accelerated Computing Multi-core plus Many-cores GPU Accelerator CPU Optimized for Many Optimized for Parallel Tasks Serial Tasks 3-10X+ Comp Thruput 7X Memory Bandwidth 5x Energy Efficiency How GPU Acceleration Works Application Code Compute-Intensive Functions Rest of Sequential 5% of Code CPU Code GPU CPU + GPUs : Two Year Heart Beat 32 Volta Stacked DRAM 16 Maxwell Unified Virtual Memory 8 Kepler Dynamic Parallelism 4 Fermi 2 FP64 DP GFLOPS GFLOPS per DP Watt 1 Tesla 0.5 CUDA 2008 2010 2012 2014 Kepler Features Make GPU Coding Easier Hyper-Q Dynamic Parallelism Speedup Legacy MPI Apps Less Back-Forth, Simpler Code FERMI 1 Work Queue CPU Fermi GPU CPU Kepler GPU KEPLER 32 Concurrent Work Queues Developer Momentum Continues to Grow 100M 430M CUDA –Capable GPUs CUDA-Capable GPUs 150K 1.6M CUDA Downloads CUDA Downloads 1 50 Supercomputer Supercomputers 60 640 University Courses University Courses 4,000 37,000 Academic Papers Academic Papers 2008 2013 Explosive Growth of GPU Accelerated Apps # of Apps Top Scientific Apps 200 61% Increase Molecular AMBER LAMMPS CHARMM NAMD Dynamics GROMACS DL_POLY 150 Quantum QMCPACK Gaussian 40% Increase Quantum Espresso NWChem Chemistry GAMESS-US VASP CAM-SE 100 Climate & COSMO NIM GEOS-5 Weather WRF Chroma GTS 50 Physics Denovo ENZO GTC MILC ANSYS Mechanical ANSYS Fluent 0 CAE MSC Nastran OpenFOAM 2010 2011 2012 SIMULIA Abaqus LS-DYNA Accelerated, In Development NVIDIA GPU Life Science Focus Molecular Dynamics: All codes are available AMBER, CHARMM, DESMOND, DL_POLY, GROMACS, LAMMPS, NAMD Great multi-GPU performance GPU codes: ACEMD, HOOMD-Blue Focus: scaling to large numbers of GPUs Quantum Chemistry: key codes ported or optimizing Active GPU acceleration projects: VASP, NWChem, Gaussian, GAMESS, ABINIT, Quantum Espresso, BigDFT, CP2K, GPAW, etc.
    [Show full text]
  • Trends in Atomistic Simulation Software Usage [1.3]
    A LiveCoMS Perpetual Review Trends in atomistic simulation software usage [1.3] Leopold Talirz1,2,3*, Luca M. Ghiringhelli4, Berend Smit1,3 1Laboratory of Molecular Simulation (LSMO), Institut des Sciences et Ingenierie Chimiques, Valais, École Polytechnique Fédérale de Lausanne, CH-1951 Sion, Switzerland; 2Theory and Simulation of Materials (THEOS), Faculté des Sciences et Techniques de l’Ingénieur, École Polytechnique Fédérale de Lausanne, CH-1015 Lausanne, Switzerland; 3National Centre for Computational Design and Discovery of Novel Materials (MARVEL), École Polytechnique Fédérale de Lausanne, CH-1015 Lausanne, Switzerland; 4The NOMAD Laboratory at the Fritz Haber Institute of the Max Planck Society and Humboldt University, Berlin, Germany This LiveCoMS document is Abstract Driven by the unprecedented computational power available to scientific research, the maintained online on GitHub at https: use of computers in solid-state physics, chemistry and materials science has been on a continuous //github.com/ltalirz/ rise. This review focuses on the software used for the simulation of matter at the atomic scale. We livecoms-atomistic-software; provide a comprehensive overview of major codes in the field, and analyze how citations to these to provide feedback, suggestions, or help codes in the academic literature have evolved since 2010. An interactive version of the underlying improve it, please visit the data set is available at https://atomistic.software. GitHub repository and participate via the issue tracker. This version dated August *For correspondence: 30, 2021 [email protected] (LT) 1 Introduction Gaussian [2], were already released in the 1970s, followed Scientists today have unprecedented access to computa- by force-field codes, such as GROMOS [3], and periodic tional power.
    [Show full text]
  • In Silico Strategy for Targeting the Mtor Kinase at Rapamycin Binding Site by Small Molecules
    molecules Article In Silico Strategy for Targeting the mTOR Kinase at Rapamycin Binding Site by Small Molecules Serena Vittorio 1 , Rosaria Gitto 1 , Ilenia Adornato 1, Emilio Russo 2 and Laura De Luca 1,* 1 Department of Chemical, Biological, Pharmaceutical and Environmental Sciences, University of Messina, Viale Palatucci 13, I-98168 Messina, Italy; [email protected] (S.V.); [email protected] (R.G.); [email protected] (I.A.) 2 Science of Health Department, School of Medicine, University “Magna Graecia” of Catanzaro, Viale Europa e Germaneto, I-88100 Catanzaro, Italy; [email protected] * Correspondence: [email protected] or [email protected]; Tel.: +39-090-676-6410 Abstract: Computer aided drug-design methods proved to be powerful tools for the identification of new therapeutic agents. We employed a structure-based workflow to identify new inhibitors targeting mTOR kinase at rapamycin binding site. By combining molecular dynamics (MD) simulation and pharmacophore modelling, a simplified structure-based pharmacophore hypothesis was built starting from the FKBP12-rapamycin-FRB ternary complex retrieved from RCSB Protein Data Bank (PDB code 1FAP). Then, the obtained model was used as filter to screen the ZINC biogenic compounds library, containing molecules derived from natural sources or natural-inspired compounds. The resulting hits were clustered according to their similarity; moreover, compounds showing the highest pharmacophore fit-score were chosen from each cluster. The selected molecules were subjected to docking studies to clarify their putative binding mode. The binding free energy of the obtained complexes was calculated by MM/GBSA method and the hits characterized by the lowest DGbind Citation: Vittorio, S.; Gitto, R.; values were identified as potential mTOR inhibitors.
    [Show full text]
  • Lawrence Berkeley National Laboratory Recent Work
    Lawrence Berkeley National Laboratory Recent Work Title From NWChem to NWChemEx: Evolving with the Computational Chemistry Landscape. Permalink https://escholarship.org/uc/item/4sm897jh Journal Chemical reviews, 121(8) ISSN 0009-2665 Authors Kowalski, Karol Bair, Raymond Bauman, Nicholas P et al. Publication Date 2021-04-01 DOI 10.1021/acs.chemrev.0c00998 Peer reviewed eScholarship.org Powered by the California Digital Library University of California From NWChem to NWChemEx: Evolving with the computational chemistry landscape Karol Kowalski,y Raymond Bair,z Nicholas P. Bauman,y Jeffery S. Boschen,{ Eric J. Bylaska,y Jeff Daily,y Wibe A. de Jong,x Thom Dunning, Jr,y Niranjan Govind,y Robert J. Harrison,k Murat Keçeli,z Kristopher Keipert,? Sriram Krishnamoorthy,y Suraj Kumar,y Erdal Mutlu,y Bruce Palmer,y Ajay Panyala,y Bo Peng,y Ryan M. Richard,{ T. P. Straatsma,# Peter Sushko,y Edward F. Valeev,@ Marat Valiev,y Hubertus J. J. van Dam,4 Jonathan M. Waldrop,{ David B. Williams-Young,x Chao Yang,x Marcin Zalewski,y and Theresa L. Windus*,r yPacific Northwest National Laboratory, Richland, WA 99352 zArgonne National Laboratory, Lemont, IL 60439 {Ames Laboratory, Ames, IA 50011 xLawrence Berkeley National Laboratory, Berkeley, 94720 kInstitute for Advanced Computational Science, Stony Brook University, Stony Brook, NY 11794 ?NVIDIA Inc, previously Argonne National Laboratory, Lemont, IL 60439 #National Center for Computational Sciences, Oak Ridge National Laboratory, Oak Ridge, TN 37831-6373 @Department of Chemistry, Virginia Tech, Blacksburg, VA 24061 4Brookhaven National Laboratory, Upton, NY 11973 rDepartment of Chemistry, Iowa State University and Ames Laboratory, Ames, IA 50011 E-mail: [email protected] 1 Abstract Since the advent of the first computers, chemists have been at the forefront of using computers to understand and solve complex chemical problems.
    [Show full text]
  • Elucidating Binding Sites and Affinities of Erα Agonist and Antagonist to Human Alpha-Fetoprotein by in Silico Modeling and Point Mutagenesis Nurbubu T
    Preprints (www.preprints.org) | NOT PEER-REVIEWED | Posted: 29 December 2019 doi:10.20944/preprints201912.0374.v1 Peer-reviewed version available at Int. J. Mol. Sci. 2020, 21, 893; doi:10.3390/ijms21030893 Elucidating Binding Sites and Affinities of ERα Agonist and Antagonist to Human Alpha-Fetoprotein by in silico Modeling and Point Mutagenesis Nurbubu T. Moldogazieva1*, Daria S. Ostroverkhova1,2, Nikolai N. Kuzmich1,3, Vladimir V. Kadochnikov4, Alexander A. Terentiev5, Yuri B. Porozov1,4 1 Laboratory of Bioinformatics, I.M. Sechenov First Moscow State Medical University (Sechenov University); Moscow, Russia; 2Department of Bioengineering, M.V. Lomonosov Moscow State University; Moscow, Russia; 3Department of Drug Safety, I.M. Smorodintsev Research Institute of Influenza, WHO National Influenza Centre of Russia; Saint Petersburg, Russia 4Department of Information and Communication Technologies, Saint Petersburg National Research University of Information Technologies, Mechanics and Optics; Saint Petersburg, Russia 5Deparment of Biochemistry and Molecular Biology, N.I. Pirogov Russian National Research Medical University; Moscow Russia *Corresponding author: Nurbubu T. Moldogazieva, e-mail: [email protected] (NM) ¶ These authors contributed equally to this work Short title: Binding of ERα ligands to human alpha-fetoprotein Key words: alpha-fetoprotein, estrogens, selective estrogen receptor modulators, homology-based modeling, molecular docking, protein-ligand interaction, amino acid substitutions. Abbreviations: HAFP, human alpha-fetoprotein; HSA, human serum albumin; E2, 17β-estradiol; DES, diethylstilbestrol. Author contribution: Conceptualization, Nurbubu T. Moldogazieva, Alexander A. Terentiev and Yuri B. Porozov; Data curation, Nurbubu T. Moldogazieva; Formal analysis, Nurbubu T. Moldogazieva and Nikolai N. Kuzmich; Investigation, Daria S. Ostroverkhova and Vladimir V. Kadochnikov; Methodology, Nikolai N. Kuzmich; Supervision, Alexander A.
    [Show full text]
  • Pelvic Fin Flexibility in Tree Climbing Fish
    G Model ZOOL-25524; No. of Pages 7 ARTICLE IN PRESS Zoology xxx (2016) xxx–xxx Contents lists available at ScienceDirect Zoology journal homepage: www.elsevier.com/locate/zool The significance of pelvic fin flexibility for tree climbing fish a b a,b c Adhityo Wicaksono , Saifullah Hidayat , Yudithia Damayanti , Desmond Soo Mun Jin , a b,∗ a,∗ Erly Sintya , Bambang Retnoaji , Parvez Alam a Laboratory of Paper Coating and Converting, Centre for Functional Materials, Abo Akademi University, Porthaninkatu 3, 20500 Turku, Finland b Laboratory of Animal Embryology, Faculty of Biology, Universitas Gadjah Mada, Yogyakarta, Indonesia c Rapid Gain Global Corporation, Singapore a r t i c l e i n f o a b s t r a c t Article history: In this article, we compare the characteristics of biomechanical attachment exhibited by two morpholog- Received 1 March 2016 ically different mudskipper species, Boleophthalmus boddarti (with fused pelvic fins) and Periophthalmus Received in revised form 14 April 2016 variabilis (with unfused pelvic fins). P. variabilis is a tree and rock climber while B. boddarti dwells in the Accepted 17 June 2016 muddy shallows and is unable to climb. Our aim in this article is to determine whether it is predominantly Available online xxx chemical or morphological properties of the pelvic fins from each species that may allow P. variabilis to climb trees whilst preventing B. boddarti from doing the same. To fulfil our objective we perform friction Keywords: and suction resistance tests, Fourier transform infrared spectroscopy of the mucosal secretions under Mudskipper the fins, direct geometrical measurements and finite element modelling.
    [Show full text]
  • Chemistry Packages at CHPC
    Chemistry Packages at CHPC Anita M. Orendt Center for High Performance Computing [email protected] Fall 2014 Purpose of Presentation • Identify the computational chemistry software and related tools currently available at CHPC • Present brief overview of these packages • Present how to access packages on CHPC • Information on usage of Gaussian09 http://www.chpc.utah.edu Ember Lonepeak /scratch/lonepeak/serial 141 nodes/1692 cores 16 nodes/256 cores Infiniband and GigE Large memory, GigE General 70 nodes/852 cores 12 GPU nodes (6 General) Kingspeak 199 nodes/4008 cores Ash cluster (417 nodes) Infiniband and GigE Switch General 44 nodes/832 cores Apex Arch Great Wall PFS Telluride cluster (93 nodes) /scratch/ibrix meteoXX/atmosXX nodes NFS Home NFS Administrative Directories & /scratch/kingspeak/serial Group Nodes Directories 10/1/14 http://www.chpc.utah.edu Slide 3 Brief Overview CHPC Resources • Computational Clusters – kingspeak, ember – general allocation and owner-guest on owner nodes – lonepeak – no allocation – ash and telluride – can run as smithp-guest and cheatham-guest, respectively • Home directory – NFS mounted on all clusters – /uufs/chpc.utah.edu/common/home/<uNID> – generally not backed up (there are exceptions) • Scratch systems – /scratch/ibrix/chpc_gen – kingspeak, ember, ash, telluride – 56TB – /scratch/kingspeak/serial – kingspeak, ember, ash – 175TB – /scratch/lonepeak/serial – lonepeak – 33 TB – /scratch/local on compute nodes • Applications – /uufs/chpc.utah.edu/sys/pkg (use for lonepeak, linux desktops if chpc
    [Show full text]
  • Download Article (PDF)
    International Journal of Networked and Distributed Computing, Vol. 5, No. 1 (January 2017) 52–61 ___________________________________________________________________________________________________________ An FPGA Accelerator for Molecular Dynamics Simulation Using OpenCL Hasitha Muthumala Waidyasooriya 1, Masanori Hariyama 1, Kota Kasahara 2 1 Graduate School of Information Sciences, Tohoku University, Aoba 6-6-05, Aramaki, Aoba, Sendai, Miyagi 980-8579, Japan E-mail: {hasitha, hariyama}@tohoku.ac.jp 2 College of Life Sciences, Ritsumeikan University, 1-1-1, Noji-higashi, Kusatsu, Shiga 525-8577, Japan E-mail: [email protected] Abstract Molecular dynamics (MD) simulations are very important to study physical properties of the atoms and molecules. However, a huge amount of processing time is required to simulate a few nano-seconds of an actual experiment. Although the hardware acceleration using FPGAs provides promising results, huge design time and hardware design skills are required to implement an accelerator successfully. In this paper, we use a heterogeneous computing system for MD simulations, that can be used in C-based programming environment. We propose an FPGA accelerator designed using C-based OpenCL for the heterogeneous environment. We achieved over 4.6 times of speed-up compared to CPU-based processing, by using only 36% of the Stratix V FPGA resources. We also evaluate the processing times of different tasks in the heterogeneous environment. Keywords: OpenCL for FPGA, molecular dynamics simulation, hardware acceleration, scientific com- puting. 1. Introduction tation results of one iteration are used as the inputs in the next iteration. Each iteration consists of two major phases: force computation and motion update 1 Molecular dynamics (MD) simulations are very as shown in Fig.1.
    [Show full text]
  • Download PDF 137.14 KB
    Why should biochemistry students be introduced to molecular dynamics simulations—and how can we introduce them? Donald E. Elmore Department of Chemistry and Biochemistry Program; Wellesley College; Wellesley, MA 02481 Abstract Molecular dynamics (MD) simulations play an increasingly important role in many aspects of biochemical research but are often not part of the biochemistry curricula at the undergraduate level. This article discusses the pedagogical value of exposing students to MD simulations and provides information to help instructors consider what software and hardware resources are necessary to successfully introduce these simulations into their courses. In addition, a brief review of the MD based activities in this issue and other sources are provided. Keywords molecular dynamics simulations, molecular modeling, biochemistry education, undergraduate education, computational chemistry Published in Biochemistry and Molecular Biology Education, 2016, 44:118-123. Several years ago, I developed a course on the modeling of biochemical systems at Wellesley College, which was described in more detail in a previous issue of this journal [1]. As I set out to design that course, I decided to place a particular emphasis on molecular dynamics (MD) simulations. In full candor, this decision was likely related to my experience integrating these simulations into my own research, but I also believe it was due to some inherent advantages of exposing students to this particular computational approach. Notably, even as this initial biochemical molecular modeling course evolved into a more general (i.e. not solely biochemical) course in computational chemistry, a significant emphasis on MD has remained, emphasizing the central role I and my other colleague who teaches the current course felt it played in students’ education.
    [Show full text]
  • Lessons Learned from Comparing Molecular Dynamics Engines on the SAMPL5 Dataset
    JCAMD manuscript No. (will be inserted by the editor) Lessons learned from comparing molecular dynamics engines on the SAMPL5 dataset Michael R. Shirts · Christoph Klein · Jason M. Swails · Jian Yin · Michael K. Gilson · David L. Mobley · David A. Case · Ellen D. Zhong Received: date / Accepted: date Abstract We describe our efforts to prepare common starting structures and models for the SAMPL5 blind prediction challenge. We generated the starting input files and single configuration potential energies for the host-guest in the SAMPL5 blind prediction challenge for the GROMACS, AMBER, LAMMPS, DESMOND and CHARMM molecular simulation programs. All conversions were fully automated from the originally prepared AMBER input files using a combination of the ParmEd and InterMol conversion programs. We find that the energy calculations for all molecular dynamics engines for this molecular set agree to a better than 0.1% relative absolute energy for all energy components, and in most cases an order of magnitude better, when Michael R. Shirts Department of Chemical and Biological Engineering, University of Colorado Boulder, Boul- der, Colorado, USA E-mail: [email protected] Christoph Klein Department of Chemical Engineering, Vanderbilt University, Nashville, TN, USA Jason M. Swails Department of Chemistry and Chemical Biology, Rutgers University, Rutgers, NJ, USA Jian Yin Skaggs School of Pharmacy and Pharmaceutical Sciences, University of California, San Diego, CA, USA Michael K. Gilson Skaggs School of Pharmacy and Pharmaceutical Sciences, University of California, San Diego, CA, USA David L. Mobley Departments of Pharmaceutical Sciences and Chemistry, University of California, Irvine, Irvine, CA, USA David A. Case Department of Chemistry and Chemical Biology, Rutgers University, Rutgers, NJ, USA Ellen D.
    [Show full text]