Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F124300556
fix_nvt.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, Aug 1, 15:08
Size
1 KB
Mime Type
text/x-c
Expires
Sun, Aug 3, 15:08 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27826255
Attached To
rLAMMPS lammps
fix_nvt.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 FIX_NVT_H
#define FIX_NVT_H
#include "fix.h"
namespace
LAMMPS_NS
{
class
FixNVT
:
public
Fix
{
public:
FixNVT
(
class
LAMMPS
*
,
int
,
char
**
);
virtual
~
FixNVT
();
int
setmask
();
virtual
void
init
();
void
setup
(
int
);
virtual
void
initial_integrate
(
int
);
virtual
void
final_integrate
();
virtual
void
initial_integrate_respa
(
int
,
int
,
int
);
void
final_integrate_respa
(
int
);
double
compute_scalar
();
void
write_restart
(
FILE
*
);
void
restart
(
char
*
);
int
modify_param
(
int
,
char
**
);
void
reset_target
(
double
);
void
reset_dt
();
protected:
int
which
;
double
t_start
,
t_stop
;
double
t_current
,
t_target
;
double
t_freq
,
drag
,
drag_factor
;
double
f_eta
,
eta_dot
,
eta
,
factor
;
double
dtv
,
dtf
,
dthalf
;
int
nlevels_respa
;
double
*
step_respa
;
char
*
id_temp
;
class
Compute
*
temperature
;
int
tflag
;
};
}
#endif
Event Timeline
Log In to Comment