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

« back to all changes in this revision

Viewing changes to src/fix_wall_lj1043.h

  • Committer: Package Import Robot
  • Author(s): Anton Gladky
  • Date: 2013-11-20 22:41:36 UTC
  • mfrom: (1.2.2)
  • Revision ID: package-import@ubuntu.com-20131120224136-tzx7leh606fqnckm
Tags: 0~20131119.git7162cf0-1
* [e65b919] Imported Upstream version 0~20131119.git7162cf0
* [f7bddd4] Fix some problems, introduced by upstream recently.
* [3616dfc] Use wrap-and-sort script.
* [7e92030] Ignore quilt dir

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
#ifdef FIX_CLASS
 
15
 
 
16
FixStyle(wall/lj1043,FixWallLJ1043)
 
17
 
 
18
#else
 
19
 
 
20
#ifndef LMP_FIX_WALL_LJ1043_H
 
21
#define LMP_FIX_WALL_LJ1043_H
 
22
 
 
23
#include "fix_wall.h"
 
24
 
 
25
namespace LAMMPS_NS {
 
26
 
 
27
class FixWallLJ1043 : public FixWall {
 
28
 public:
 
29
  FixWallLJ1043(class LAMMPS *, int, char **);
 
30
  void precompute(int);
 
31
  void wall_particle(int, int, double);
 
32
 
 
33
 private:
 
34
  double coeff1[6],coeff2[6],coeff3[6],coeff4[6],coeff5[6],coeff6[6],
 
35
    coeff7[6],offset[6];
 
36
};
 
37
 
 
38
}
 
39
 
 
40
#endif
 
41
#endif
 
42