diff --git a/src/KOKKOS/fix_nh_kokkos.cpp b/src/KOKKOS/fix_nh_kokkos.cpp index 42d421e92ef85bfc1539c808e61d55f508283b9f..9e86e47bc964de6cb7c019c34b8e189d1af3076f 100644 --- a/src/KOKKOS/fix_nh_kokkos.cpp +++ b/src/KOKKOS/fix_nh_kokkos.cpp @@ -269,7 +269,10 @@ void FixNHKokkos<DeviceType>::final_integrate() //atomKK->sync(pressure->execution_space,pressure->datamask_read); //atomKK->modified(pressure->execution_space,pressure->datamask_modify); if (pstyle == ISO) pressure->compute_scalar(); - else pressure->compute_vector(); + else { + temperature->compute_vector(); + pressure->compute_vector(); + } couple(); pressure->addstep(update->ntimestep+1); } diff --git a/src/fix_nh.cpp b/src/fix_nh.cpp index a1a562f2bb078602875e8b8581891e891c9736d3..deca0ad83d09bf2215776ec7b1f54e5977b9a0c0 100644 --- a/src/fix_nh.cpp +++ b/src/fix_nh.cpp @@ -904,9 +904,16 @@ void FixNH::final_integrate() t_current = temperature->compute_scalar(); tdof = temperature->dof; + // need to recompute pressure to account for change in KE + // t_current is up-to-date, but compute_temperature is not + // compute appropriately coupled elements of mvv_current + if (pstat_flag) { if (pstyle == ISO) pressure->compute_scalar(); - else pressure->compute_vector(); + else { + temperature->compute_vector(); + pressure->compute_vector(); + } couple(); pressure->addstep(update->ntimestep+1); } @@ -1871,7 +1878,8 @@ void FixNH::nhc_press_integrate() } } - lkt_press = pdof * kt; + if (pstyle == ISO) lkt_press = kt; + else lkt_press = pdof * kt; etap_dotdot[0] = (kecurrent - lkt_press)/etap_mass[0]; double ncfac = 1.0/nc_pchain;