Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New implementation of NPT ensemble based on Andersen equation #5053

Merged
merged 1 commit into from
Apr 2, 2025

Conversation

hidekb
Copy link
Contributor

@hidekb hidekb commented Mar 13, 2025

Fixes #5037 and #5038.

Description of changes:

  • Instantaneous pressure during NPT integration can be obtained from Python.
    • NptIsoParameters nptiso becomes a variable in the System class.
  • NPTIsoParameters is divided into NPTIsoParameters and InstantaneousPressure, where the former contains only the algorithm's parameters, and the latter includes the pressure calculated during force calculation.
  • The previous implementation of the NPT ensemble cannot calculate isothermal compressibility correctly. To solve this problem, we split thermal fluctuation from momentum time evolution and replaced the algorithm for thermal fluctuation based on Benedict's paper.
  • Mass dependence of the prefactor for thermal fluctuation was also included in the friction and thermal noise prefactor.

@hidekb hidekb marked this pull request as draft March 14, 2025 17:48
@hidekb hidekb marked this pull request as ready for review March 18, 2025 10:51
@RudolfWeeber
Copy link
Contributor

Thank you Hideki.

A few things to check:

  • in void velocity_verlet_npt_finalize_p_inst(double time_step), would it be possible to aggreagate the mpi reductions into a single one so as to avoid three syncrhonization barriers?
  • your implementation relies on storing prefactors for particle masses in a std::unordered_map. Are you sure this is actually faster than calculating the factor on the fly? Element lookups from an std::unorderd_map tend to be surprisingly slow.
  • If you keep the cache-based implementation, please make sure that the rebuild of the cache is triggerd, when System::on_particle_change() is run.
  • Could you please also annote the equations in the code (or equations numbers from the paper)?
  • In the Python test case, could you please annote meanings of variables at first use, e.G., avpV_inst
  • Please also annote a reference for the expected .5 compressibility
  • Lastly, please check if an update of the documentation is neededd.

@hidekb
Copy link
Contributor Author

hidekb commented Mar 24, 2025

Dear Rudolf,

I checked and modified the code and the document following your suggestions.

in void velocity_verlet_npt_finalize_p_inst(double time_step), would it be possible to aggreagate the mpi reductions into a single one so as to avoid three syncrhonization barriers?

I aggregate two MPI reductions into a single one.

your implementation relies on storing prefactors for particle masses in a std::unordered_map. Are you sure this is actually faster than calculating the factor on the fly? Element lookups from an std::unorderd_map tend to be surprisingly slow.

I compared computational time per 5000 steps in the system with WCA potential, p_ext=1.0, and particle number 1000 on giraffe with condor_drain. And I concluded that both ways are almost the same;

  • storing prefactors for particle masses 1.732 $\pm$ 0.002 ms
  • calculating the factor on the fly 1.741 $\pm$ 0.004 ms

If you keep the cache-based implementation, please make sure that the rebuild of the cache is triggerd, when System::on_particle_change() is run.

In my understanding, the cache is rebuilt when m_resort_particles is not 0. In the present code, after running System::on_particle_change(), m_resort_particles is always greater than 0. Then, the cache is rebuilt after running CellStructure::update_ghosts_and_resort_particle.

Could you please also annote the equations in the code (or equations numbers from the paper)?

I annotated the equations in the code.

In the Python test case, could you please annote meanings of variables at first use, e.G., `avpV_inst`

I annotated the meaning of variables.

Please also annote a reference for the expected .5 compressibility

No paper directly writes the compressibility value, $\kappa_{T}$ of the WCA fluid at pressure $p=1.0$ and $k_{B}T=1.0$ in LJ unit. But, with using the Carnahan-Starling equation of state, we can estimate $\kappa_{T}$ at $k_{B}T=1.0$ and arbitrary pressure, because the Carnahan-Starling equation of state can well describe the pressure of the WCA fluid at $k_{B}T=1.0$. For $p=1.0$ and $k_{B}T=1.0$, $\kappa_{T}=0.5$. It is annotated in the test Python script.

Lastly, please check if an update of the documentation is neededd.

I updated the documentation about NpT integration.

RudolfWeeber
RudolfWeeber previously approved these changes Mar 31, 2025
Copy link
Member

@jngrad jngrad left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you very much!

@jngrad jngrad added New Feature automerge Merge with kodiak labels Apr 2, 2025
@jngrad jngrad added this to the ESPResSo 5.0 milestone Apr 2, 2025
@kodiakhq kodiakhq bot merged commit 6e84478 into espressomd:python Apr 2, 2025
10 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
automerge Merge with kodiak New Feature
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Separate data structs for NPt Parameters and instantaneous parameters
3 participants