1 Introduction – the Basic Computational Environment This Chapter Provides You with Some Basic Introduction to Your 'Computational Work Desk'

Total Page:16

File Type:pdf, Size:1020Kb

1 Introduction – the Basic Computational Environment This Chapter Provides You with Some Basic Introduction to Your 'Computational Work Desk' The Basic Computational Environment 1 1 Introduction – The Basic Computational Environment This chapter provides you with some basic introduction to your 'Computational Work desk'. It is structured into three parts. The first one consists of some quick tutorial how to login into your machine. The second part deals with basic steps in a UNIX-like environment and introduces the 'SHELL', the UNIX command line. In the third part two of the most used editors are presented in order to enable the user to manipulate text files at will. 1.1 Login Into Your Computer Before you can login it is essential that you haven been provided with a username and a password. Usually these are provided by your chemistry department or your system administrator. The first thing you will see is the 'login-screen', asking you to type in your username. Figure 1: a typical login screen The screen might look somewhat different, but it should be similar to the one shown above. Once you typed in your username and pressed the <RETURN> key, the system will ask you for your password, which you are expected to type, again followed by <RETURN>. (The pressing of the <RETURN> key after typing in some commands or other things is assumed from now on.) Having succeeded in providing the correct password you are provided with your graphical desktop. All your actions will take place in this environment. The next thing to do is to open a window containing a command- line, which is usally called a 'shell'. This is nothing else than a window where you can type in your commands. Click unto the icon on the left bottom (or top) and search for a program called 'Konsole' or 'Terminal'. Having done so, your screen will look similar to the one in the figure below: The Basic Computational Environment 2 Figure 2: The graphical desktop with a shell window The following part deals with commands you can enter into this command window and how to find your way around in a UNIX system. 1.2 The UNIX Command Line Although most computer use graphical displays and fancy graphical user interfaces nowadays, UNIX is traditionally rooted in text based environments without any graphics, that is, you tell the computer what to do only by typing in commands without further use of a mouse or by clicking onto menu bars. In this it is not so different from very old personal computers running MS-DOS in times when no Windows was around. One essential feature of the shell is the administration and organisation of the files within your home directory. Typing in the command 'pwd' the computer will tell you where in the directory hierarchy you are at the moment, e. g. /home/frankw. Unix directories are sperated by the slash '/' character. So /home/frankw means, the directory 'frankw' in the 'home' directory which itself is located at the root of all directories on this computer, called root, or '/'. When you just opened you command window, you usually end up in your 'HOME' directory, the directory which is your own private data space. Here you can copy files, create further directories, execute programs and all other things usually done with a computer. When you get lost in all the directories, 'pwd' (print working directory; you see most UNIX commands are abbreviations or acronyms....) will tell you where you are now and a simple 'cd' (change directory) will bring you back to the top of your HOME directory. Some useful commands dealing with files and directories are listed in Table 1. The Basic Computational Environment 3 Table 1: Some useful unix commands for dealing with files and directories Command Description pwd Print working directory ls List all files in the current directory ls *.inp List all files with extension .inp in the present directory (analogous to dir *.inp under windows) ls -l List all files in current directory with detailed information cp file1 file2 Copy a file with name “file1” to a file with name “file2” (analogous to the copy file1 file2 command under windows) cp -r dir1 dir2 Copy a directory with name “dir1” to a directory with name “dir2” mkdir calc Make the directory “calc” (same under windows) cd calc Change into the directory calc (same under windows) cd .. Change to a lower directory level rm *.tmp Remove all files with extension .tmp (CAREFUL: in unix there is no “undelete” command – gone is gone!). mv file1 file2 Rename the file “file1” to “file2” find . -name Find all files in all subdirectories with extension "*.inp" .inp In the following table some commands are listed dealing with text files. Text files are especially important since they are used almost everywhere in UNIX, for example, they contain the input and output of your calculations, provide the system with information, customize your shell etc. Table 2: Some useful unix commands for dealing with the contents of text files Command Description cat file Print contents of file (without pausing on screen boundaries) more file Print contents of file, pausing when screen end is reached. Pressing <RETURN> scrolls down one line, <SPACE> on screen grep -i "string" Search in file for "string" and print all lines file containing this string sed Search in file for all occurences of string1 and "s/string1/string2" replace them with string2 and print the result on the file screen Some other commands which might come in useful are listed in the following table. Especially the man command is useful, for it provides you with a help text about other commands. Table 3: Some more useful linux commands and tools Command Description man ls Gives you all information about the command 'ls'. xterm & Opens another command window. (The ‘&’ signifies that the processs xterm is to be send to the background The Basic Computational Environment 4 while you can keep on working in your present window). tar cvf Creates an archive of 'directory' into 'file' file directory gzip file Compresses the contents of 'file', most often used with archives gzip -d Uncompressed some archive (with suffix .tgz), which archive.tar.gz ; has been created before using tar and gzip. tar xvf archive.tar There are a few other things you should know about UNIX commands. Usually if you type in a command or start a program, which is essentially the same, it uses some INPUT, does some work or calculation, and produces some OUTPUT. Usually this means that all INPUT comes from the keyboard (for you to type in), and all OUTPUT will be directed to the screen. Sometimes the OUTPUT, for example from some calculation, becomes so large, that you would rather put it into a file for looking at it afterwards in your own time. To do so, UNIX provides you with INPUT/OUTPUT redirection, e. g. find . -name "*" > all_your_files This command will 'find' all your files, from the current directory onwards (from '.') and put them into the file 'all_your_files'. This output redirection via '>' works with all kinds of commands. Another important feature of the UNIX command line is the ability to put commands into the 'background'. Usually, if you enter a command or a program name the program does it's work and meanwhile you have to wait until it finishes. Now, if you put a '&' character at the end of you command line, you will be greeted immediately to enter the next command. In the meantime your program is executed invisibly in the background! For example: orca test.inp >& output & 1.3 The Texteditor You need to use a text editor in order to edit textfiles, that is, to produce input to the quantum chemical program packages. For this you can use the standard editors vi and emacs or nedit. The latter is not available on all unix machines but is essentially self- explanatory. The other editors are standard software but are a bit less convenient to use. Basic familiarity with them is helpful. Some fundamental concepts and commands are presented hereafter. The Basic Computational Environment 5 1.3.1 The VI Editor One of the most widely used editors on UNIX systems is the vi editor. Although it lacks the look and feel of today's editors, it has the advantages of being available on all UNIX systems and being very quick to use (and in extended versions also very powerful). You can load a file into vi just by typing: vi filename If the file did not exist before it will be created. One feature that is somwhat difficult to grasp at the beginning is that editing in vi takes place in two different modes: A command mode and an insert or edit mode. Vi starts in command mode. You can always get back into command mode by pressing <ESC>. In this mode you can move the cursor around on the screen and position it where you want to modify your text. For moving around you can use the CURSOR keys or the keys h, j, k, l. Having positioned the cursor, press i for insert mode. Now you can enter your text. Pressing <ESC> enters command- mode again. In the following table are the most common keys accessible in command mode. Table 4: usage of the vi editor Command Description h, j, k, l Movement (left, down, up, right) i, I Insert text before cursor position (before first character of the line) a, A Append text after cursor position (at the end of current line) o, O Open new line below the current line (or above current line) X Delete charcter under cursor Dd Delete whole line D Delete line from cursor position to the end of line r, R Replace character under cursor (replace from cursor on onwards until leaving by <ESC>) :wq Save file and exit vi :wfile Save current contents in 'file'.
Recommended publications
  • Open Babel Documentation Release 2.3.1
    Open Babel Documentation Release 2.3.1 Geoffrey R Hutchison Chris Morley Craig James Chris Swain Hans De Winter Tim Vandermeersch Noel M O’Boyle (Ed.) December 05, 2011 Contents 1 Introduction 3 1.1 Goals of the Open Babel project ..................................... 3 1.2 Frequently Asked Questions ....................................... 4 1.3 Thanks .................................................. 7 2 Install Open Babel 9 2.1 Install a binary package ......................................... 9 2.2 Compiling Open Babel .......................................... 9 3 obabel and babel - Convert, Filter and Manipulate Chemical Data 17 3.1 Synopsis ................................................. 17 3.2 Options .................................................. 17 3.3 Examples ................................................. 19 3.4 Differences between babel and obabel .................................. 21 3.5 Format Options .............................................. 22 3.6 Append property values to the title .................................... 22 3.7 Filtering molecules from a multimolecule file .............................. 22 3.8 Substructure and similarity searching .................................. 25 3.9 Sorting molecules ............................................ 25 3.10 Remove duplicate molecules ....................................... 25 3.11 Aliases for chemical groups ....................................... 26 4 The Open Babel GUI 29 4.1 Basic operation .............................................. 29 4.2 Options .................................................
    [Show full text]
  • The Alexandria Library, a Quantum-Chemical Database of Molecular Properties for Force field Development 9 2017 Received: October 1 1 1 Mohammad M
    www.nature.com/scientificdata OPEN Data Descriptor: The Alexandria library, a quantum-chemical database of molecular properties for force field development 9 2017 Received: October 1 1 1 Mohammad M. Ghahremanpour , Paul J. van Maaren & David van der Spoel Accepted: 19 February 2018 Published: 10 April 2018 Data quality as well as library size are crucial issues for force field development. In order to predict molecular properties in a large chemical space, the foundation to build force fields on needs to encompass a large variety of chemical compounds. The tabulated molecular physicochemical properties also need to be accurate. Due to the limited transparency in data used for development of existing force fields it is hard to establish data quality and reusability is low. This paper presents the Alexandria library as an open and freely accessible database of optimized molecular geometries, frequencies, electrostatic moments up to the hexadecupole, electrostatic potential, polarizabilities, and thermochemistry, obtained from quantum chemistry calculations for 2704 compounds. Values are tabulated and where available compared to experimental data. This library can assist systematic development and training of empirical force fields for a broad range of molecules. Design Type(s) data integration objective • molecular physical property analysis objective Measurement Type(s) physicochemical characterization Technology Type(s) Computational Chemistry Factor Type(s) Sample Characteristic(s) 1 Uppsala Centre for Computational Chemistry, Science for Life Laboratory, Department of Cell and Molecular Biology, Uppsala University, Husargatan 3, Box 596, SE-75124 Uppsala, Sweden. Correspondence and requests for materials should be addressed to D.v.d.S. (email: [email protected]).
    [Show full text]
  • The Norbornene Mystery Revealed
    Supplementary Material (ESI) for Chemical Communications This journal is (c) The Royal Society of Chemistry 2010 Electronic Supporting Information The Norbornene Mystery Revealed Stephan N. Steinmann, Pierre Vogel, Yirong Mo, and Clémence Corminboeuf* To be published in Chemical Communication. The supplementary Data were prepared on June 22, 2010 and contains 14 pages. Contents: Method Section Figure S1: Molecules used for the comparisons between known experimental 1 Jcc-coupling constants (in Hertz) and the computed values. 1 Table S1 JCC-coupling comparison between experiment and computation. 1 Table S2: JCC-coupling constants for all compounds considered. Cartesian coordinates: B3LYP/6-311+G(d,p) (BLW and canonical) optimized structures for all compounds considered in the article. Contents: Computational Details 1 Table S1: JCC-coupling constants for all compounds considered. 1 Figure S1: Molecules for JCC-coupling comparison between experiment and computation. 1 Table S2: JCC-coupling comparison between experiment and computation. B3LYP/6-311+G(d,p) (BLW and canonical) optimized structures for all compounds considered in the article. Computational Details Standard geometries were optimized at the B3LYP1, 2/6-311+G** level using Gaussian 09.3 The BLW- constrained B3LYP/6-311+G** geometries (‘loc’) were optimized using a modified version of GAMESS-US (release 2008)4interfaced with the BLW-module.5, 6 Both the density and the J-coupling constants have been computed at the PBE7/IGLO-III level in Dalton 2.0.8 The BLW-eigenvalues and eigenvectors were optimized at the given DFT level with the SCF module of Dalton, SIRIUS, that has been interfaced with the BLW- module.
    [Show full text]
  • Computational Chemistry for Chemistry Educators Shawn C
    Volume 1, Issue 1 Journal Of Computational Science Education Computational Chemistry for Chemistry Educators Shawn C. Sendlinger Clyde R. Metz North Carolina Central University College of Charleston Department of Chemistry Department of Chemistry and Biochemistry 1801 Fayetteville Street, 66 George Street, Durham, NC 27707 Charleston, SC 29424 919-530-6297 843-953-8097 [email protected] [email protected] ABSTRACT 1. INTRODUCTION In this paper we describe an ongoing project where the goal is to The majority of today’s students are technologically savvy and are develop competence and confidence among chemistry faculty so often more comfortable using computers than the faculty who they are able to utilize computational chemistry as an effective teach them. In order to harness the student’s interest in teaching tool. Advances in hardware and software have made technology and begin to use it as an educational tool, most faculty research-grade tools readily available to the academic community. members require some level of instruction and training. Because Training is required so that faculty can take full advantage of this chemistry research increasingly utilizes computation as an technology, begin to transform the educational landscape, and important tool, our approach to chemistry education should reflect attract more students to the study of science. this. The ability of computer technology to visualize and manipulate objects on an atomic scale can be a powerful tool to increase both student interest in chemistry as well as their level of Categories and Subject Descriptors understanding. Computational Chemistry for Chemistry Educators (CCCE) is a project that seeks to provide faculty the J.2 [Physical Sciences and Engineering]: Chemistry necessary knowledge, experience, and technology access so that they can begin to design and incorporate computational approaches in the courses they teach.
    [Show full text]
  • Car-Parrinello Molecular Dynamics
    CPMD Car-Parrinello Molecular Dynamics An ab initio Electronic Structure and Molecular Dynamics Program The CPMD consortium WWW: http://www.cpmd.org/ Mailing list: [email protected] E-mail: [email protected] January 29, 2019 Send comments and bug reports to [email protected] This manual is for CPMD version 4.3.0 CPMD 4.3.0 January 29, 2019 Contents I Overview3 1 About this manual3 2 Citation 3 3 Important constants and conversion factors3 4 Recommendations for further reading4 5 History 5 5.1 CPMD Version 1.....................................5 5.2 CPMD Version 2.....................................5 5.2.1 Version 2.0....................................5 5.2.2 Version 2.5....................................5 5.3 CPMD Version 3.....................................5 5.3.1 Version 3.0....................................5 5.3.2 Version 3.1....................................5 5.3.3 Version 3.2....................................5 5.3.4 Version 3.3....................................6 5.3.5 Version 3.4....................................6 5.3.6 Version 3.5....................................6 5.3.7 Version 3.6....................................6 5.3.8 Version 3.7....................................6 5.3.9 Version 3.8....................................6 5.3.10 Version 3.9....................................6 5.3.11 Version 3.10....................................7 5.3.12 Version 3.11....................................7 5.3.13 Version 3.12....................................7 5.3.14 Version 3.13....................................7 5.3.15 Version 3.14....................................7 5.3.16 Version 3.15....................................8 5.3.17 Version 3.17....................................8 5.4 CPMD Version 4.....................................8 5.4.1 Version 4.0....................................8 5.4.2 Version 4.1....................................8 5.4.3 Version 4.3....................................9 6 Installation 10 7 Running CPMD 11 8 Files 12 II Reference Manual 15 9 Input File Reference 15 9.1 Basic rules........................................
    [Show full text]
  • Ab Initio Search for Novel Bxhy Building Blocks with Potential for Hydrogen Storage
    Utah State University DigitalCommons@USU All Graduate Theses and Dissertations Graduate Studies 12-2010 Ab Initio Search for Novel BxHy Building Blocks with Potential for Hydrogen Storage Jared K. Olson Utah State University Follow this and additional works at: https://digitalcommons.usu.edu/etd Part of the Physical Chemistry Commons Recommended Citation Olson, Jared K., "Ab Initio Search for Novel BxHy Building Blocks with Potential for Hydrogen Storage" (2010). All Graduate Theses and Dissertations. 844. https://digitalcommons.usu.edu/etd/844 This Dissertation is brought to you for free and open access by the Graduate Studies at DigitalCommons@USU. It has been accepted for inclusion in All Graduate Theses and Dissertations by an authorized administrator of DigitalCommons@USU. For more information, please contact [email protected]. AB INITIO SEARCH FOR NOVEL BXHY BUILDING BLOCKS WITH POTENTIAL FOR HYDROGEN STORAGE by Jared K. Olson A dissertation submitted in partial fulfillment of the requirements for the degree of DOCTOR OF PHILOSOPHY in Chemistry (Physical Chemistry) Approved: Dr. Alexander I. Boldyrev Dr. Steve Scheiner Major Professor Committee Member Dr. David Farrelly Dr. Stephen Bialkowski Committee Member Committee Member Dr. T.C. Shen Byron Burnham Committee Member Dean of Graduate Studies UTAH STATE UNIVERSITY Logan, Utah 2010 ii Copyright © Jared K. Olson 2010 All Rights Reserved iii ABSTRACT Ab Initio Search for Novel BxHy Building Blocks with Potential for Hydrogen Storage by Jared K. Olson, Doctor of Philosophy Utah State University, 2010 Major Professor: Dr. Alexander I. Boldyrev Department: Chemistry and Biochemistry On-board hydrogen storage presents a challenging barrier to the use of hydrogen as an energy source because the performance of current storage materials falls short of platform requirements.
    [Show full text]
  • Surface Modification of Mgni by Perylene
    Materials Transactions, Vol. 43, No. 11 (2002) pp. 2711 to 2716 Special Issue on Protium New Function in Materials c 2002 The Japan Institute of Metals Surface Modification of MgNi by Perylene Tiejun Ma, Yuji Hatano, Takayuki Abe and Kuniaki Watanabe Hydrogen Isotope Research Center, Toyama University, Toyama 930-8555, Japan Amorphous MgNi was modified by ball milling with perylene and its effects on the charge/discharge capacity were examined by using a conventional two-electrode cell. It was found that both the ball milling time and perylene/MgNi ratio had great influence on the discharge capacity and cycle life of MgNi. Three types of effects were identified, depending on ball-milling conditions. One of them was the increase in the discharge capacity at the first cycle, the second type was the deceleration of the degradation of the discharge capacity with charge/discharge cycle, and the last type was the reduction in the charge/discharge capacity. Chemical states of modified surfaces were analyzed by Auger electron spectroscopy (AES) as well as ab-inito calculation. Both AES and ab-initio calculations indicated that carbon atoms can form bonding with both magnesium and nickel atoms, but bonding with magnesium atoms is most preferable. The change in the charge/discharge capacity is attributed to such kind of reactions, and the three distinct effects are ascribed to the presence of different MgNi-perylene composites, formed during the ball milling on the surface, resulting in the retardation or acceleration of Mg(OH)2 formation on the electrode. (Received May 20, 2002; Accepted July 16, 2002) Keywords: magnesium, nickel, aromatic compound, surface modification, battery, electrode 1.
    [Show full text]
  • Chemical File Format Conversion Tools : a N Overview
    International Journal of Engineering Research & Technology (IJERT) ISSN: 2278-0181 Vol. 3 Issue 2, February - 2014 Chemical File Format Conversion Tools : A n Overview Kavitha C. R Dr. T Mahalekshmi Research Scholar, Bharathiyar University Principal Dept of Computer Applications Sree Narayana Institute of Technology SNGIST Kollam, India Cochin, India Abstract— There are a lot of chemical data stored in large different chemical file formats. Three types of file format databases, repositories and other resources. These data are used conversion tools are discussed in section III. And the by different researchers in different applications in various areas conclusion is given in section IV followed by the references. of chemistry. Since these data are stored in several standard chemical file formats, there is a need for the inter-conversion of II. CHEMICAL FILE FORMATS chemical structures between different formats because all the formats are not supported by various software and tools used by A chemical is a collection of atoms bonded together the researchers. Therefore it becomes essential to convert one file in space. The structure of a chemical makes it unique and format to another. This paper reviews some of the chemical file gives it its physical and biological characteristics. This formats and also presents a few inter-conversion tools such as structure is represented in a variety of chemical file formats. Open Babel [1], Mol converter [2] and CncTranslate [3]. These formats are used to represent chemical structure records and its associated data fields. Some of the file Keywords— File format Conversion, Open Babel, mol formats are CML (Chemical Markup Language), SDF converter, CncTranslate, inter- conversion tools.
    [Show full text]
  • Application of Hartree-Fock Method for Modeling of Bioactive Molecules Using SAR and QSPR
    Computational Molecular Bioscience, 2014, 4, 1-24 Published Online March 2014 in SciRes. http://www.scirp.org/journal/cmb http://dx.doi.org/10.4236/cmb.2014.41001 Application of Hartree-Fock Method for Modeling of Bioactive Molecules Using SAR and QSPR Cleydson B. R. Santos1,2,3*, Cleison C. Lobato1, Francinaldo S. Braga1, Sílvia S. S. Morais4, Cesar F. Santos1, Caio P. Fernandes1,3, Davi S. B. Brasil1,5, Lorane I. S. Hage-Melim1, Williams J. C. Macêdo1,2, José C. T. Carvalho1,2,3 1Laboratory of Modeling and Computational Chemistry, Federal University of Amapá, Macapá, Brazil 2Postgraduate Program in Biotechnology and Biodiversity-Network BIONORTE, Campus Universitário Marco Zero, Macapá, Brazil 3Laboratory of Drug Research, School of Pharmaceutical Sciences, Federal University of Amapá, Macapá, Brazil 4Laboratory of Statistical and Computational Modeling, University of the State of Amapá, Macapá, Brazil 5Institute of Technology, Federal University of Pará, Belém, Brazil Email: *[email protected] Received 12 January 2014; revised 12 February 2014; accepted 20 February 2014 Copyright © 2014 by authors and Scientific Research Publishing Inc. This work is licensed under the Creative Commons Attribution International License (CC BY). http://creativecommons.org/licenses/by/4.0/ Abstract The central importance of quantum chemistry is to obtain solutions of the Schrödinger equation for the accurate determination of the properties of atomic and molecular systems that occurred from the calculation of wave functions accurate for many diatomic and polyatomic molecules, us- ing Self Consistent Field method (SCF). The application of quantum chemical methods in the study and planning of bioactive compounds has become a common practice nowadays.
    [Show full text]
  • Package Name Software Description Project
    A S T 1 Package Name Software Description Project URL 2 Autoconf An extensible package of M4 macros that produce shell scripts to automatically configure software source code packages https://www.gnu.org/software/autoconf/ 3 Automake www.gnu.org/software/automake 4 Libtool www.gnu.org/software/libtool 5 bamtools BamTools: a C++ API for reading/writing BAM files. https://github.com/pezmaster31/bamtools 6 Biopython (Python module) Biopython is a set of freely available tools for biological computation written in Python by an international team of developers www.biopython.org/ 7 blas The BLAS (Basic Linear Algebra Subprograms) are routines that provide standard building blocks for performing basic vector and matrix operations. http://www.netlib.org/blas/ 8 boost Boost provides free peer-reviewed portable C++ source libraries. http://www.boost.org 9 CMake Cross-platform, open-source build system. CMake is a family of tools designed to build, test and package software http://www.cmake.org/ 10 Cython (Python module) The Cython compiler for writing C extensions for the Python language https://www.python.org/ 11 Doxygen http://www.doxygen.org/ FFmpeg is the leading multimedia framework, able to decode, encode, transcode, mux, demux, stream, filter and play pretty much anything that humans and machines have created. It supports the most obscure ancient formats up to the cutting edge. No matter if they were designed by some standards 12 ffmpeg committee, the community or a corporation. https://www.ffmpeg.org FFTW is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and 13 fftw complex data (as well as of even/odd data, i.e.
    [Show full text]
  • Quantum Chemical Calculations of NMR Parameters
    Quantum Chemical Calculations of NMR Parameters Tatyana Polenova University of Delaware Newark, DE Winter School on Biomolecular NMR January 20-25, 2008 Stowe, Vermont OUTLINE INTRODUCTION Relating NMR parameters to geometric and electronic structure Classical calculations of EFG tensors Molecular properties from quantum chemical calculations Quantum chemistry methods DENSITY FUNCTIONAL THEORY FOR CALCULATIONS OF NMR PARAMETERS Introduction to DFT Software Practical examples Tutorial RELATING NMR OBSERVABLES TO MOLECULAR STRUCTURE NMR Spectrum NMR Parameters Local geometry Chemical structure (reactivity) I. Calculation of experimental NMR parameters Find unique solution to CQ, Q, , , , , II. Theoretical prediction of fine structure constants from molecular geometry Classical electrostatic model (EFG)- only in simple ionic compounds Quantum mechanical calculations (Density Functional Theory) (EFG, CSA) ELECTRIC FIELD GRADIENT (EFG) TENSOR: POINT CHARGE MODEL EFG TENSOR IS DETERMINED BY THE COMBINED ELECTRONIC AND NUCLEAR WAVEFUNCTION, NO ANALYTICAL EXPRESSION IN THE GENERAL CASE THE SIMPLEST APPROXIMATION: CLASSICAL POINT CHARGE MODEL n Zie 4 V2,k = 3 Y2,k ()i,i i=1 di 5 ATOMS CONTRIBUTING TO THE EFG TENSOR ARE TREATED AS POINT CHARGES, THE RESULTING EFG TENSOR IS THE SUM WITH RESPECT TO ALL ATOMS VERY CRUDE MODEL, WORKS QUANTITATIVELY ONLY IN SIMPLEST IONIC SYSTEMS, BUT YIELDS QUALITATIVE TRENDS AND GENERAL UNDERSTANDING OF THE SYMMETRY AND MAGNITUDE OF THE EXPECTED TENSOR ELECTRIC FIELD GRADIENT (EFG) TENSOR: POINT CHARGE MODEL n Zie 4 V2,k = 3 Y2,k ()i,i i=1 di 5 Ze V = ; V = 0; V = 0 2,0 d 3 2,±1 2,±2 2Ze V = ; V = 0; V = 0 2,0 d 3 2,±1 2,±2 3 Ze V = ; V = 0; V = 0 2,0 2 d 3 2,±1 2,±2 V2,0 = 0; V2,±1 = 0; V2,±2 = 0 MOLECULAR PROPERTIES FROM QUANTUM CHEMICAL CALCULATIONS H = E See for example M.
    [Show full text]
  • Pipenightdreams Osgcal-Doc Mumudvb Mpg123-Alsa Tbb
    pipenightdreams osgcal-doc mumudvb mpg123-alsa tbb-examples libgammu4-dbg gcc-4.1-doc snort-rules-default davical cutmp3 libevolution5.0-cil aspell-am python-gobject-doc openoffice.org-l10n-mn libc6-xen xserver-xorg trophy-data t38modem pioneers-console libnb-platform10-java libgtkglext1-ruby libboost-wave1.39-dev drgenius bfbtester libchromexvmcpro1 isdnutils-xtools ubuntuone-client openoffice.org2-math openoffice.org-l10n-lt lsb-cxx-ia32 kdeartwork-emoticons-kde4 wmpuzzle trafshow python-plplot lx-gdb link-monitor-applet libscm-dev liblog-agent-logger-perl libccrtp-doc libclass-throwable-perl kde-i18n-csb jack-jconv hamradio-menus coinor-libvol-doc msx-emulator bitbake nabi language-pack-gnome-zh libpaperg popularity-contest xracer-tools xfont-nexus opendrim-lmp-baseserver libvorbisfile-ruby liblinebreak-doc libgfcui-2.0-0c2a-dbg libblacs-mpi-dev dict-freedict-spa-eng blender-ogrexml aspell-da x11-apps openoffice.org-l10n-lv openoffice.org-l10n-nl pnmtopng libodbcinstq1 libhsqldb-java-doc libmono-addins-gui0.2-cil sg3-utils linux-backports-modules-alsa-2.6.31-19-generic yorick-yeti-gsl python-pymssql plasma-widget-cpuload mcpp gpsim-lcd cl-csv libhtml-clean-perl asterisk-dbg apt-dater-dbg libgnome-mag1-dev language-pack-gnome-yo python-crypto svn-autoreleasedeb sugar-terminal-activity mii-diag maria-doc libplexus-component-api-java-doc libhugs-hgl-bundled libchipcard-libgwenhywfar47-plugins libghc6-random-dev freefem3d ezmlm cakephp-scripts aspell-ar ara-byte not+sparc openoffice.org-l10n-nn linux-backports-modules-karmic-generic-pae
    [Show full text]