Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90638986
compute_angmom_chunk.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
Sun, Nov 3, 11:58
Size
1 KB
Mime Type
text/x-c
Expires
Tue, Nov 5, 11:58 (2 d)
Engine
blob
Format
Raw Data
Handle
22013542
Attached To
rLAMMPS lammps
compute_angmom_chunk.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.
------------------------------------------------------------------------- */
#ifdef COMPUTE_CLASS
ComputeStyle
(
angmom
/
chunk
,
ComputeAngmomChunk
)
#else
#ifndef LMP_COMPUTE_ANGMOM_CHUNK_H
#define LMP_COMPUTE_ANGMOM_CHUNK_H
#include "compute.h"
namespace
LAMMPS_NS
{
class
ComputeAngmomChunk
:
public
Compute
{
public:
ComputeAngmomChunk
(
class
LAMMPS
*
,
int
,
char
**
);
~
ComputeAngmomChunk
();
void
init
();
void
compute_array
();
void
lock_enable
();
void
lock_disable
();
int
lock_length
();
void
lock
(
class
Fix
*
,
bigint
,
bigint
);
void
unlock
(
class
Fix
*
);
double
memory_usage
();
private:
int
nchunk
,
maxchunk
;
char
*
idchunk
;
class
ComputeChunkAtom
*
cchunk
;
double
*
massproc
,
*
masstotal
;
double
**
com
,
**
comall
;
double
**
angmom
,
**
angmomall
;
void
allocate
();
};
}
#endif
#endif
/* ERROR/WARNING messages:
E: Illegal ... command
Self-explanatory. Check the input script syntax and compare to the
documentation for the command. You can use -echo screen as a
command-line option when running LAMMPS to see the offending line.
E: Chunk/atom compute does not exist for compute angmom/chunk
Self-explanatory.
E: Compute angmom/chunk does not use chunk/atom compute
The style of the specified compute is not chunk/atom.
*/
Event Timeline
Log In to Comment