cosseratbench 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- cosseratbench-0.0.1/LICENSE +201 -0
- cosseratbench-0.0.1/PKG-INFO +97 -0
- cosseratbench-0.0.1/README.md +79 -0
- cosseratbench-0.0.1/pyproject.toml +48 -0
- cosseratbench-0.0.1/pyproject.toml.orig +45 -0
- cosseratbench-0.0.1/src/cosseratbench/__init__.py +22 -0
- cosseratbench-0.0.1/src/cosseratbench/cli.py +70 -0
- cosseratbench-0.0.1/src/cosseratbench/experiment.py +112 -0
- cosseratbench-0.0.1/src/cosseratbench/experiments/__init__.py +0 -0
- cosseratbench-0.0.1/src/cosseratbench/experiments/cantilever.py +51 -0
- cosseratbench-0.0.1/src/cosseratbench/experiments/catenary.py +99 -0
- cosseratbench-0.0.1/src/cosseratbench/metrics.py +27 -0
- cosseratbench-0.0.1/src/cosseratbench/py.typed +0 -0
- cosseratbench-0.0.1/src/cosseratbench/registry.py +43 -0
- cosseratbench-0.0.1/src/cosseratbench/scenario.py +104 -0
- cosseratbench-0.0.1/src/cosseratbench/solver.py +32 -0
- cosseratbench-0.0.1/src/cosseratbench/solvers/__init__.py +0 -0
- cosseratbench-0.0.1/src/cosseratbench/solvers/mujoco.py +131 -0
- cosseratbench-0.0.1/src/cosseratbench/solvers/pyelastica.py +147 -0
- cosseratbench-0.0.1/src/cosseratbench/trajectory.py +31 -0
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cosseratbench
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A visual benchmark suite for rope, cable, and Cosserat rod simulation.
|
|
5
|
+
Author: Jake Van Slyke
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
License-File: LICENSE
|
|
8
|
+
Requires-Dist: numpy>=1.24
|
|
9
|
+
Requires-Dist: cosseratbench[pyelastica,mujoco] ; extra == 'all'
|
|
10
|
+
Requires-Dist: mujoco>=3.2 ; extra == 'mujoco'
|
|
11
|
+
Requires-Dist: pyelastica>=1.0 ; extra == 'pyelastica'
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Project-URL: Repository, https://github.com/jakeryderv/cosseratbench
|
|
14
|
+
Provides-Extra: all
|
|
15
|
+
Provides-Extra: mujoco
|
|
16
|
+
Provides-Extra: pyelastica
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# cosseratbench
|
|
20
|
+
|
|
21
|
+
***A visual benchmark suite for evaluating rope, cable, and Cosserat rod simulation across deformation, contact, and dynamic stress cases.***
|
|
22
|
+
|
|
23
|
+
| # | Experiment | What it tests |
|
|
24
|
+
| -- | ---------------------------------- | ----------------------------------------------------------------------- |
|
|
25
|
+
| 1 | **Twist → plectoneme / knot** | twist, bending, buckling, extreme curvature, self-contact |
|
|
26
|
+
| 2 | **Rope drop / pile** | gravity, friction, chaotic self-contact, many simultaneous contacts |
|
|
27
|
+
| 3 | **Catenary / hanging cable** | basic gravity, tension, sag, stretch; good sanity/validation case |
|
|
28
|
+
| 4 | **Cantilever bend + twist** | isolated bending stiffness, torsion, large deformation |
|
|
29
|
+
| 5 | **Pendulum / swinging cable** | dynamics, inertia, damping, oscillation |
|
|
30
|
+
| 6 | **Snap / whip test** | very fast motion, high curvature, timestep stability |
|
|
31
|
+
| 7 | **Cylinder wrap / capstan** | rod-cylinder contact, friction, sliding, tension transfer |
|
|
32
|
+
| 8 | **Pulley / sheave** | moving contact, bending around small radius, tension under motion |
|
|
33
|
+
| 9 | **Obstacle course** | repeated contact against cylinders/planes/spheres, sliding and snagging |
|
|
34
|
+
| 10 | **Two-rope interaction** | rod-rod contact, crossing, rubbing, entanglement |
|
|
35
|
+
| 11 | **Loop / knot tightening** | persistent dense self-contact and friction under increasing tension |
|
|
36
|
+
| 12 | **Compression / coiling** | rope pushed into a confined area; buckling and pile formation |
|
|
37
|
+
| 13 | **Container packing** | rope fed into a box/cylinder; dense 3D self-contact |
|
|
38
|
+
| 14 | **Parameter/extreme stress sweep** | deliberately push stiffness, friction, speed, resolution, timestep |
|
|
39
|
+
|
|
40
|
+
## Status
|
|
41
|
+
|
|
42
|
+
Early. Two experiments (catenary, cantilever) run against two solvers
|
|
43
|
+
([PyElastica](https://github.com/GazzolaLab/PyElastica) and
|
|
44
|
+
[MuJoCo](https://mujoco.org)'s cable plugin), each scored against an analytical
|
|
45
|
+
reference. Contact, driven boundaries and the web viewer are not built yet.
|
|
46
|
+
|
|
47
|
+
## Usage
|
|
48
|
+
|
|
49
|
+
```sh
|
|
50
|
+
uv sync --all-extras # from a clone; installs both solver backends
|
|
51
|
+
uv run cosseratbench list
|
|
52
|
+
uv run cosseratbench run # every experiment x every solver, saved under results/
|
|
53
|
+
uv run cosseratbench run catenary --solver pyelastica --n-elements 100
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Each run writes `results/<experiment>/<solver>/result.json` (metrics, wall time)
|
|
57
|
+
and `trajectory.npz` (node positions over time).
|
|
58
|
+
|
|
59
|
+
## How it fits together
|
|
60
|
+
|
|
61
|
+
- A **scenario** describes the physics and nothing else: geometry, material,
|
|
62
|
+
boundary conditions, loads, gravity, duration, all in SI units. Time steps,
|
|
63
|
+
element counts, contact stiffnesses and damping coefficients are not part of
|
|
64
|
+
it; they are each solver's business.
|
|
65
|
+
- A **solver** adapter turns a scenario into a **trajectory**, node positions
|
|
66
|
+
over time, at a requested resolution. It declares the physics it models
|
|
67
|
+
(`Capability`), and an experiment that needs more is reported as unsupported
|
|
68
|
+
rather than run.
|
|
69
|
+
- An **experiment** pairs a scenario with **metrics**. Metrics see only the
|
|
70
|
+
scenario and the trajectory, so every solver is judged by the same code.
|
|
71
|
+
|
|
72
|
+
## Adding a solver or an experiment
|
|
73
|
+
|
|
74
|
+
Both are discovered through entry points, so they can live in your own package:
|
|
75
|
+
|
|
76
|
+
```toml
|
|
77
|
+
[project.entry-points."cosseratbench.solvers"]
|
|
78
|
+
mysolver = "mypackage.adapter:MySolver"
|
|
79
|
+
|
|
80
|
+
[project.entry-points."cosseratbench.experiments"]
|
|
81
|
+
myexperiment = "mypackage.experiments:my_experiment"
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
```python
|
|
85
|
+
from cosseratbench import Capability, Scenario, Trajectory
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
class MySolver:
|
|
89
|
+
name = "mysolver"
|
|
90
|
+
capabilities = frozenset({Capability.STRETCH})
|
|
91
|
+
|
|
92
|
+
def run(self, scenario: Scenario, *, n_elements: int, n_frames: int) -> Trajectory: ...
|
|
93
|
+
```
|
|
94
|
+
|
|
95
|
+
The built-in solvers and experiments register the same way; see
|
|
96
|
+
`src/cosseratbench/solvers` and `src/cosseratbench/experiments`.
|
|
97
|
+
|
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# cosseratbench
|
|
2
|
+
|
|
3
|
+
***A visual benchmark suite for evaluating rope, cable, and Cosserat rod simulation across deformation, contact, and dynamic stress cases.***
|
|
4
|
+
|
|
5
|
+
| # | Experiment | What it tests |
|
|
6
|
+
| -- | ---------------------------------- | ----------------------------------------------------------------------- |
|
|
7
|
+
| 1 | **Twist → plectoneme / knot** | twist, bending, buckling, extreme curvature, self-contact |
|
|
8
|
+
| 2 | **Rope drop / pile** | gravity, friction, chaotic self-contact, many simultaneous contacts |
|
|
9
|
+
| 3 | **Catenary / hanging cable** | basic gravity, tension, sag, stretch; good sanity/validation case |
|
|
10
|
+
| 4 | **Cantilever bend + twist** | isolated bending stiffness, torsion, large deformation |
|
|
11
|
+
| 5 | **Pendulum / swinging cable** | dynamics, inertia, damping, oscillation |
|
|
12
|
+
| 6 | **Snap / whip test** | very fast motion, high curvature, timestep stability |
|
|
13
|
+
| 7 | **Cylinder wrap / capstan** | rod-cylinder contact, friction, sliding, tension transfer |
|
|
14
|
+
| 8 | **Pulley / sheave** | moving contact, bending around small radius, tension under motion |
|
|
15
|
+
| 9 | **Obstacle course** | repeated contact against cylinders/planes/spheres, sliding and snagging |
|
|
16
|
+
| 10 | **Two-rope interaction** | rod-rod contact, crossing, rubbing, entanglement |
|
|
17
|
+
| 11 | **Loop / knot tightening** | persistent dense self-contact and friction under increasing tension |
|
|
18
|
+
| 12 | **Compression / coiling** | rope pushed into a confined area; buckling and pile formation |
|
|
19
|
+
| 13 | **Container packing** | rope fed into a box/cylinder; dense 3D self-contact |
|
|
20
|
+
| 14 | **Parameter/extreme stress sweep** | deliberately push stiffness, friction, speed, resolution, timestep |
|
|
21
|
+
|
|
22
|
+
## Status
|
|
23
|
+
|
|
24
|
+
Early. Two experiments (catenary, cantilever) run against two solvers
|
|
25
|
+
([PyElastica](https://github.com/GazzolaLab/PyElastica) and
|
|
26
|
+
[MuJoCo](https://mujoco.org)'s cable plugin), each scored against an analytical
|
|
27
|
+
reference. Contact, driven boundaries and the web viewer are not built yet.
|
|
28
|
+
|
|
29
|
+
## Usage
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
uv sync --all-extras # from a clone; installs both solver backends
|
|
33
|
+
uv run cosseratbench list
|
|
34
|
+
uv run cosseratbench run # every experiment x every solver, saved under results/
|
|
35
|
+
uv run cosseratbench run catenary --solver pyelastica --n-elements 100
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
Each run writes `results/<experiment>/<solver>/result.json` (metrics, wall time)
|
|
39
|
+
and `trajectory.npz` (node positions over time).
|
|
40
|
+
|
|
41
|
+
## How it fits together
|
|
42
|
+
|
|
43
|
+
- A **scenario** describes the physics and nothing else: geometry, material,
|
|
44
|
+
boundary conditions, loads, gravity, duration, all in SI units. Time steps,
|
|
45
|
+
element counts, contact stiffnesses and damping coefficients are not part of
|
|
46
|
+
it; they are each solver's business.
|
|
47
|
+
- A **solver** adapter turns a scenario into a **trajectory**, node positions
|
|
48
|
+
over time, at a requested resolution. It declares the physics it models
|
|
49
|
+
(`Capability`), and an experiment that needs more is reported as unsupported
|
|
50
|
+
rather than run.
|
|
51
|
+
- An **experiment** pairs a scenario with **metrics**. Metrics see only the
|
|
52
|
+
scenario and the trajectory, so every solver is judged by the same code.
|
|
53
|
+
|
|
54
|
+
## Adding a solver or an experiment
|
|
55
|
+
|
|
56
|
+
Both are discovered through entry points, so they can live in your own package:
|
|
57
|
+
|
|
58
|
+
```toml
|
|
59
|
+
[project.entry-points."cosseratbench.solvers"]
|
|
60
|
+
mysolver = "mypackage.adapter:MySolver"
|
|
61
|
+
|
|
62
|
+
[project.entry-points."cosseratbench.experiments"]
|
|
63
|
+
myexperiment = "mypackage.experiments:my_experiment"
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
```python
|
|
67
|
+
from cosseratbench import Capability, Scenario, Trajectory
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
class MySolver:
|
|
71
|
+
name = "mysolver"
|
|
72
|
+
capabilities = frozenset({Capability.STRETCH})
|
|
73
|
+
|
|
74
|
+
def run(self, scenario: Scenario, *, n_elements: int, n_frames: int) -> Trajectory: ...
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
The built-in solvers and experiments register the same way; see
|
|
78
|
+
`src/cosseratbench/solvers` and `src/cosseratbench/experiments`.
|
|
79
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "cosseratbench"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "A visual benchmark suite for rope, cable, and Cosserat rod simulation."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "Apache-2.0"
|
|
7
|
+
license-files = ["LICENSE"]
|
|
8
|
+
requires-python = ">=3.10"
|
|
9
|
+
dependencies = ["numpy>=1.24"]
|
|
10
|
+
|
|
11
|
+
[[project.authors]]
|
|
12
|
+
name = "Jake Van Slyke"
|
|
13
|
+
|
|
14
|
+
[project.optional-dependencies]
|
|
15
|
+
pyelastica = ["pyelastica>=1.0"]
|
|
16
|
+
mujoco = ["mujoco>=3.2"]
|
|
17
|
+
all = ["cosseratbench[pyelastica,mujoco]"]
|
|
18
|
+
|
|
19
|
+
[project.urls]
|
|
20
|
+
Repository = "https://github.com/jakeryderv/cosseratbench"
|
|
21
|
+
|
|
22
|
+
[project.scripts]
|
|
23
|
+
cosseratbench = "cosseratbench.cli:main"
|
|
24
|
+
|
|
25
|
+
[project.entry-points."cosseratbench.solvers"]
|
|
26
|
+
pyelastica = "cosseratbench.solvers.pyelastica:PyElasticaSolver"
|
|
27
|
+
mujoco = "cosseratbench.solvers.mujoco:MuJoCoSolver"
|
|
28
|
+
|
|
29
|
+
[project.entry-points."cosseratbench.experiments"]
|
|
30
|
+
catenary = "cosseratbench.experiments.catenary:catenary"
|
|
31
|
+
cantilever = "cosseratbench.experiments.cantilever:cantilever"
|
|
32
|
+
|
|
33
|
+
[dependency-groups]
|
|
34
|
+
dev = [
|
|
35
|
+
"pytest>=8",
|
|
36
|
+
"ruff>=0.6",
|
|
37
|
+
]
|
|
38
|
+
|
|
39
|
+
[build-system]
|
|
40
|
+
requires = ["uv_build>=0.12.11,<0.13.0"]
|
|
41
|
+
build-backend = "uv_build"
|
|
42
|
+
|
|
43
|
+
[tool.ruff]
|
|
44
|
+
line-length = 100
|
|
45
|
+
|
|
46
|
+
[tool.pytest.ini_options]
|
|
47
|
+
testpaths = ["tests"]
|
|
48
|
+
markers = ["slow: runs a full simulation"]
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "cosseratbench"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "A visual benchmark suite for rope, cable, and Cosserat rod simulation."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "Apache-2.0"
|
|
7
|
+
license-files = ["LICENSE"]
|
|
8
|
+
authors = [{ name = "Jake Van Slyke" }]
|
|
9
|
+
requires-python = ">=3.10"
|
|
10
|
+
dependencies = ["numpy>=1.24"]
|
|
11
|
+
|
|
12
|
+
[project.optional-dependencies]
|
|
13
|
+
pyelastica = ["pyelastica>=1.0"]
|
|
14
|
+
mujoco = ["mujoco>=3.2"]
|
|
15
|
+
all = ["cosseratbench[pyelastica,mujoco]"]
|
|
16
|
+
|
|
17
|
+
[project.urls]
|
|
18
|
+
Repository = "https://github.com/jakeryderv/cosseratbench"
|
|
19
|
+
|
|
20
|
+
[project.scripts]
|
|
21
|
+
cosseratbench = "cosseratbench.cli:main"
|
|
22
|
+
|
|
23
|
+
# Built-in solvers and experiments register through the same entry points
|
|
24
|
+
# that third-party packages use.
|
|
25
|
+
[project.entry-points."cosseratbench.solvers"]
|
|
26
|
+
pyelastica = "cosseratbench.solvers.pyelastica:PyElasticaSolver"
|
|
27
|
+
mujoco = "cosseratbench.solvers.mujoco:MuJoCoSolver"
|
|
28
|
+
|
|
29
|
+
[project.entry-points."cosseratbench.experiments"]
|
|
30
|
+
catenary = "cosseratbench.experiments.catenary:catenary"
|
|
31
|
+
cantilever = "cosseratbench.experiments.cantilever:cantilever"
|
|
32
|
+
|
|
33
|
+
[dependency-groups]
|
|
34
|
+
dev = ["pytest>=8", "ruff>=0.6"]
|
|
35
|
+
|
|
36
|
+
[build-system]
|
|
37
|
+
requires = ["uv_build>=0.12.11,<0.13.0"]
|
|
38
|
+
build-backend = "uv_build"
|
|
39
|
+
|
|
40
|
+
[tool.ruff]
|
|
41
|
+
line-length = 100
|
|
42
|
+
|
|
43
|
+
[tool.pytest.ini_options]
|
|
44
|
+
testpaths = ["tests"]
|
|
45
|
+
markers = ["slow: runs a full simulation"]
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"""A benchmark suite for rope, cable, and Cosserat rod simulation."""
|
|
2
|
+
|
|
3
|
+
from cosseratbench.experiment import Experiment, Metric, Result, run
|
|
4
|
+
from cosseratbench.scenario import End, EndCondition, Material, PointLoad, Rod, Scenario
|
|
5
|
+
from cosseratbench.solver import Capability, Solver
|
|
6
|
+
from cosseratbench.trajectory import Trajectory
|
|
7
|
+
|
|
8
|
+
__all__ = [
|
|
9
|
+
"Capability",
|
|
10
|
+
"End",
|
|
11
|
+
"EndCondition",
|
|
12
|
+
"Experiment",
|
|
13
|
+
"Material",
|
|
14
|
+
"Metric",
|
|
15
|
+
"PointLoad",
|
|
16
|
+
"Result",
|
|
17
|
+
"Rod",
|
|
18
|
+
"Scenario",
|
|
19
|
+
"Solver",
|
|
20
|
+
"Trajectory",
|
|
21
|
+
"run",
|
|
22
|
+
]
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"""Command line entry point: ``cosseratbench list`` and ``cosseratbench run``."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import argparse
|
|
6
|
+
from pathlib import Path
|
|
7
|
+
|
|
8
|
+
from cosseratbench import registry
|
|
9
|
+
from cosseratbench.experiment import Result, run
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
def _describe(result: Result) -> str:
|
|
13
|
+
if result.missing:
|
|
14
|
+
return "unsupported (needs " + ", ".join(result.missing) + ")"
|
|
15
|
+
if result.failure:
|
|
16
|
+
return f"failed: {result.failure}"
|
|
17
|
+
metrics = " ".join(f"{name}={value:.3e}" for name, value in result.metrics.items())
|
|
18
|
+
return f"{result.wall_time:6.1f}s {metrics}"
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
def _list(_: argparse.Namespace) -> None:
|
|
22
|
+
print("experiments:")
|
|
23
|
+
for name in registry.names(registry.EXPERIMENTS):
|
|
24
|
+
print(f" {name:12s} {registry.load_experiment(name).description}")
|
|
25
|
+
print("solvers:")
|
|
26
|
+
for name in registry.names(registry.SOLVERS):
|
|
27
|
+
print(f" {name}")
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
def _run(args: argparse.Namespace) -> None:
|
|
31
|
+
experiments = args.experiment or registry.names(registry.EXPERIMENTS)
|
|
32
|
+
solvers = args.solver or registry.names(registry.SOLVERS)
|
|
33
|
+
for experiment_name in experiments:
|
|
34
|
+
experiment = registry.load_experiment(experiment_name)
|
|
35
|
+
for solver_name in solvers:
|
|
36
|
+
try:
|
|
37
|
+
solver = registry.load_solver(solver_name)
|
|
38
|
+
except ImportError as error:
|
|
39
|
+
print(f"{experiment_name:12s} {solver_name:12s} not installed ({error.name})")
|
|
40
|
+
continue
|
|
41
|
+
result = run(experiment, solver, n_elements=args.n_elements)
|
|
42
|
+
result.save(args.out / experiment_name / solver_name)
|
|
43
|
+
print(
|
|
44
|
+
f"{experiment_name:12s} {solver_name:12s} n={result.n_elements:<4d} {_describe(result)}"
|
|
45
|
+
)
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
def main() -> None:
|
|
49
|
+
parser = argparse.ArgumentParser(prog="cosseratbench", description=__doc__)
|
|
50
|
+
commands = parser.add_subparsers(required=True)
|
|
51
|
+
|
|
52
|
+
commands.add_parser("list", help="show registered experiments and solvers").set_defaults(
|
|
53
|
+
func=_list
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
run_parser = commands.add_parser("run", help="run experiments and save results")
|
|
57
|
+
run_parser.add_argument("experiment", nargs="*", help="experiments to run (default: all)")
|
|
58
|
+
run_parser.add_argument(
|
|
59
|
+
"-s", "--solver", action="append", help="solver to use; repeatable (default: all)"
|
|
60
|
+
)
|
|
61
|
+
run_parser.add_argument(
|
|
62
|
+
"-n", "--n-elements", type=int, help="elements per rod (default: per experiment)"
|
|
63
|
+
)
|
|
64
|
+
run_parser.add_argument(
|
|
65
|
+
"-o", "--out", type=Path, default=Path("results"), help="output directory"
|
|
66
|
+
)
|
|
67
|
+
run_parser.set_defaults(func=_run)
|
|
68
|
+
|
|
69
|
+
args = parser.parse_args()
|
|
70
|
+
args.func(args)
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
"""An experiment pairs a scenario with the metrics that judge a solver's trajectory."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import json
|
|
6
|
+
import time
|
|
7
|
+
from collections.abc import Callable, Mapping
|
|
8
|
+
from dataclasses import dataclass, field
|
|
9
|
+
from pathlib import Path
|
|
10
|
+
|
|
11
|
+
import numpy as np
|
|
12
|
+
|
|
13
|
+
from cosseratbench.scenario import Scenario
|
|
14
|
+
from cosseratbench.solver import Capability, Solver
|
|
15
|
+
from cosseratbench.trajectory import Trajectory
|
|
16
|
+
|
|
17
|
+
# Metrics see only the scenario and the trajectory, never the solver, so every
|
|
18
|
+
# solver is judged by the same code.
|
|
19
|
+
Metric = Callable[[Scenario, Trajectory], float]
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
@dataclass(frozen=True)
|
|
23
|
+
class Experiment:
|
|
24
|
+
name: str
|
|
25
|
+
description: str
|
|
26
|
+
scenario: Scenario
|
|
27
|
+
metrics: Mapping[str, Metric]
|
|
28
|
+
requires: frozenset[Capability] = frozenset()
|
|
29
|
+
n_elements: int = 50 # default resolution
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
@dataclass(frozen=True)
|
|
33
|
+
class Result:
|
|
34
|
+
experiment: str
|
|
35
|
+
solver: str
|
|
36
|
+
n_elements: int
|
|
37
|
+
# Capabilities the experiment requires and the solver lacks; if any, it was not run.
|
|
38
|
+
missing: tuple[str, ...] = ()
|
|
39
|
+
failure: str | None = None # why the run produced no usable trajectory
|
|
40
|
+
wall_time: float | None = None # s
|
|
41
|
+
metrics: Mapping[str, float] = field(default_factory=dict)
|
|
42
|
+
trajectory: Trajectory | None = None
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
def supported(self) -> bool:
|
|
46
|
+
return not self.missing
|
|
47
|
+
|
|
48
|
+
def save(self, directory: Path) -> None:
|
|
49
|
+
directory.mkdir(parents=True, exist_ok=True)
|
|
50
|
+
summary = {
|
|
51
|
+
"experiment": self.experiment,
|
|
52
|
+
"solver": self.solver,
|
|
53
|
+
"n_elements": self.n_elements,
|
|
54
|
+
"missing": list(self.missing),
|
|
55
|
+
"failure": self.failure,
|
|
56
|
+
"wall_time": self.wall_time,
|
|
57
|
+
"metrics": dict(self.metrics),
|
|
58
|
+
}
|
|
59
|
+
(directory / "result.json").write_text(json.dumps(summary, indent=2) + "\n")
|
|
60
|
+
if self.trajectory is not None:
|
|
61
|
+
self.trajectory.save(directory / "trajectory.npz")
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
def _divergence(scenario: Scenario, trajectory: Trajectory) -> str | None:
|
|
65
|
+
"""A solver can go unstable without producing NaNs or raising, so judge the
|
|
66
|
+
trajectory itself: no real rod here doubles the length of one of its segments."""
|
|
67
|
+
for index, positions in enumerate(trajectory.positions):
|
|
68
|
+
if not np.isfinite(positions).all():
|
|
69
|
+
return f"rod {index} has non-finite positions"
|
|
70
|
+
segments = np.linalg.norm(np.diff(positions, axis=1), axis=2)
|
|
71
|
+
stretch = float((segments / segments[0]).max())
|
|
72
|
+
if stretch > 2.0:
|
|
73
|
+
return f"rod {index} has a segment stretched {stretch:.3g}x"
|
|
74
|
+
return None
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
def run(
|
|
78
|
+
experiment: Experiment,
|
|
79
|
+
solver: Solver,
|
|
80
|
+
*,
|
|
81
|
+
n_elements: int | None = None,
|
|
82
|
+
n_frames: int = 101,
|
|
83
|
+
) -> Result:
|
|
84
|
+
n_elements = n_elements or experiment.n_elements
|
|
85
|
+
missing = experiment.requires - solver.capabilities
|
|
86
|
+
if missing:
|
|
87
|
+
names = tuple(sorted(c.value for c in missing))
|
|
88
|
+
return Result(experiment.name, solver.name, n_elements, missing=names)
|
|
89
|
+
|
|
90
|
+
started = time.perf_counter()
|
|
91
|
+
try:
|
|
92
|
+
trajectory = solver.run(experiment.scenario, n_elements=n_elements, n_frames=n_frames)
|
|
93
|
+
failure = _divergence(experiment.scenario, trajectory)
|
|
94
|
+
except FloatingPointError as error:
|
|
95
|
+
failure = str(error)
|
|
96
|
+
wall_time = time.perf_counter() - started
|
|
97
|
+
if failure:
|
|
98
|
+
return Result(
|
|
99
|
+
experiment.name, solver.name, n_elements, failure=failure, wall_time=wall_time
|
|
100
|
+
)
|
|
101
|
+
|
|
102
|
+
metrics = {
|
|
103
|
+
name: float(m(experiment.scenario, trajectory)) for name, m in experiment.metrics.items()
|
|
104
|
+
}
|
|
105
|
+
return Result(
|
|
106
|
+
experiment.name,
|
|
107
|
+
solver.name,
|
|
108
|
+
n_elements,
|
|
109
|
+
wall_time=wall_time,
|
|
110
|
+
metrics=metrics,
|
|
111
|
+
trajectory=trajectory,
|
|
112
|
+
)
|