2014-07-30 22:59:20 +08:00
|
|
|
/* -*- c++ -*- ----------------------------------------------------------
|
2010-11-23 08:41:14 +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
|
2012-06-07 06:47:51 +08:00
|
|
|
certain rights in this software. This software is distributed under
|
2010-11-23 08:41:14 +08:00
|
|
|
the GNU General Public License.
|
|
|
|
|
|
|
|
See the README file in the top-level LAMMPS directory.
|
|
|
|
------------------------------------------------------------------------- */
|
2010-11-24 03:56:33 +08:00
|
|
|
|
2016-09-08 03:42:58 +08:00
|
|
|
#ifdef NSTENCIL_CLASS
|
|
|
|
|
|
|
|
NStencilStyle(full/ghost/bin/2d,
|
|
|
|
NStencilFullGhostBin2d,
|
2017-05-31 05:04:48 +08:00
|
|
|
NS_FULL | NS_GHOST | NS_BIN | NS_2D |
|
2016-09-08 03:42:58 +08:00
|
|
|
NS_NEWTON | NS_NEWTOFF | NS_ORTHO | NS_TRI)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#ifndef LMP_NSTENCIL_FULL_GHOST_BIN_2D_H
|
|
|
|
#define LMP_NSTENCIL_FULL_GHOST_BIN_2D_H
|
|
|
|
|
|
|
|
#include "nstencil.h"
|
2010-11-23 08:41:14 +08:00
|
|
|
|
2016-09-08 03:42:58 +08:00
|
|
|
namespace LAMMPS_NS {
|
2012-02-10 05:03:50 +08:00
|
|
|
|
2016-09-08 03:42:58 +08:00
|
|
|
class NStencilFullGhostBin2d : public NStencil {
|
|
|
|
public:
|
|
|
|
NStencilFullGhostBin2d(class LAMMPS *);
|
|
|
|
~NStencilFullGhostBin2d() {}
|
|
|
|
void create();
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ERROR/WARNING messages:
|
2010-11-23 08:41:14 +08:00
|
|
|
|
2011-12-16 09:37:13 +08:00
|
|
|
*/
|