Can NPT be done with multiple pressures and temperatures? #374
|
Hey, I saw that it's possible to run batched NVT dynamics with various temperatures. Is the same possible for NPT i.e. running batched MD with different temperatures and pressures? Edit: Based on a quick glance at the code, I assume it's not possible. Is that correct? Thanks! |
Answered by
thomasloux
Dec 4, 2025
Replies: 2 comments
|
In TorchSim there is 2 parts: the integrators (Nosé Hoover, Langevin...) and the high level I've juste modified Example |
0 replies
Answer selected by
orionarcher
|
Great question and great answer! Converting to discussion |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In TorchSim there is 2 parts: the integrators (Nosé Hoover, Langevin...) and the high level
ts.integrateto easily run the MD simulation.Normally all integrators can accept multiple pressures and temperatures (one per system).
I've juste modified
ts.integrateto allow multiple temperatures #367. Regarding pressures, it is possible by providingintegrator_kwargsints.integrate.Example