Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91803139
fix_gaussflow.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 14, 15:07
Size
1 KB
Mime Type
text/x-c
Expires
Sat, Nov 16, 15:07 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
22327783
Attached To
rLAMMPS lammps
fix_gaussflow.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.
Contributing authors: Steven E. Strong and Joel D. Eaves
Joel.Eaves@Colorado.edu
------------------------------------------------------------------------- */
#ifdef FIX_CLASS
FixStyle(gaussFlow,FixGaussFlow)
#else
#ifndef LMP_FIX_GAUSSFLOW_H
#define LMP_FIX_GAUSSFLOW_H
#include "fix.h"
namespace LAMMPS_NS {
class FixGaussFlow : public Fix {
public:
FixGaussFlow(class LAMMPS *, int, char **);
int setmask();
double compute_scalar();
double compute_vector(int n);
void post_force(int);
void setup(int);
protected:
int dimension;
bool flow[3]; //flag if each direction is conserved
double a_app[3]; //applied acceleration
double mTot; //total mass of constrained group
double f_tot[3]; //total applied force
double peAdded; //total added energy per proc
double pe_tot; //total added energy
bool force_flag; //if force has been computed this timestep already
double dt; //timestep
bool workflag; //if calculate work done by fix
};
}
#endif
#endif
Event Timeline
Log In to Comment