mirror of https://github.com/lammps/lammps.git
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@7190 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
fdba4b962b
commit
c8a544cbae
|
@ -26,8 +26,9 @@ using namespace LAMMPS_NS;
|
|||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
PairSPHHeatConduction::PairSPHHeatConduction(LAMMPS *lmp) :
|
||||
Pair(lmp) {
|
||||
PairSPHHeatConduction::PairSPHHeatConduction(LAMMPS *lmp) : Pair(lmp)
|
||||
{
|
||||
restartinfo = 0;
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
|
|
@ -26,8 +26,9 @@ using namespace LAMMPS_NS;
|
|||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
PairSPHIdealGas::PairSPHIdealGas(LAMMPS *lmp) :
|
||||
Pair(lmp) {
|
||||
PairSPHIdealGas::PairSPHIdealGas(LAMMPS *lmp) : Pair(lmp)
|
||||
{
|
||||
restartinfo = 0;
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
|
|
@ -26,8 +26,9 @@ using namespace LAMMPS_NS;
|
|||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
PairSPHLJ::PairSPHLJ(LAMMPS *lmp) :
|
||||
Pair(lmp) {
|
||||
PairSPHLJ::PairSPHLJ(LAMMPS *lmp) : Pair(lmp)
|
||||
{
|
||||
restartinfo = 0;
|
||||
}
|
||||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
|
|
@ -29,8 +29,9 @@ using namespace LAMMPS_NS;
|
|||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
PairSPHRhoSum::PairSPHRhoSum(LAMMPS *lmp) :
|
||||
Pair(lmp) {
|
||||
PairSPHRhoSum::PairSPHRhoSum(LAMMPS *lmp) : Pair(lmp)
|
||||
{
|
||||
restartinfo = 0;
|
||||
|
||||
// set comm size needed by this Pair
|
||||
|
||||
|
|
|
@ -26,8 +26,9 @@ using namespace LAMMPS_NS;
|
|||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
PairSPHTaitwater::PairSPHTaitwater(LAMMPS *lmp) :
|
||||
Pair(lmp) {
|
||||
PairSPHTaitwater::PairSPHTaitwater(LAMMPS *lmp) : Pair(lmp)
|
||||
{
|
||||
restartinfo = 0;
|
||||
|
||||
first = 1;
|
||||
}
|
||||
|
|
|
@ -26,9 +26,9 @@ using namespace LAMMPS_NS;
|
|||
|
||||
/* ---------------------------------------------------------------------- */
|
||||
|
||||
PairSPHTaitwaterMorris::PairSPHTaitwaterMorris(LAMMPS *lmp) :
|
||||
Pair(lmp) {
|
||||
|
||||
PairSPHTaitwaterMorris::PairSPHTaitwaterMorris(LAMMPS *lmp) : Pair(lmp)
|
||||
{
|
||||
restartinfo = 0;
|
||||
first = 1;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue