⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 crystal.java

📁 化学图形处理软件
💻 JAVA
字号:
/* $RCSfile$ * $Author: egonw $ * $Date: 2007-01-04 18:46:10 +0100 (Thu, 04 Jan 2007) $ * $Revision: 7636 $ *  * Copyright (C) 2002-2007  Egon Willighagen <egonw@users.sf.net> *  * 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. *  * 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;import java.io.Serializable;import javax.vecmath.Vector3d;import org.openscience.cdk.interfaces.ICrystal;/** * Class representing a molecular crystal. * The crystal is described with molecules in fractional * coordinates and three cell axes: a,b and c. * * <p>The crystal is designed to store only the asymetric atoms. * Though this is not enforced, it is assumed by all methods. * * @cdk.module data * * @cdk.keyword crystal */public class Crystal extends AtomContainer implements Serializable, ICrystal, Cloneable{    /**     * Determines if a de-serialized object is compatible with this class.     *     * This value must only be changed if and only if the new version     * of this class is imcompatible with the old version. See Sun docs     * for <a href=http://java.sun.com/products/jdk/1.1/docs/guide/serialization/spec/version.doc.html>details</a>.	 */	private static final long serialVersionUID = 5919649450390509278L;	/** The a axis. */    private Vector3d aAxis;    /** The b axis. */    private Vector3d bAxis;    /** The c axis. */    private Vector3d cAxis;    /**     * Number of symmetry related atoms.     */    private int zValue = 1;    /**     * Number of symmetry related atoms.     */    private String spaceGroup = "P1";    /**     * Constructs a new crystal with zero length cell axis.     */    public Crystal() {    	super();        setZeroAxes();    }    /**     * Constructs a new crystal with zero length cell axis     * and adds the atoms in the AtomContainer as cell content.     *     * @param container  the AtomContainer providing the atoms and bonds     */    public Crystal(org.openscience.cdk.interfaces.IAtomContainer container) {        super(container);        setZeroAxes();    }    /**     * Sets the A unit cell axes in carthesian coordinates in a      * eucledian space.     *     * @param  newAxis the new A axis     *     * @see    #getA     */    public void setA(Vector3d newAxis) {        aAxis = newAxis;	notifyChanged();    }    /**     * Gets the A unit cell axes in carthesian coordinates     * as a three element double array.     *     * @return a Vector3D representing the A axis     *     * @see       #setA     */    public Vector3d getA() {        return aAxis;    }    /**     * Sets the B unit cell axes in carthesian coordinates.     *     * @param  newAxis the new B axis     *     * @see    #getB     */    public void setB(Vector3d newAxis) {        bAxis = newAxis;	notifyChanged();    }    /**     * Gets the B unit cell axes in carthesian coordinates     * as a three element double array.     *     * @return a Vector3D representing the B axis     *     * @see       #setB     */    public Vector3d getB() {        return bAxis;    }    /**     * Sets the C unit cell axes in carthesian coordinates.     *     * @param  newAxis the new C axis     *     * @see       #getC     */    public void setC(Vector3d newAxis) {        cAxis = newAxis;	notifyChanged();    }    /**     * Gets the C unit cell axes in carthesian coordinates     * as a three element double array.     *     * @return a Vector3D representing the C axis     *     * @see       #setC     */    public Vector3d getC() {        return cAxis;    }    /**     * Gets the space group of this crystal.     *     * @return the space group of this crystal structure     *     * @see       #setSpaceGroup     */    public String getSpaceGroup() {        return spaceGroup;    }    /**     * Sets the space group of this crystal.     *     * @param   group  the space group of this crystal structure     *     * @see       #getSpaceGroup     */    public void setSpaceGroup(String group) {        spaceGroup = group;	notifyChanged();    }    /**     * Gets the number of asymmetric parts in the unit cell.     *     * @return the number of assymetric parts in the unit cell     * @see    #setZ     */    public int getZ() {        return zValue;    }    /**     * Sets the number of assymmetric parts in the unit cell.     *     * @param   value the number of assymetric parts in the unit cell     * @see           #getZ     */    public void setZ(int value) {        this.zValue = value;	notifyChanged();    }    /**     *  Makes a clone of this crystal.     *     * @return The cloned crystal.     */    public Object clone() throws CloneNotSupportedException {        Crystal clone = (Crystal)super.clone();        // clone the axes        clone.setA(new Vector3d(this.aAxis));        clone.setB(new Vector3d(this.bAxis));        clone.setC(new Vector3d(this.cAxis));        return clone;    }    /**     * Returns a String representation of this crystal.     */    public String toString() {        StringBuffer resultString = new StringBuffer(64);        resultString.append("Crystal(SG=");        resultString.append(getSpaceGroup());        resultString.append(", Z=").append(getZ());        resultString.append(", a=(").append(aAxis.x).append(", ").append(aAxis.y).append(", ").append(aAxis.z);        resultString.append("), b=(").append(bAxis.x).append(", ").append(bAxis.y).append(", ").append(bAxis.z);        resultString.append("), c=(").append(cAxis.x).append(", ").append(cAxis.y).append(", ").append(cAxis.z);        resultString.append("), #A=").append(getAtomCount()).append(')');        return resultString.toString();    }    /**     *  Initializes the unit cell axes to zero length.     */    private void setZeroAxes() {        aAxis = new Vector3d(0.0, 0.0, 0.0);        bAxis = new Vector3d(0.0, 0.0, 0.0);        cAxis = new Vector3d(0.0, 0.0, 0.0);    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -