Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90956239
pair_lj_cut_coul_cut.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
Wed, Nov 6, 09:33
Size
1 KB
Mime Type
text/x-c
Expires
Fri, Nov 8, 09:33 (2 d)
Engine
blob
Format
Raw Data
Handle
22165183
Attached To
rLAMMPS lammps
pair_lj_cut_coul_cut.h
View Options
/* ----------------------------------------------------------------------
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.
------------------------------------------------------------------------- */
#ifndef PAIR_LJ_CUT_COUL_CUT_H
#define PAIR_LJ_CUT_COUL_CUT_H
#include "pair.h"
namespace LAMMPS_NS {
class PairLJCutCoulCut : public Pair {
public:
PairLJCutCoulCut(class LAMMPS *);
virtual ~PairLJCutCoulCut();
virtual void compute(int, int);
virtual void settings(int, char **);
void coeff(int, char **);
double init_one(int, int);
void init_style();
virtual void write_restart(FILE *);
virtual void read_restart(FILE *);
virtual void write_restart_settings(FILE *);
virtual void read_restart_settings(FILE *);
virtual void single(int, int, int, int, double, double, double, int, One &);
protected:
double cut_lj_global,cut_coul_global;
double **cut_lj,**cut_ljsq;
double **cut_coul,**cut_coulsq;
double **epsilon,**sigma;
double **lj1,**lj2,**lj3,**lj4,**offset;
void allocate();
};
}
#endif
Event Timeline
Log In to Comment