All Downloads are FREE. Search and download functionalities are using the official Maven repository.

JSci.chemistry.Atom Maven / Gradle / Ivy

package JSci.chemistry;

import JSci.physics.*;
import JSci.physics.particles.*;

/**
* A class representing atoms.
* @version 0.2
* @author Mark Hale
*/
public class Atom extends Particle {
        /**
        * Shell.
        */
        private Lepton shell[];
        private final int shellSize;
        /**
        * Nucleus.
        */
        private Nucleon nucleus[];
        private final int nucleusSize;
        /**
        * Constructs an atom.
        */
        public Atom(Element e) {
                shellSize = e.getAtomicNumber();
                nucleusSize = e.getMassNumber();
        }
        /**
        * Returns the nucleus.
        */
        public Nucleon[] getNucleus() {
                if(nucleus == null) {
                        nucleus = new Nucleon[nucleusSize];
                        int i;
                        for(i=0; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy