2007-01-30 08:31:11 +08:00
|
|
|
/* ----------------------------------------------------------------------
|
|
|
|
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.
|
|
|
|
------------------------------------------------------------------------- */
|
|
|
|
|
2010-01-12 09:37:48 +08:00
|
|
|
#ifndef LMP_ATOM_VEC_H
|
|
|
|
#define LMP_ATOM_VEC_H
|
2007-01-30 08:31:11 +08:00
|
|
|
|
|
|
|
#include "pointers.h"
|
|
|
|
|
|
|
|
namespace LAMMPS_NS {
|
|
|
|
|
|
|
|
class AtomVec : protected Pointers {
|
|
|
|
public:
|
|
|
|
int molecular; // 0 = atomic, 1 = molecular system
|
|
|
|
int bonds_allow,angles_allow; // 1 if bonds, angles are used
|
|
|
|
int dihedrals_allow,impropers_allow; // 1 if dihedrals, impropers used
|
|
|
|
int mass_type; // 1 if per-type masses
|
2007-06-20 21:17:59 +08:00
|
|
|
int shape_type; // 1 if per-type shape array
|
2007-01-30 08:31:11 +08:00
|
|
|
int dipole_type; // 1 if per-type dipole moments
|
2009-11-10 02:20:20 +08:00
|
|
|
|
2007-01-30 08:31:11 +08:00
|
|
|
int comm_x_only; // 1 if only exchange x in forward comm
|
|
|
|
int comm_f_only; // 1 if only exchange f in reverse comm
|
2008-02-09 03:47:58 +08:00
|
|
|
|
2009-11-10 02:20:20 +08:00
|
|
|
int size_forward; // # of values per atom in comm
|
2007-01-30 08:31:11 +08:00
|
|
|
int size_reverse; // # in reverse comm
|
|
|
|
int size_border; // # in border comm
|
2009-11-10 02:20:20 +08:00
|
|
|
int size_velocity; // # of velocity based quantities
|
2007-01-30 08:31:11 +08:00
|
|
|
int size_data_atom; // number of values in Atom line
|
|
|
|
int size_data_vel; // number of values in Velocity line
|
|
|
|
int xcol_data; // column (1-N) where x is in Atom line
|
|
|
|
|
|
|
|
AtomVec(class LAMMPS *, int, char **);
|
|
|
|
virtual ~AtomVec() {}
|
|
|
|
virtual void init() {}
|
|
|
|
|
|
|
|
virtual void grow(int) = 0;
|
2009-11-18 00:07:28 +08:00
|
|
|
virtual void grow_reset() = 0;
|
2007-01-30 08:31:11 +08:00
|
|
|
virtual void copy(int, int) = 0;
|
|
|
|
|
2007-03-16 05:49:48 +08:00
|
|
|
virtual int pack_comm(int, int *, double *, int, int *) = 0;
|
2009-11-10 02:20:20 +08:00
|
|
|
virtual int pack_comm_vel(int, int *, double *, int, int *) = 0;
|
2007-01-30 08:31:11 +08:00
|
|
|
virtual int pack_comm_one(int, double *) {return 0;}
|
|
|
|
virtual void unpack_comm(int, int, double *) = 0;
|
2009-11-10 02:20:20 +08:00
|
|
|
virtual void unpack_comm_vel(int, int, double *) = 0;
|
2007-01-30 08:31:11 +08:00
|
|
|
virtual int unpack_comm_one(int, double *) {return 0;}
|
|
|
|
|
|
|
|
virtual int pack_reverse(int, int, double *) = 0;
|
|
|
|
virtual int pack_reverse_one(int, double *) {return 0;}
|
|
|
|
virtual void unpack_reverse(int, int *, double *) = 0;
|
|
|
|
virtual int unpack_reverse_one(int, double *) {return 0;}
|
|
|
|
|
2007-03-16 05:49:48 +08:00
|
|
|
virtual int pack_border(int, int *, double *, int, int *) = 0;
|
2009-11-10 02:20:20 +08:00
|
|
|
virtual int pack_border_vel(int, int *, double *, int, int *) = 0;
|
2007-01-30 08:31:11 +08:00
|
|
|
virtual int pack_border_one(int, double *) {return 0;}
|
|
|
|
virtual void unpack_border(int, int, double *) = 0;
|
2009-11-10 02:20:20 +08:00
|
|
|
virtual void unpack_border_vel(int, int, double *) = 0;
|
2007-01-30 08:31:11 +08:00
|
|
|
virtual int unpack_border_one(int, double *) {return 0;}
|
|
|
|
|
|
|
|
virtual int pack_exchange(int, double *) = 0;
|
|
|
|
virtual int unpack_exchange(double *) = 0;
|
|
|
|
|
|
|
|
virtual int size_restart() = 0;
|
|
|
|
virtual int pack_restart(int, double *) = 0;
|
|
|
|
virtual int unpack_restart(double *) = 0;
|
|
|
|
|
2007-06-20 21:17:59 +08:00
|
|
|
virtual void create_atom(int, double *) = 0;
|
|
|
|
virtual void data_atom(double *, int, char **) = 0;
|
2009-11-17 07:13:17 +08:00
|
|
|
virtual int data_atom_hybrid(int, char **) {return 0;}
|
2007-06-20 21:17:59 +08:00
|
|
|
virtual void data_vel(int, char **);
|
|
|
|
virtual int data_vel_hybrid(int, char **) {return 0;}
|
2007-01-30 08:31:11 +08:00
|
|
|
|
2007-10-05 01:57:04 +08:00
|
|
|
virtual double memory_usage() = 0;
|
2007-01-30 08:31:11 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
int nmax; // local copy of atom->nmax
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|