📄 gaussianscalculationtest.java
字号:
/* $RCSfile$ * $Author: egonw $ * $Date: 2007-05-01 20:13:10 +0000 (Di, 01 Mai 2007) $ * $Revision: 8295 $ * * Copyright (C) 2001-2007 Stephan Michels <stephan@vern.chem.tu-berlin.de> * * Contact: cdk-devel@lists.sourceforge.net * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 * of the License, or (at your option) any later version. * All we ask is that proper credit is given for our work, which includes * - but is not limited to - adding the above copyright notice to the beginning * of your source code files, and to any copyright notice that you may distribute * with programs based on this work. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * */package org.openscience.cdk.test.math.qm; import java.io.FileInputStream;import java.io.FileReader;import java.util.Iterator;import org.openscience.cdk.ChemFile;import org.openscience.cdk.ChemObject;import org.openscience.cdk.interfaces.IAtom;import org.openscience.cdk.interfaces.IAtomContainer;import org.openscience.cdk.interfaces.IChemModel;import org.openscience.cdk.interfaces.IChemSequence;import org.openscience.cdk.io.CMLReader;import org.openscience.cdk.io.IChemObjectReader;import org.openscience.cdk.io.MDLReader;import org.openscience.cdk.io.XYZReader;import org.openscience.cdk.math.qm.ClosedShellJob;import org.openscience.cdk.math.qm.GaussiansBasis;import org.openscience.cdk.math.qm.Orbitals;import org.openscience.cdk.math.qm.SimpleBasisSet;import org.openscience.cdk.tools.manipulator.AtomContainerManipulator;import org.openscience.cdk.tools.manipulator.ChemModelManipulator; /** * Demonstration of the quantum mechanical capabilities of CDK. * This application takes a XYZ, CML or MDL mol file, calculates * orbitals and outputs them to STDOUT. * * @cdk.module test-extra * * @author Stephan Michels <stephan@vern.chem.tu-berlin.de> * @cdk.created 2001-06-09 * * @cdk.keyword command line util */public class GaussiansCalculationTest{ public GaussiansCalculationTest(String inFile) { try { IChemObjectReader reader; System.out.println("Loading: " + inFile); if (inFile.endsWith(".xyz")) { reader = new XYZReader(new FileReader(inFile)); System.out.println("Expecting XYZ format..."); } else if (inFile.endsWith(".cml")) { reader = new CMLReader(new FileInputStream(inFile)); System.out.println("Expecting CML format..."); } else { reader = new MDLReader(new FileInputStream(inFile)); System.out.println("Expecting MDL MolFile format..."); } ChemFile chemFile = (ChemFile)reader.read((ChemObject)new ChemFile()); IChemSequence chemSequence = chemFile.getChemSequence(0); IChemModel chemModel = chemSequence.getChemModel(0); Iterator containers = ChemModelManipulator.getAllAtomContainers(chemModel).iterator(); while (containers.hasNext()) { IAtomContainer atomContainer = (IAtomContainer)containers.next(); IAtom[] atoms = AtomContainerManipulator.getAtomArray(atomContainer); GaussiansBasis basis = new SimpleBasisSet(atoms); Orbitals orbitals = new Orbitals(basis); int count_electrons = 0; for(int i=0; i<atoms.length; i++) count_electrons += atoms[i].getAtomicNumber(); orbitals.setCountElectrons(count_electrons); ClosedShellJob job = new ClosedShellJob(orbitals); orbitals = job.calculate(); } } catch(Exception exc) { exc.printStackTrace(); } }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -