Files
Atomizer/studies/Simple_Beam/simple_beam_optimization/beam_optimization_config.json
Anto01 73a7b9d9f1 feat: Add dashboard chat integration and MCP server
Major changes:
- Dashboard: WebSocket-based chat with session management
- Dashboard: New chat components (ChatPane, ChatInput, ModeToggle)
- Dashboard: Enhanced UI with parallel coordinates chart
- MCP Server: New atomizer-tools server for Claude integration
- Extractors: Enhanced Zernike OPD extractor
- Reports: Improved report generator

New studies (configs and scripts only):
- M1 Mirror: Cost reduction campaign studies
- Simple Beam, Simple Bracket, UAV Arm studies

Note: Large iteration data (2_iterations/, best_design_archive/)
excluded via .gitignore - kept on local Gitea only.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-13 15:53:55 -05:00

114 lines
2.9 KiB
JSON

{
"study_name": "simple_beam_optimization",
"description": "Minimize displacement and weight of beam with stress constraint",
"substudy_name": "full_optimization_50trials",
"design_variables": {
"beam_half_core_thickness": {
"type": "continuous",
"min": 10.0,
"max": 40.0,
"baseline": 20.0,
"units": "mm",
"description": "Half thickness of beam core"
},
"beam_face_thickness": {
"type": "continuous",
"min": 10.0,
"max": 40.0,
"baseline": 20.0,
"units": "mm",
"description": "Thickness of beam face sheets"
},
"holes_diameter": {
"type": "continuous",
"min": 150.0,
"max": 450.0,
"baseline": 300.0,
"units": "mm",
"description": "Diameter of lightening holes"
},
"hole_count": {
"type": "integer",
"min": 5,
"max": 15,
"baseline": 10,
"units": "unitless",
"description": "Number of lightening holes"
}
},
"extractors": [
{
"name": "max_displacement",
"action": "extract_displacement",
"description": "Extract maximum displacement from OP2",
"parameters": {
"metric": "max"
}
},
{
"name": "max_stress",
"action": "extract_solid_stress",
"description": "Extract maximum von Mises stress from OP2",
"parameters": {
"subcase": 1,
"element_type": "auto"
}
},
{
"name": "mass",
"action": "extract_expression",
"description": "Extract mass from p173 expression",
"parameters": {
"expression_name": "p173"
}
}
],
"objectives": [
{
"name": "minimize_displacement",
"extractor": "max_displacement",
"goal": "minimize",
"weight": 0.33,
"description": "Minimize maximum displacement (current: 22.12mm, target: <10mm)"
},
{
"name": "minimize_stress",
"extractor": "max_stress",
"goal": "minimize",
"weight": 0.33,
"description": "Minimize maximum von Mises stress (current: 131.507 MPa)"
},
{
"name": "minimize_mass",
"extractor": "mass",
"goal": "minimize",
"weight": 0.34,
"description": "Minimize beam mass (p173 in kg, current: 973.97kg)"
}
],
"constraints": [
{
"name": "displacement_limit",
"extractor": "max_displacement",
"type": "less_than",
"value": 10.0,
"units": "mm",
"description": "Maximum displacement must be less than 10mm across entire beam"
}
],
"optimization_settings": {
"algorithm": "optuna",
"n_trials": 50,
"sampler": "TPE",
"pruner": "HyperbandPruner",
"direction": "minimize",
"timeout_per_trial": 600
},
"post_processing": {
"generate_plots": true,
"plot_formats": ["png", "pdf"],
"cleanup_models": true,
"keep_top_n_models": 10,
"cleanup_dry_run": false
}
}