Commit 5365d1c5 authored by sjplimp's avatar sjplimp
Browse files

git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@969 f3b2605a-c512-4ea7-a41b-209d697bcdaa
parent 3a79631d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
This is the LAMMPS (22 Jun 2007) software package.
This is the LAMMPS (5 Oct 2007) software package.

LAMMPS stands for Large-scale Atomic/Molecular Massively Parallel
Simulator.
@@ -21,7 +21,7 @@ at sjplimp@sandia.gov. The LAMMPS WWW Site at
www.cs.sandia.gov/~sjplimp/lammps.html has more information about the
code and its uses.

The LAMMPS (22 Jun 2007) distribution includes the following files
The LAMMPS (5 Oct 2007) distribution includes the following files
and directories:

README			   this file
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@

<CENTER><H3>LAMMPS Documentation 
</H3></CENTER>
<CENTER>(22 Jun 2007 version of LAMMPS) 
<CENTER>(5 Oct 2007 version of LAMMPS) 
</CENTER>
<P>LAMMPS stands for Large-scale Atomic/Molecular Massively Parallel
Simulator.
+43.2 KiB (1.71 MiB)

File changed.

No diff preview for this file type.

+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@

LAMMPS Documentation :c,h3

(22 Jun 2007 version of LAMMPS) :c
(5 Oct 2007 version of LAMMPS) :c

LAMMPS stands for Large-scale Atomic/Molecular Massively Parallel
Simulator.
+0 −48
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_temp_asphere.h"
#endif

#ifdef ComputeClass
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"
#endif

#ifdef PairClass
PairStyle(gayberne,PairGayBerne)
#endif
Loading