Computational Chemistry (F14CCH)

Total Page:16

File Type:pdf, Size:1020Kb

Computational Chemistry (F14CCH) Computational Chemistry (F14CCH) Connecting to Remote Machines Using CCP1GUI CONDOR is a queuing system that can be accessed from the Linux Left Mouse Button: Turn machines of the theoretical research groups and distributes the Hold right + up or down: Zoom submitted jobs to free compute nodes. Since the machines are protected Hold wheel + move: Move by firewalls you have to connect to a specific node, Porthos, on which you were given an account. Click Atom => Select Fragment => Add Assign all elements, also the hydrogens, before creating the GAMESS Use PuTTY to connect to remote machines, porthos in this case. Open input file (click on “All X => H” in the tool panel). If you cannot see one of putty.exe, enter the hostname as porthos.chem.nott.ac.uk. The login the windows of CCP1GUI, it might be hiding outside the desktop area. is your university username and the default password is Right click on the taskbar icon => Move => hold cursor keys to the left ChangeMeSoon. When you first log in on CONDOR you must change until the window appears. your password using kpasswd! It must be strong, including mixed case letters and numbers. Creating a GAMESS Input File / Running a Local Job Compute => GAMESS-UK Copying Files from/to Porthos To exchange files with porthos in order to submit files to CONDOR for Molecule: Options => Title calculation or copy results back, you first have to copy them from the Task => select requested task Windows machine to porthos via the SSHClient. It cannot be installed in Theory: Select SCF Method (and post SCF Method, if required) the CAL but can be accessed at NAL => Accessing the Internet => Optimisation: Runtype => Opt. Coords => Cartesian SSH FTP Client Job: Job Group => Job Name (no blanks!) Select “Quick connect”: To write an input file for submisstion to CONDOR: Host name: porthos.chem.nott.ac.uk Calc => Write Inputfile (to C:\ccp1gui\jobname.in) User name: your IS user name (pcyz...) To run the job on the local machine (for short jobs): If you do not see a split window with your local machine left and the Calc => Run remote machine to the right, click on “Window => New File Transfer”. Job Crashes With ^M Characters in the Output file When logged in on porthos with the SSHClient, drag-and-drop all your If this happens, then the input file was saved in DOS-format. To change files from the Explorer or the left window to your directory on porthos that it should be sufficient if you do: (right) and vice versa. vi file.in Caution: The SSHClient also offers a small terminal but due to :set ff=unix problems with vim it is strongly recommended to use PuTTY instead. :wq PuTTY makes life a great deal easier with e.g. text colours. Do not use If you additionally see the “^M” characters in the .in file, you might also the FTP client terminal. need :%s/^M//g (to create “^M” type “Ctrl+v m”, not simply ^M!) To log off properly click on “Disconnect” in the tool bar or File => Disconnect Computational Chemistry (F14CCH) Important Unix Commands Using vim cd d change to directory d Vim has two modes: insertion mode, and command mode. You start in command cd change back to home directory mode, where almost every key and combination of keys is assigned an operation (e.g. „delete a line“). Insertion mode begins upon entering an insertion or change command ( , , , ). [ ] returns to command mode (where you can quit). Most mkdir d create new directory d i a c o Esc commands execute as soon as you type them except for “colon” commands which cp f1 [f2…] d copy files fx to directory d mv f1 [f2…] d move files fx to directory d execute when you press the enter key. mv f1 f2 move (rename) file f1 to f2 vi [f] start vim (and edit the file f if given), vim works as weel rm f delete file f vimdiff f1 f2 view the differences between files f1 f2 delete directory f (must be empty) rmdir d vimtutor basic tutorial for handling vim (very helpful, essential!) rm -r d delete non-empty directory d (be extremely careful!!!) list files in directory In Command Mode ls :w file save to file (or simply save, if file is omitted) ls -l or l list detailed output of directory :q quit (use :q! to quit without saving) pwd print working (current) directory exit quit the current shell (or return to where you came from) i enter the input mode (to enter text) Esc leave the input mode (enter command mode) undo last change <tab> use to auto-complete filenames in the shell u Ctrl-r redo last undo cat f list contents of file f Shift-v select lines (use Ctrl-v to select a text block) more f list file f by screen (scroll with space, quit with q) dd delete current line less f list file f by screen (PgUp/Down, Cursorkeys, quit with q) y copy selected lines lists all lines of file f which contain the pattern ptn grep „ptn“ f P or p paste the deleted text before or after current position list differences between files f1 and f2 (see also vimdiff!) diff f1 f2 /string search for string search forward or backward for next match man command displays the manual page of the given command N or n gg go to beginning of file G go to end of file condor_submit f submit file f to the condor queuing system replace this with that (the % means in the whole file) condor_q view the condor queue (which jobs are being processed) :%s/this/that/g condor_rm id remove the job with number id (shown by condor_q) condor_status check the status of all available condor nodes and CPUs Cut and Paste a Block of Text (e.g. New Atom Coordinates) Ctrl–v begin block selection ssh [email protected] to select the text block connect to PORTHOS via a Mac OS or Linux terminal (replacing Putty) cursor keys scp –r [email protected]:~/charmm . y to copy the selection copy the folder charmm from PORTHOS to the current directory :e file to open an existing or create a new file (if needed) scp file [email protected]:~/charmm p to paste the copied text copy the file file from the current directory to the folder charmm on PORTHOS :w save the file Computational Chemistry (F14CCH) Using CONDOR The CONDOR Submission Script Only for the CHARMM water tutorial you are going to execute CHARMM directly on To submit a job to the CONDOR queuing system, you need the input files for PORTHOS. For the other calculations you have to use a submission script (see further CHARMM or GAMESS and the submission script with the instructions for CONDOR. A down), which sends the job to one of the compute nodes. If the larger calculations submission script, e.g. for CHARMM in this case, looks like this: were run on PORTHOS, the whole queuing system may crash! universe = vanilla executable = /opt/condor/software/bin/charmm Using CHARMM with CONDOR input = build.inp output = build.out The folder charmm contains six input files for the MD simulation (md_*.inp) and the error = build.e run script for them (charmm.sub, in which you have to adapt some settings to your log = build.log job). Edit md_build.inp and change the amino acid to the one which is to be calculated. The file name prot.pdb cannot be changed, since all following scripts should_transfer_files = YES will use it. To run the simulation submit the job with when_to_transfer_output = ON_EXIT transfer_input_files = build.inp,file1,file2 condor_submit charmm.sub queue Check the output files, whether all calculations ran successfully (a skull at the end of the file is usually a bad sign). If everything looks OK, copy it with the SSHClient to For each job you have to configure the submission script appropriately. This includes your local machine to analyse it using CCP1GUI for example. the sections input, output, error and log as well as the line transfer_input_files. The latter has to list all files (separated by commas), which have to be submitted to the machine that calculates the job. Using GAMESS with CONDOR You can name the submission script however you like and can simply copy the template file to a new name, which fits the current job. Keeping the submission script Copy the .in file created by CCP1GUI to the folder gamess on PORTHOS (or create instead of always using the same makes it easier later to rerun the job in case a new folder for it and copy the submission script into it as well). The folder contains something went wrong. the run script , in which you have to adapt some settings to your job gamess.sub (see the following section for that). After this submit the job with condor_submit gamess.sub The Text File Format Differs Under Windows and Unix The most important information is at the very end of the output file. Use the “G” Unix uses a different text format than Windows does. Notepad for example will not command in vim to get there fast (rather than pressing 200 times PageDown…). recognize line feeds in a Unix text file. You can change the file format in vim using :set ff=dos and :set ff=unix, respectively. Under Windows you should not Usually it is useful to run a “rough” optimization at first using a smaller basis set and use Notepad but a decent editor, e.g.
Recommended publications
  • MODELLER 10.1 Manual
    MODELLER A Program for Protein Structure Modeling Release 10.1, r12156 Andrej Saliˇ with help from Ben Webb, M.S. Madhusudhan, Min-Yi Shen, Guangqiang Dong, Marc A. Martı-Renom, Narayanan Eswar, Frank Alber, Maya Topf, Baldomero Oliva, Andr´as Fiser, Roberto S´anchez, Bozidar Yerkovich, Azat Badretdinov, Francisco Melo, John P. Overington, and Eric Feyfant email: modeller-care AT salilab.org URL https://salilab.org/modeller/ 2021/03/12 ii Contents Copyright notice xxi Acknowledgments xxv 1 Introduction 1 1.1 What is Modeller?............................................. 1 1.2 Modeller bibliography....................................... .... 2 1.3 Obtainingandinstallingtheprogram. .................... 3 1.4 Bugreports...................................... ............ 4 1.5 Method for comparative protein structure modeling by Modeller ................... 5 1.6 Using Modeller forcomparativemodeling. ... 8 1.6.1 Preparinginputfiles . ............. 8 1.6.2 Running Modeller ......................................... 9 2 Automated comparative modeling with AutoModel 11 2.1 Simpleusage ..................................... ............ 11 2.2 Moreadvancedusage............................... .............. 12 2.2.1 Including water molecules, HETATM residues, and hydrogenatoms .............. 12 2.2.2 Changing the default optimization and refinement protocol ................... 14 2.2.3 Getting a very fast and approximate model . ................. 14 2.2.4 Building a model from multiple templates . .................. 15 2.2.5 Buildinganallhydrogenmodel
    [Show full text]
  • 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]
  • Parameterizing a Novel Residue
    University of Illinois at Urbana-Champaign Luthey-Schulten Group, Department of Chemistry Theoretical and Computational Biophysics Group Computational Biophysics Workshop Parameterizing a Novel Residue Rommie Amaro Brijeet Dhaliwal Zaida Luthey-Schulten Current Editors: Christopher Mayne Po-Chao Wen February 2012 CONTENTS 2 Contents 1 Biological Background and Chemical Mechanism 4 2 HisH System Setup 7 3 Testing out your new residue 9 4 The CHARMM Force Field 12 5 Developing Topology and Parameter Files 13 5.1 An Introduction to a CHARMM Topology File . 13 5.2 An Introduction to a CHARMM Parameter File . 16 5.3 Assigning Initial Values for Unknown Parameters . 18 5.4 A Closer Look at Dihedral Parameters . 18 6 Parameter generation using SPARTAN (Optional) 20 7 Minimization with new parameters 32 CONTENTS 3 Introduction Molecular dynamics (MD) simulations are a powerful scientific tool used to study a wide variety of systems in atomic detail. From a standard protein simulation, to the use of steered molecular dynamics (SMD), to modelling DNA-protein interactions, there are many useful applications. With the advent of massively parallel simulation programs such as NAMD2, the limits of computational anal- ysis are being pushed even further. Inevitably there comes a time in any molecular modelling scientist’s career when the need to simulate an entirely new molecule or ligand arises. The tech- nique of determining new force field parameters to describe these novel system components therefore becomes an invaluable skill. Determining the correct sys- tem parameters to use in conjunction with the chosen force field is only one important aspect of the process.
    [Show full text]
  • Molecular Simulation and Structure Prediction Using CHARMM and the MMTSB Tool Set Introduction
    Molecular simulation and structure prediction using CHARMM and the MMTSB Tool Set Introduction Charles L. Brooks III MMTSB/CTBP 2006 Summer Workshop MMTSB/CTBP Summer Workshop © Charles L. Brooks III, 2006. CTBP and MMTSB: Who are we? • The CTBP is the Center for Theoretical Biological Physics – Funded by the NSF as a Physics Frontiers Center – Partnership between UCSD, Scripps and Salk, lead by UCSD • The CTBP encompasses a broad spectrum of research and training activities at the forefront of the biology- physics interface. – Principal scientists include • José Onuchic, Herbie Levine, Henry Abarbanel, Charles Brooks, David Case, Mike Holst, Terry Hwa, David Kleinfeld, Andy McCammon, Wouter Rappel, Terry Sejnowski, Wei Wang, Peter Wolynes MMTSB/CTBP Summer Workshop © Charles L. Brooks III, 2006. CTBP and MMTSB: Who are we? MMTSB/CTBP Summer Workshop http://ctbp.ucsd.edu © Charles L. Brooks III, 2006. CTBP and MMTSB: Who are we? • The MMTSB is the Center for Multi-scale Modeling Tools for Structural Biology – Funded by the NIH as a National Research Resource Center – Partnership between Scripps and Georgia Tech, lead by Scripps • The MMTSB aims to develop new tools and theoretical models to aid molecular and structural biologists in interpreting their biological data. – Principal scientists include • Charles Brooks, David Case, Steve Harvey, Jack Johnson, Vijay Reddy, Jeff Skolnick MMTSB/CTBP Summer Workshop © Charles L. Brooks III, 2006. CTBP and MMTSB: Who are we? http://mmtsb.scripps.edu MMTSB/CTBP Summer Workshop © Charles L. Brooks III, 2006. CTBP and MMTSB: Who are we? • Activities – Fundamental research across a broad spectrum – Software and methods development and distribution • MMTSB distributes multiple software packages as well as hosts a variety of web services and databases – Training and research workshops and educational outreach • Both centers have extensive workshop programs – Visitors • Both centers host visitors and collaborators for short and longer term (sabbatical) visits MMTSB/CTBP Summer Workshop © Charles L.
    [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]
  • Application of Various Molecular Modelling Methods in the Study of Estrogens and Xenoestrogens
    International Journal of Molecular Sciences Review Application of Various Molecular Modelling Methods in the Study of Estrogens and Xenoestrogens Anna Helena Mazurek 1 , Łukasz Szeleszczuk 1,* , Thomas Simonson 2 and Dariusz Maciej Pisklak 1 1 Chair and Department of Physical Pharmacy and Bioanalysis, Department of Physical Chemistry, Medical Faculty of Pharmacy, University of Warsaw, Banacha 1 str., 02-093 Warsaw Poland; [email protected] (A.H.M.); [email protected] (D.M.P.) 2 Laboratoire de Biochimie (CNRS UMR7654), Ecole Polytechnique, 91-120 Palaiseau, France; [email protected] * Correspondence: [email protected]; Tel.: +48-501-255-121 Received: 21 July 2020; Accepted: 1 September 2020; Published: 3 September 2020 Abstract: In this review, applications of various molecular modelling methods in the study of estrogens and xenoestrogens are summarized. Selected biomolecules that are the most commonly chosen as molecular modelling objects in this field are presented. In most of the reviewed works, ligand docking using solely force field methods was performed, employing various molecular targets involved in metabolism and action of estrogens. Other molecular modelling methods such as molecular dynamics and combined quantum mechanics with molecular mechanics have also been successfully used to predict the properties of estrogens and xenoestrogens. Among published works, a great number also focused on the application of different types of quantitative structure–activity relationship (QSAR) analyses to examine estrogen’s structures and activities. Although the interactions between estrogens and xenoestrogens with various proteins are the most commonly studied, other aspects such as penetration of estrogens through lipid bilayers or their ability to adsorb on different materials are also explored using theoretical calculations.
    [Show full text]
  • CHARMM WORKSHOP 1.0 1. Introduction 2. Help
    CHARMM WORKSHOP 1.0 Arjan van der Vaart Department of Chemistry University of South Florida [email protected] 1. Introduction CHARMM (Chemistry at HARvard Macromolecular Mechanics) is a computer program for the simulation of biomolecular systems. Initial development of the program started in the early 1970's in the lab of Prof. Karplus at Harvard University, leading to the first molecular dynamics study of a protein (McCammon, Gelin, and Karplus, Nature 267, 585 (1977)). Today, more than 20 groups worldwide work on the maintenance and further development of the program. Important features of the program are: 1. It is largely self-contained The setup, actual calculations, and analysis are all done by the same program. 2. It is fairly complete Most simulation techniques, force fields, and analysis tools pertinent to biomolecules are part of the CHARMM program. 3. The CHARMM interface works like a programming language Commands resemble the Fortran programming language, various mathematical manipulations on a selected set of internal and external variables are possible, and commands can include loop structures. This workshop will provide a short introduction to the CHARMM program. After the workshop, participants should be able to setup, execute, and analyze standard simulation protocols. 2. Help In the 1970's the working name for the CHARMM program was HARMM (HARvard Macromolecular Mechanics). This name should serve as a warning that CHARMM may be daunting and/or frustrating for users. The program has many options and features; making it a powerful and flexible tool on the one hand, and a difficult program to use on the other.
    [Show full text]
  • Autodock 3 User's Guide
    User’s Guide AutoDock Automated Docking of Flexible Ligands to Receptors 3 Version 3.0.5 Garrett M. Morris David S. Goodsell Ruth Huey William E. Hart Scott Halliday Rik Belew Arthur J. Olson 2 Important AutoDock is distributed free of charge for academic and non-commercial use. There are some caveats, however. Firstly, since we do not receive funding to support the academic community of users, we cannot guarantee rapid (or even slow) response to queries on installation and use. While there is documentation, it may require at least some basic Unix abilities to install. If you need more support for the AutoDock code, a commercial version (with support) is available from Oxford Molecular (http://www.oxmol.com). If you can’t afford support, but still need help: (1) Ask your local system administrator or programming guru for help about compiling, using Unix/Linux, etc.. (2) Consult the AutoDock web site, where you will find a wealth of information and a FAQ (Frequently Asked Questions) page with answers on AutoDock: http://www.scripps.edu/pub/olson-web/doc/autodock/ (3) If you can’t find the answer to your problem, send your question to the Computational Chemistry List (CCL). There are many seasoned users of computational chemistry software and some AutoDock users who may already know the answer to your question. You can find out more about the CCL on the web, at: http://ccl.osc.edu/ccl/welcome.html (4) If you have tried (1), (2) and (3), and you still cannot find an answer, send email to [email protected] for questions about AutoGrid or AutoDock; or to [email protected], for questions about AutoTors.
    [Show full text]
  • Application of Molecular Dynamics Simulation to Small Systems
    40 Application of Molecular Dynamics Simulation to Small Systems Víctor M. Rosas-García and Isabel Sáenz-Tavera Facultad de Ciencias Químicas, Universidad Autónoma de Nuevo León, San Nicolás de los Garza, N. L. México 1. Introduction The study of chemical behavior includes answering questions as ’which isomer is the most stable?’, ’which relative orientation is the most favorable for such-and-such interaction?’, ’which conformer is the global minimum?’, ’what are the lowest energy configurations and their relative energies?’. The answer to these questions–and many others–depends on the ability to find and study a variety of configurations of the system of interest. Recently, (Atilgan, 2007) briefly reviewed the use of molecular dynamics simulation for conformational search in the process of drug design, concluding that its use could reduce the errors in estimating binding affinities and finding more viable conformations. In addition, (Corbeil, 2009) considered the need to include ring flexibility in the conformational searches used in flexible docking. Most of the flexible docking algorithms skip searching for conformations in rings, even though a protein may stabilize a conformation other than the most stable one. The need for a tool to examine the diverse configurations of the constituent particles of a system becomes obvious even as we consider relatively small systems (10-100 atoms). Finding by hand all the conformers of cyclohexane is feasible and maybe even instructive; this is somewhat more complex when doing morpholine and even something as small as an eight-membered heterocycle can be prohibitively complex to analyze by manipulating molecular models by hand. One of the methods available to the researcher to tackle this kind of problem is Molecular Dynamics (MD) simulation.
    [Show full text]
  • New LAMMPS Modules for the Simulation of Protein-Surface
    New LAMMPS Modules for the Simulation of Prof. Robert A. Latour, Department of Bioengineering, Clemson University, Clemson, SC Group Members: T. Abramyan, J. Snyder, J. Yancey (Bioengr.), Prof. S.J. Stuart, D. Hyde-Volpe (Chemistry) Protein-Surface Interactions with CHARMM Collaborative Support: Dr. Chris Lorenz, Physics Dept., King’s College-London Introduction Objective Utility Files to Facilitate IFF Parameter Adjustment Development of these capabilities in LAMMPS: Text file to facilitate modification of default CHARMM parameters to Protein-surface interactions important for broad range . Modules to incorporate an interfacial force field including define new IFF parameters: of application in bioengineering and biotechnology. both L-J and partial charge parameter sets [1]. • Section I.A to modify L-J e and s for existing Atom Types Simulations of protein-surface interactions require: . New fix_cmap module for CHARMM CMAP parameters • Section I.B for creation of new Atom Types . Force fields for protein, surface, and interface . Modules for TIGER2 and TIGER2A advance sampling [3,4]. Advanced sampling for ensemble avg. properties • Section II to modify partial charges for Atoms The Latour group previously developed these • Section III providing list of all atoms and associations capabilities for use with the CHARMM simulation LAMMPS Modules: Perl script to update LAMMPS data files with IFF parameters program [1-4]. Modified LAMMPS data file format to include IFF partial Independent Force Fields for Each Phase of System charge in Atoms section. Perl scripts to convert CHARMM and LAMMPS regular data Interfacial force field files into IFF-formatted LAMMPS data files. (IFF) to separately represent protein- IFF-Formatted LAMMPS Data File with qiff Column surface interactions (both Lennard-Jones q X Y Z qiff (e, s) and partial charge (q) parameters [1].
    [Show full text]
  • Atomistic Modeling of DNA and Protein Structures
    Atomistic Modeling of DNA and Protein Structures George C. Schatz Introduction In this lecture we introduce one of the most commonly used computational tools for studying protein and DNA structure, the use of empirical potential energy functions, and we describe their use in molecular mechanics and molecular dynamics calculations. As an application, we present results of a molecular mechanics study of the mechanical properties (mechanical pulling) of a small protein. We also describe modeling of DNA hairpin structures. References: Computer Simulation of Liquids, M. P. Allen and D. J. Tildesley, Clarendon Press, Oxford, 1987; Introduction to Modern Statistical Mechanics, D. Chandler, Oxford, New York, 1987; Understanding Molecular Simulations: from Algorithms to Applications, D. Frenkel and B. Smit, Academic Press; San Diego, 1996. Molecular Modeling: Principles and Applications, (2nd ed) Andrew Leach, Prentice Hall, Englewood Cliffs, 2001. What is a force field? This is the potential energy function V(R) that determines the interactions between the atoms in a molecule or solid. The derivatives of this function (or more technically the gradients) give the forces that these atoms exert against each other. Thus Newton’s equations say that F=ma, where the force F is related to V via F=-dV/dR, m is the mass and a is the acceleration. A simple example of a force field is a Lennard-Jones, or 6-12 potential. This describes the interaction of two argon atoms pretty well, and it is often used to describe the interaction of two methane molecules or even, to a lesser degree of rigor, two water molecules. Lennard-Jones potential 7 6 5 12 6 ⎛⎞⎡⎤σσ ⎡⎤ 4 V4=ε − 3 ⎜⎟⎢⎥ ⎢⎥ RR energy/well depth ⎝⎠⎣⎦ ⎣⎦ 2 1 0 -1 0.80 1.00 1.20 1.40 1.60 1.80 2.00 r/σ For a liquid composed of argon, or methane, one can approximate that the overall potential is simply the sum of all pair-wise interactions: ⎛⎞12 6 ⎡ σσij⎤⎡⎤ ij V4=ε⎜⎟⎢ ⎥⎢⎥ − ∑ ij ⎜⎟RR ij ⎝⎠⎣⎢ ij⎦⎣⎦⎥⎢⎥ ij This neglects three-body and higher interactions, which works pretty well for argon, but is a problem for more complex materials.
    [Show full text]
  • (Bio-)Chemical Tools and Visualization Software for Computational Science
    UvA-DARE (Digital Academic Repository) Highlights of (bio-)chemical tools and visualization software for computational science Dubbeldam, D.; Vreede, J.; Vlugt, T.J.H.; Calero, S. DOI 10.1016/j.coche.2019.02.001 Publication date 2019 Document Version Final published version Published in Current Opinion in Chemical Engineering License Article 25fa Dutch Copyright Act Link to publication Citation for published version (APA): Dubbeldam, D., Vreede, J., Vlugt, T. J. H., & Calero, S. (2019). Highlights of (bio-)chemical tools and visualization software for computational science. Current Opinion in Chemical Engineering, 23, 1-13. https://doi.org/10.1016/j.coche.2019.02.001 General rights It is not permitted to download or to forward/distribute the text or part of it without the consent of the author(s) and/or copyright holder(s), other than for strictly personal, individual use, unless the work is under an open content license (like Creative Commons). Disclaimer/Complaints regulations If you believe that digital publication of certain material infringes any of your rights or (privacy) interests, please let the Library know, stating your reasons. In case of a legitimate complaint, the Library will make the material inaccessible and/or remove it from the website. Please Ask the Library: https://uba.uva.nl/en/contact, or a letter to: Library of the University of Amsterdam, Secretariat, Singel 425, 1012 WP Amsterdam, The Netherlands. You will be contacted as soon as possible. UvA-DARE is a service provided by the library of the University of Amsterdam (https://dare.uva.nl) Download date:01 Oct 2021 Available online at www.sciencedirect.com ScienceDirect Highlights of (bio-)chemical tools and visualization software for computational science 1 1 2 David Dubbeldam , Jocelyne Vreede , Thijs JH Vlugt and 3 Sofia Calero Computational chemistry uses computer simulation to assist in There are hundreds of chemical software packages avail- solving chemical problems.
    [Show full text]