Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91042282
fix_temp_rescale_limit_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
Thu, Nov 7, 05:54
Size
1 KB
Mime Type
text/x-c
Expires
Sat, Nov 9, 05:54 (2 d)
Engine
blob
Format
Raw Data
Handle
22131288
Attached To
rLAMMPS lammps
fix_temp_rescale_limit_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(temp/rescale/limit/cuda,FixTempRescaleLimitCuda)
#else
#ifndef FIX_TEMP_RESCALE_LIMIT_CUDA_H
#define FIX_TEMP_RESCALE_LIMIT_CUDA_H
#include "fix.h"
namespace LAMMPS_NS {
class FixTempRescaleLimitCuda : public Fix {
public:
FixTempRescaleLimitCuda(class LAMMPS *, int, char **);
~FixTempRescaleLimitCuda();
int setmask();
void init();
void end_of_step();
int modify_param(int, char **);
void reset_target(double);
double compute_scalar();
private:
class Cuda *cuda;
int which;
double t_start,t_stop,t_window;
double fraction,energy,efactor;
double limit;
char *id_temp;
class Compute *temperature;
int tflag;
};
}
#endif
#endif
Event Timeline
Log In to Comment