Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F111489738
atom_angle.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, May 2, 14:56
Size
1 KB
Mime Type
text/x-c
Expires
Sun, May 4, 14:56 (2 d)
Engine
blob
Format
Raw Data
Handle
25913364
Attached To
rLAMMPS lammps
atom_angle.h
View Options
/* ----------------------------------------------------------------------
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.
------------------------------------------------------------------------- */
#ifndef ATOM_ANGLE_H
#define ATOM_ANGLE_H
#include "atom.h"
class AtomAngle : public Atom {
public:
AtomAngle(int, char **);
~AtomAngle() {}
void copy(int, int);
void pack_comm(int, int *, double *, int *);
void unpack_comm(int, int, double *);
void pack_reverse(int, int, double *);
void unpack_reverse(int, int *, double *);
void pack_border(int, int *, double *, int *);
void unpack_border(int, int, double *);
int pack_exchange(int, double *);
int unpack_exchange(double *);
};
#endif
Event Timeline
Log In to Comment