Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F122177284
fix_drag.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, Jul 16, 09:06
Size
1010 B
Mime Type
text/x-c
Expires
Fri, Jul 18, 09:06 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27445062
Attached To
rLAMMPS lammps
fix_drag.h
View Options
/* ----------------------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
www.cs.sandia.gov/~sjplimp/lammps.html
Steve Plimpton, sjplimp@sandia.gov, Sandia National Laboratories
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_DRAG_H
#define FIX_DRAG_H
#include "fix.h"
class FixDrag : public Fix {
public:
FixDrag(int, char **);
~FixDrag() {}
int setmask();
void init();
void setup();
void post_force(int);
void post_force_respa(int, int, int);
private:
double xc,yc,zc;
double f_mag;
int xflag,yflag,zflag;
double delta;
int nlevels_respa;
};
#endif
Event Timeline
Log In to Comment