~ubuntu-branches/debian/sid/lammps/sid

« back to all changes in this revision

Viewing changes to src/CORESHELL/pair_buck_coul_long_cs.h

  • Committer: Package Import Robot
  • Author(s): Anton Gladky
  • Date: 2015-04-29 23:44:49 UTC
  • mfrom: (5.1.3 experimental)
  • Revision ID: package-import@ubuntu.com-20150429234449-mbhy9utku6hp6oq8
Tags: 0~20150313.gitfa668e1-1
Upload into unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* ----------------------------------------------------------------------
 
2
   LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
 
3
   http://lammps.sandia.gov, Sandia National Laboratories
 
4
   Steve Plimpton, sjplimp@sandia.gov
 
5
 
 
6
   Copyright (2003) Sandia Corporation.  Under the terms of Contract
 
7
   DE-AC04-94AL85000 with Sandia Corporation, the U.S. Government retains
 
8
   certain rights in this software.  This software is distributed under
 
9
   the GNU General Public License.
 
10
 
 
11
   See the README file in the top-level LAMMPS directory.
 
12
------------------------------------------------------------------------- */
 
13
 
 
14
/* ----------------------------------------------------------------------
 
15
   Contributing author: Hendrik Heenen (hendrik.heenen@mytum.com)
 
16
------------------------------------------------------------------------- */
 
17
 
 
18
#ifdef PAIR_CLASS
 
19
 
 
20
PairStyle(buck/coul/long/cs,PairBuckCoulLongCS)
 
21
 
 
22
#else
 
23
 
 
24
#ifndef LMP_PAIR_BUCK_COUL_LONG_CS_H
 
25
#define LMP_PAIR_BUCK_COUL_LONG_CS_H
 
26
 
 
27
#include "pair_buck_coul_long.h"
 
28
 
 
29
namespace LAMMPS_NS {
 
30
 
 
31
class PairBuckCoulLongCS : public PairBuckCoulLong {
 
32
 public:
 
33
  PairBuckCoulLongCS(class LAMMPS *);
 
34
  virtual void compute(int, int);
 
35
};
 
36
 
 
37
}
 
38
 
 
39
#endif
 
40
#endif
 
41
 
 
42
/* ERROR/WARNING messages:
 
43
 
 
44
E: Illegal ... command
 
45
 
 
46
Self-explanatory.  Check the input script syntax and compare to the
 
47
documentation for the command.  You can use -echo screen as a
 
48
command-line option when running LAMMPS to see the offending line.
 
49
 
 
50
E: Incorrect args for pair coefficients
 
51
 
 
52
Self-explanatory.  Check the input script or data file.
 
53
 
 
54
E: All pair coeffs are not set
 
55
 
 
56
All pair coefficients must be set in the data file or by the
 
57
pair_coeff command before running a simulation.
 
58
 
 
59
E: Pair style buck/coul/long requires atom attribute q
 
60
 
 
61
The atom style defined does not have these attributes.
 
62
 
 
63
E: Pair style requires a KSpace style
 
64
 
 
65
No kspace style is defined.
 
66
 
 
67
*/