Commit 8ecab6b2 authored by sjplimp's avatar sjplimp
Browse files

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@1852 f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent 41fc4a5e
Loading
Loading
Loading
Loading
+52 −0
Original line number Diff line number Diff line
/* ----------------------------------------------------------------------
   LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
   http://lammps.sandia.gov, Sandia National Laboratories
   Steve Plimpton, sjplimp@sandia.gov

   Copyright (2003) Sandia Corporation.  Under the terms of Contract
   DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
   certain rights in this software.  This software is distributed under 
   the GNU General Public License.

   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

#ifdef AtomInclude
#include "atom_vec_ellipsoid.h"
#endif

#ifdef AtomClass
AtomStyle(ellipsoid,AtomVecEllipsoid)
# endif

#ifdef ComputeInclude
#include "compute_erotate_asphere.h"
#include "compute_temp_asphere.h"
#endif

#ifdef ComputeClass
ComputeStyle(erotate/asphere,ComputeERotateAsphere)
ComputeStyle(temp/asphere,ComputeTempAsphere)
#endif

#ifdef FixInclude
#include "fix_nve_asphere.h"
#include "fix_nvt_asphere.h"
#include "fix_npt_asphere.h"
#endif

#ifdef FixClass
FixStyle(nve/asphere,FixNVEAsphere)
FixStyle(nvt/asphere,FixNVTAsphere)
FixStyle(npt/asphere,FixNPTAsphere)
#endif

#ifdef PairInclude
#include "pair_gayberne.h"
#include "pair_resquared.h"
#endif

#ifdef PairClass
PairStyle(gayberne,PairGayBerne)
PairStyle(resquared,PairRESquared)
#endif
+56 −0
Original line number Diff line number Diff line
/* ----------------------------------------------------------------------
   LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
   http://lammps.sandia.gov, Sandia National Laboratories
   Steve Plimpton, sjplimp@sandia.gov

   Copyright (2003) Sandia Corporation.  Under the terms of Contract
   DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
   certain rights in this software.  This software is distributed under 
   the GNU General Public License.

   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

#ifdef AngleInclude
#include "angle_class2.h"
#endif

#ifdef AngleClass
AngleStyle(class2,AngleClass2)
#endif

#ifdef BondInclude
#include "bond_class2.h"
#endif

#ifdef BondClass
BondStyle(class2,BondClass2)
#endif

#ifdef DihedralInclude
#include "dihedral_class2.h"
#endif

#ifdef DihedralClass
DihedralStyle(class2,DihedralClass2)
#endif

#ifdef ImproperInclude
#include "improper_class2.h"
#endif

#ifdef ImproperClass
ImproperStyle(class2,ImproperClass2)
#endif

#ifdef PairInclude
#include "pair_lj_class2.h"
#include "pair_lj_class2_coul_cut.h"
#include "pair_lj_class2_coul_long.h"
#endif

#ifdef PairClass
PairStyle(lj/class2,PairLJClass2)
PairStyle(lj/class2/coul/cut,PairLJClass2CoulCut)
PairStyle(lj/class2/coul/long,PairLJClass2CoulLong)
#endif
+22 −0
Original line number Diff line number Diff line
/* ----------------------------------------------------------------------
   LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
   http://lammps.sandia.gov, Sandia National Laboratories
   Steve Plimpton, sjplimp@sandia.gov

   Copyright (2003) Sandia Corporation.  Under the terms of Contract
   DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
   certain rights in this software.  This software is distributed under 
   the GNU General Public License.

   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

#ifdef PairInclude
#include "pair_colloid.h"
#include "pair_lubricate.h"
#endif

#ifdef PairClass
PairStyle(colloid,PairColloid)
PairStyle(lubricate,PairLubricate)
#endif
+28 −0
Original line number Diff line number Diff line
/* ----------------------------------------------------------------------
   LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
   www.cs.sandia.gov/~sjplimp/lammps.html
   Steve Plimpton, sjplimp@sandia.gov, Sandia National Laboratories

   Copyright (2003) Sandia Corporation.  Under the terms of Contract
   DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
   certain rights in this software.  This software is distributed under 
   the GNU General Public License.

   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

#ifdef AtomInclude
#include "atom_vec_dipole.h"
#endif

#ifdef AtomClass
AtomStyle(dipole,AtomVecDipole)
#endif

#ifdef PairInclude
#include "pair_dipole_cut.h"
#endif

#ifdef PairClass
PairStyle(dipole/cut,PairDipoleCut)
#endif
+28 −0
Original line number Diff line number Diff line
/* ----------------------------------------------------------------------
   LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
   http://lammps.sandia.gov, Sandia National Laboratories
   Steve Plimpton, sjplimp@sandia.gov

   Copyright (2003) Sandia Corporation.  Under the terms of Contract
   DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
   certain rights in this software.  This software is distributed under 
   the GNU General Public License.

   See the README file in the top-level LAMMPS directory.
------------------------------------------------------------------------- */

#ifdef AtomInclude
#include "atom_vec_dpd.h"
#endif

#ifdef AtomClass
AtomStyle(dpd,AtomVecDPD)
#endif

#ifdef PairInclude
#include "pair_dpd.h"
#endif

#ifdef PairClass
PairStyle(dpd,PairDPD)
#endif
Loading