diff --git a/src/USER-DPD/fix_eos_cv.cpp b/src/USER-DPD/fix_eos_cv.cpp
index a0a8bcd1a7d61123adb0d9e698d91820036cf9b3..7a2d278fe4766d73e20163704d3ffbcd23632fad 100644
--- a/src/USER-DPD/fix_eos_cv.cpp
+++ b/src/USER-DPD/fix_eos_cv.cpp
@@ -34,7 +34,6 @@ FixEOScv::FixEOScv(LAMMPS *lmp, int narg, char **arg) :
   cvEOS = force->numeric(FLERR,arg[3]);
   if(cvEOS <= 0.0) error->all(FLERR,"EOS cv must be > 0.0");
 
-  restart_peratom = 1;
   nevery = 1;
 
   if (atom->dpd_flag != 1)
diff --git a/src/USER-DPD/fix_eos_table.cpp b/src/USER-DPD/fix_eos_table.cpp
index 1f36bdc84bb3d8dc0570f2f2b64dff83a52eb2dc..c17a9721084d11968b5ae7ae9771fb1789c9fc97 100644
--- a/src/USER-DPD/fix_eos_table.cpp
+++ b/src/USER-DPD/fix_eos_table.cpp
@@ -34,7 +34,6 @@ FixEOStable::FixEOStable(LAMMPS *lmp, int narg, char **arg) :
   Fix(lmp, narg, arg), ntables(0), tables(NULL)
 {
   if (narg != 7) error->all(FLERR,"Illegal fix eos/table command");
-  restart_peratom = 1;
   nevery = 1;
 
   if (strcmp(arg[3],"linear") == 0) tabstyle = LINEAR;
diff --git a/src/USER-DPD/fix_eos_table_rx.cpp b/src/USER-DPD/fix_eos_table_rx.cpp
index 1dfd58c4658b0372692327562c689f0617951d20..b90c39ed4e8cfbf480d2064cb5058dd679cc7240 100644
--- a/src/USER-DPD/fix_eos_table_rx.cpp
+++ b/src/USER-DPD/fix_eos_table_rx.cpp
@@ -44,7 +44,6 @@ FixEOStableRX::FixEOStableRX(LAMMPS *lmp, int narg, char **arg) :
   tables2(NULL), dHf(NULL), eosSpecies(NULL)
 {
   if (narg != 8 && narg != 10) error->all(FLERR,"Illegal fix eos/table/rx command");
-  restart_peratom = 1;
   nevery = 1;
 
   rx_flag = false;