Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91415606
compute_angle.cpp
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 10, 21:47
Size
2 KB
Mime Type
text/x-c
Expires
Tue, Nov 12, 21:47 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22260029
Attached To
rLAMMPS lammps
compute_angle.cpp
View Options
/* ----------------------------------------------------------------------
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.
------------------------------------------------------------------------- */
#include <mpi.h>
#include <string.h>
#include "compute_angle.h"
#include "update.h"
#include "force.h"
#include "angle_hybrid.h"
#include "error.h"
using
namespace
LAMMPS_NS
;
/* ---------------------------------------------------------------------- */
ComputeAngle
::
ComputeAngle
(
LAMMPS
*
lmp
,
int
narg
,
char
**
arg
)
:
Compute
(
lmp
,
narg
,
arg
),
emine
(
NULL
)
{
if
(
narg
!=
3
)
error
->
all
(
FLERR
,
"Illegal compute angle command"
);
vector_flag
=
1
;
extvector
=
1
;
peflag
=
1
;
timeflag
=
1
;
// check if bond style hybrid exists
angle
=
(
AngleHybrid
*
)
force
->
angle_match
(
"hybrid"
);
if
(
!
angle
)
error
->
all
(
FLERR
,
"Angle style for compute angle command is not hybrid"
);
size_vector
=
nsub
=
angle
->
nstyles
;
emine
=
new
double
[
nsub
];
vector
=
new
double
[
nsub
];
}
/* ---------------------------------------------------------------------- */
ComputeAngle
::~
ComputeAngle
()
{
delete
[]
emine
;
delete
[]
vector
;
}
/* ---------------------------------------------------------------------- */
void
ComputeAngle
::
init
()
{
// recheck angle style in case it has been changed
angle
=
(
AngleHybrid
*
)
force
->
angle_match
(
"hybrid"
);
if
(
!
angle
)
error
->
all
(
FLERR
,
"Angle style for compute angle command is not hybrid"
);
if
(
angle
->
nstyles
!=
nsub
)
error
->
all
(
FLERR
,
"Angle style for compute angle command has changed"
);
}
/* ---------------------------------------------------------------------- */
void
ComputeAngle
::
compute_vector
()
{
invoked_vector
=
update
->
ntimestep
;
if
(
update
->
eflag_global
!=
invoked_vector
)
error
->
all
(
FLERR
,
"Energy was not tallied on needed timestep"
);
for
(
int
i
=
0
;
i
<
nsub
;
i
++
)
emine
[
i
]
=
angle
->
styles
[
i
]
->
energy
;
MPI_Allreduce
(
emine
,
vector
,
nsub
,
MPI_DOUBLE
,
MPI_SUM
,
world
);
}
Event Timeline
Log In to Comment