forked from lijiext/lammps
39 lines
1.1 KiB
C
39 lines
1.1 KiB
C
![]() |
/* ----------------------------------------------------------------------
|
||
|
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 BOND_FENE_H
|
||
|
#define BOND_FENE_H
|
||
|
|
||
|
#include "stdio.h"
|
||
|
#include "bond.h"
|
||
|
|
||
|
class BondFENE : public Bond {
|
||
|
public:
|
||
|
BondFENE();
|
||
|
~BondFENE();
|
||
|
void compute(int, int);
|
||
|
void coeff(int, char **);
|
||
|
double equilibrium_distance(int);
|
||
|
void write_restart(FILE *);
|
||
|
void read_restart(FILE *);
|
||
|
void single(int, double, int, int, double, int, double &, double &);
|
||
|
|
||
|
private:
|
||
|
double TWO_1_3;
|
||
|
double *k,*r0,*epsilon,*sigma;
|
||
|
|
||
|
void allocate();
|
||
|
};
|
||
|
|
||
|
#endif
|