This is a test made for the Constraint Based Simulator. It provides a constraint satisfaction physics simulator with automatic differentiation.
cd code
python3 -m venv venv
source venv/bin/activate
python3 -m pip install -r requirements.txt
cd code
python3 main.py
Generate a new Constraint
subclass and use it in a case.
This explanation is meant to complement the references, please read that first. This explains how to compute the derivates with respect to time and position.
To obtain the constraint as a function of particles positions (instead of time) we use:
We don't have the single particle
And that lets us compute the derivatives (
We can use the result:
And compute λ such that:
We compute using an approximate least squares method.
- Interactive Dynamics by Andrew Witkin, Michael Gleicher and William Welch
- An Introduction to Physically Based Modeling: Constrained Dynamics by Andrew Witkin
- Constrained dynamics by Karen Liu
- JAX by The JAX Authors
- pygame by the pygame community
MIT License
Copyright (c) 2023 EmmanuelMess
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.