Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91298093
compute_stress_tally.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
Sat, Nov 9, 18:55
Size
1 KB
Mime Type
text/x-c
Expires
Mon, Nov 11, 18:55 (2 d)
Engine
blob
Format
Raw Data
Handle
22238646
Attached To
rLAMMPS lammps
compute_stress_tally.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
(
stress
/
tally
,
ComputeStressTally
)
#else
#ifndef LMP_COMPUTE_STRESS_TALLY_H
#define LMP_COMPUTE_STRESS_TALLY_H
#include "compute.h"
namespace
LAMMPS_NS
{
class
ComputeStressTally
:
public
Compute
{
public:
ComputeStressTally
(
class
LAMMPS
*
,
int
,
char
**
);
virtual
~
ComputeStressTally
();
void
init
();
double
compute_scalar
();
void
compute_peratom
();
int
pack_reverse_comm
(
int
,
int
,
double
*
);
void
unpack_reverse_comm
(
int
,
int
*
,
double
*
);
double
memory_usage
();
void
pair_tally_callback
(
int
,
int
,
int
,
int
,
double
,
double
,
double
,
double
,
double
,
double
);
private:
bigint
did_compute
;
int
nmax
,
igroup2
,
groupbit2
;
double
**
stress
;
double
virial
[
6
];
};
}
#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.
*/
Event Timeline
Log In to Comment