Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90386490
fix_smd.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
Fri, Nov 1, 04:47
Size
1 KB
Mime Type
text/x-c
Expires
Sun, Nov 3, 04:47 (1 d, 22 h)
Engine
blob
Format
Raw Data
Handle
22003632
Attached To
rLAMMPS lammps
fix_smd.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 FIX_CLASS
FixStyle
(
smd
,
FixSMD
)
#else
#ifndef LMP_FIX_SMD_H
#define LMP_FIX_SMD_H
#include "fix.h"
namespace
LAMMPS_NS
{
class
FixSMD
:
public
Fix
{
public:
FixSMD
(
class
LAMMPS
*
,
int
,
char
**
);
int
setmask
();
void
init
();
void
setup
(
int
);
void
post_force
(
int
);
void
post_force_respa
(
int
,
int
,
int
);
double
compute_vector
(
int
);
void
write_restart
(
FILE
*
);
void
restart
(
char
*
);
private:
double
xc
,
yc
,
zc
,
xn
,
yn
,
zn
,
r0
;
double
k_smd
,
f_smd
,
v_smd
;
int
xflag
,
yflag
,
zflag
;
int
styleflag
;
double
r_old
,
r_now
,
pmf
;
int
igroup2
,
group2bit
;
double
masstotal
,
masstotal2
;
int
ilevel_respa
;
double
ftotal
[
3
],
ftotal_all
[
7
];
int
force_flag
;
void
smd_tether
();
void
smd_couple
();
};
}
#endif
#endif
Event Timeline
Log In to Comment