Package stallone.dynamics

Examples of stallone.dynamics.LangevinLeapFrog


        return(res);
    }

    public IIntegratorThermostatted langevinLeapFrog(IEnergyModel model, IDoubleArray masses, double dt, double gamma, double kT)
    {
        IIntegratorThermostatted res = new LangevinLeapFrog(dt, gamma, kT);
        res.setEnergyModel(model);
        res.setMasses(masses);
        res.setV(dyn.maxwellBoltzmannVelocities(masses, kT));
        return(res);
    }
View Full Code Here

TOP

Related Classes of stallone.dynamics.LangevinLeapFrog

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.