Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F110812518
fix_enforce2d_cuda.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
Mon, Apr 28, 05:58
Size
1 KB
Mime Type
text/x-c
Expires
Wed, Apr 30, 05:58 (2 d)
Engine
blob
Format
Raw Data
Handle
25839119
Attached To
rLAMMPS lammps
fix_enforce2d_cuda.h
View Options
/* ----------------------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
Original Version:
http://lammps.sandia.gov, Sandia National Laboratories
Steve Plimpton, sjplimp@sandia.gov
See the README file in the top-level LAMMPS directory.
-----------------------------------------------------------------------
USER-CUDA Package and associated modifications:
https://sourceforge.net/projects/lammpscuda/
Christian Trott, christian.trott@tu-ilmenau.de
Lars Winterfeld, lars.winterfeld@tu-ilmenau.de
Theoretical Physics II, University of Technology Ilmenau, Germany
See the README file in the USER-CUDA directory.
This software is distributed under the GNU General Public License.
------------------------------------------------------------------------- */
#ifdef FIX_CLASS
FixStyle(enforce2d/cuda,FixEnforce2DCuda)
#else
#ifndef LMP_FIX_ENFORCE2D_CUDA_H
#define LMP_FIX_ENFORCE2D_CUDA_H
#include "fix.h"
namespace LAMMPS_NS {
class FixEnforce2DCuda : public Fix {
public:
FixEnforce2DCuda(class LAMMPS *, int, char **);
int setmask();
void init();
void setup(int);
void min_setup(int);
void post_force(int);
void post_force_respa(int, int, int);
void min_post_force(int);
private:
class Cuda *cuda;
};
}
#endif
#endif
Event Timeline
Log In to Comment