Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90511997
angle_class2.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 2, 08:42
Size
1 KB
Mime Type
text/x-c
Expires
Mon, Nov 4, 08:42 (2 d)
Engine
blob
Format
Raw Data
Handle
22085666
Attached To
rLAMMPS lammps
angle_class2.h
View Options
/* ----------------------------------------------------------------------
LAMMPS - Large-scale Atomic/Molecular Massively Parallel Simulator
www.cs.sandia.gov/~sjplimp/lammps.html
Steve Plimpton, sjplimp@sandia.gov, Sandia National Laboratories
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.
------------------------------------------------------------------------- */
#ifndef ANGLE_CLASS2_H
#define ANGLE_CLASS2_H
#include "stdio.h"
#include "angle.h"
class AngleClass2 : public Angle {
public:
AngleClass2() {}
~AngleClass2();
void compute(int, int);
void coeff(int, int, char **);
double equilibrium_angle(int);
void write_restart(FILE *);
void read_restart(FILE *);
private:
double *theta0,*k2,*k3,*k4;
double *bb_k,*bb_r1,*bb_r2;
double *ba_k1,*ba_k2,*ba_r1,*ba_r2;
int *setflag_a,*setflag_bb,*setflag_ba;
void allocate();
};
#endif
Event Timeline
Log In to Comment