Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91066306
pair_gayberne.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
Thu, Nov 7, 12:39
Size
2 KB
Mime Type
text/x-c
Expires
Sat, Nov 9, 12:39 (2 d)
Engine
blob
Format
Raw Data
Handle
22189416
Attached To
rLAMMPS lammps
pair_gayberne.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.
------------------------------------------------------------------------- */
#ifdef PAIR_CLASS
PairStyle
(
gayberne
,
PairGayBerne
)
#else
#ifndef LMP_PAIR_GAYBERNE_H
#define LMP_PAIR_GAYBERNE_H
#include "pair.h"
namespace
LAMMPS_NS
{
class
PairGayBerne
:
public
Pair
{
public:
PairGayBerne
(
LAMMPS
*
lmp
);
virtual
~
PairGayBerne
();
virtual
void
compute
(
int
,
int
);
virtual
void
settings
(
int
,
char
**
);
void
coeff
(
int
,
char
**
);
virtual
void
init_style
();
double
init_one
(
int
,
int
);
void
write_restart
(
FILE
*
);
void
read_restart
(
FILE
*
);
void
write_restart_settings
(
FILE
*
);
void
read_restart_settings
(
FILE
*
);
protected:
enum
{
SPHERE_SPHERE
,
SPHERE_ELLIPSE
,
ELLIPSE_SPHERE
,
ELLIPSE_ELLIPSE
};
double
cut_global
;
double
**
cut
;
double
gamma
,
upsilon
,
mu
;
// Gay-Berne parameters
double
**
shape1
;
// per-type radii in x, y and z
double
**
shape2
;
// per-type radii in x, y and z SQUARED
double
*
lshape
;
// precalculation based on the shape
double
**
well
;
// well depth scaling along each axis ^ -1.0/mu
double
**
epsilon
,
**
sigma
;
// epsilon and sigma values for atom-type pairs
int
**
form
;
double
**
lj1
,
**
lj2
,
**
lj3
,
**
lj4
;
double
**
offset
;
int
*
setwell
;
class
AtomVecEllipsoid
*
avec
;
void
allocate
();
double
gayberne_analytic
(
const
int
i
,
const
int
j
,
double
a1
[
3
][
3
],
double
a2
[
3
][
3
],
double
b1
[
3
][
3
],
double
b2
[
3
][
3
],
double
g1
[
3
][
3
],
double
g2
[
3
][
3
],
double
*
r12
,
const
double
rsq
,
double
*
fforce
,
double
*
ttor
,
double
*
rtor
);
double
gayberne_lj
(
const
int
i
,
const
int
j
,
double
a1
[
3
][
3
],
double
b1
[
3
][
3
],
double
g1
[
3
][
3
],
double
*
r12
,
const
double
rsq
,
double
*
fforce
,
double
*
ttor
);
void
compute_eta_torque
(
double
m
[
3
][
3
],
double
m2
[
3
][
3
],
double
*
s
,
double
ans
[
3
][
3
]);
};
}
#endif
#endif
Event Timeline
Log In to Comment