Add round_003: deflection minimization#160
Merged
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a third competition round targeting absolute structural stiffness: minimize tip deflection under load. Completely different optimization target from round_001 (mass) and round_002 (stiffness/weight).
Why deflection minimization is interesting
Round 001 rewards light designs; round 002 rewards light+stiff designs. Round 003 rewards just stiff — agents can use as much mass as allowed. High-modulus materials (Al 6061, SS 316) have a decisive advantage. Winning strategies maximize moment of inertia and use efficient load paths, producing designs that look nothing like rounds 1/2.
Changes
benchmark/evaluate.py: adds"deflection_mm": "minimize"toMETRICS;_compute_scorereturnsfea_result.max_displacement_mmfor this metricspecs/generator.py: adds_baseline_deflection_mm()(Euler-Bernoulli solid-beam upper bound);generate()handlesdeflection_mmscoring block;--metricCLI flag updatedspecs/round_003/: 15 specs — 5 easy (PLA/PETG), 6 medium (+Al 6061), 4 hard (+SS 316). Seeds 700/800/900rounds/round_003.json: round definition, statusupcomingtests/test_generator.py: 5 new tests fordeflection_mmgeneration and round_003 spec validity