Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91659684
pair_eff_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 13, 04:55
Size
1 KB
Mime Type
text/x-c
Expires
Fri, Nov 15, 04:55 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22077743
Attached To
rLAMMPS lammps
pair_eff_cut.h
View Options
/* -*- c++ -*- ----------------------------------------------------------
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.
------------------------------------------------------------------------- */
#ifdef PAIR_CLASS
PairStyle(eff/cut,PairEffCut)
#else
#ifndef LMP_PAIR_EFF_CUT_H
#define LMP_PAIR_EFF_CUT_H
#include "pair.h"
namespace LAMMPS_NS {
class PairEffCut : public Pair {
public:
PairEffCut(class LAMMPS *);
virtual ~PairEffCut();
virtual void compute(int, int);
virtual void settings(int, char **);
void coeff(int, char **);
void init_style();
void min_pointers(double **, double **);
double init_one(int, int);
void write_restart(FILE *);
void read_restart(FILE *);
virtual void write_restart_settings(FILE *);
virtual void read_restart_settings(FILE *);
void min_xf_pointers(int, double **, double **);
void min_xf_get(int);
void min_x_set(int);
double memory_usage();
private:
int limit_eradius_flag, pressure_with_evirials_flag;
double cut_global;
double **cut;
int ecp_type[100];
double PAULI_CORE_A[100], PAULI_CORE_B[100], PAULI_CORE_C[100], PAULI_CORE_D[100], PAULI_CORE_E[100];
double hhmss2e, h2e;
int nmax;
double *min_eradius,*min_erforce;
void allocate();
void virial_eff_compute();
void ev_tally_eff(int, int, int, int, double, double);
};
}
#endif
#endif
Event Timeline
Log In to Comment