This commit is contained in:
jtclemm
2024-11-26 15:56:03 -07:00
parent 8aba26bd71
commit 09cd209c62
2 changed files with 3 additions and 3 deletions

View File

@ -97,7 +97,7 @@ void ComputeRHEOInterface::init()
auto fixes = modify->get_fix_by_style("rheo/pressure");
fix_pressure = dynamic_cast<FixRHEOPressure *>(fixes[0]);
if (!fix_pressure->invertable_pressure)
if (!fix_pressure->invertible_pressure)
error->all(FLERR, "RHEO interface reconstruction incompatible with pressure equation of state");
neighbor->add_request(this, NeighConst::REQ_DEFAULT);

View File

@ -46,7 +46,7 @@ FixRHEOPressure::FixRHEOPressure(LAMMPS *lmp, int narg, char **arg) :
comm_forward = 1;
variable_csq = 0;
invertable_pressure = 1;
invertible_pressure = 1;
background_flag = 0;
// Currently can only have one instance of fix rheo/pressure
@ -96,7 +96,7 @@ FixRHEOPressure::FixRHEOPressure(LAMMPS *lmp, int narg, char **arg) :
c_cubic[i] = c_cubic_one;
}
invertable_pressure = 0;
invertible_pressure = 0;
} else if (strcmp(arg[iarg + 1], "ideal/gas") == 0) {
if (iarg + 2 >= narg) utils::missing_cmd_args(FLERR, "fix rheo/pressure ideal/gas", error);