Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91551392
pair_lubricateU.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
Tue, Nov 12, 03:43
Size
2 KB
Mime Type
text/x-c
Expires
Thu, Nov 14, 03:43 (2 d)
Engine
blob
Format
Raw Data
Handle
22282180
Attached To
rLAMMPS lammps
pair_lubricateU.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
(
lubricateU
,
PairLubricateU
)
#else
#ifndef LMP_PAIR_LUBRICATEU_H
#define LMP_PAIR_LUBRICATEU_H
#include "pair.h"
namespace
LAMMPS_NS
{
class
PairLubricateU
:
public
Pair
{
public:
PairLubricateU
(
class
LAMMPS
*
);
virtual
~
PairLubricateU
();
virtual
void
compute
(
int
,
int
);
virtual
void
settings
(
int
,
char
**
);
void
coeff
(
int
,
char
**
);
double
init_one
(
int
,
int
);
virtual
void
init_style
();
void
write_restart
(
FILE
*
);
void
read_restart
(
FILE
*
);
void
write_restart_settings
(
FILE
*
);
void
read_restart_settings
(
FILE
*
);
int
pack_comm
(
int
,
int
*
,
double
*
,
int
,
int
*
);
void
unpack_comm
(
int
,
int
,
double
*
);
protected:
double
cut_inner_global
,
cut_global
;
double
mu
;
int
flaglog
;
double
gdot
,
Ef
[
3
][
3
];
double
**
cut_inner
,
**
cut
;
void
allocate
();
double
R0
,
RT0
,
RS0
;
int
nmax
;
double
**
fl
,
**
Tl
,
**
xl
;
int
cgmax
;
double
*
bcg
,
*
xcg
,
*
rcg
,
*
rcg1
,
*
pcg
,
*
RU
;
void
compute_RE
();
virtual
void
compute_RE
(
double
**
);
void
compute_RU
();
virtual
void
compute_RU
(
double
**
);
virtual
void
compute_Fh
(
double
**
);
void
stage_one
();
void
intermediates
(
int
,
double
**
);
void
stage_two
(
double
**
);
void
copy_vec_uo
(
int
,
double
*
,
double
**
,
double
**
);
void
copy_uo_vec
(
int
,
double
**
,
double
**
,
double
*
);
double
dot_vec_vec
(
int
,
double
*
,
double
*
);
};
}
#endif
#endif
/* ERROR/WARNING messages:
E: Illegal ... command
Self-explanatory. Check the input script syntax and compare to the
documentation for the command. You can use -echo screen as a
command-line option when running LAMMPS to see the offending line.
E: Incorrect args for pair coefficients
Self-explanatory. Check the input script or data file.
E: Pair lubricateU requires atom style sphere
Self-explanatory.
E: Pair lubricateU requires ghost atoms store velocity
Use the communicate vel yes command to enable this.
E: Pair lubricateU requires monodisperse particles
All particles must be the same finite size.
*/
Event Timeline
Log In to Comment