2025-11-15 08:05:19 -05:00
# Atomizer
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
> Advanced LLM-native optimization platform for Siemens NX Simcenter
2025-11-15 07:56:35 -05:00
[](https://www.python.org/downloads/)
[](LICENSE)
[](https://github.com)
## Overview
2025-11-15 14:34:16 -05:00
Atomizer is an **LLM-native optimization framework ** for Siemens NX Simcenter that transforms how engineers interact with optimization workflows. Instead of manual JSON configuration and scripting, Atomizer uses AI as a collaborative engineering assistant.
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
### Core Philosophy
Atomizer enables engineers to:
- **Describe optimizations in natural language** instead of writing configuration files
- **Generate custom analysis functions on-the-fly** (RSS metrics, weighted objectives, constraints)
- **Get intelligent recommendations** based on optimization results and surrogate models
- **Generate comprehensive reports** with AI-written insights and visualizations
- **Extend the framework autonomously** through LLM-driven code generation
### Key Features
- **LLM-Driven Workflow**: Natural language study creation, configuration, and analysis
- **Advanced Optimization**: Optuna-powered TPE, Gaussian Process surrogates, multi-objective Pareto fronts
- **Dynamic Code Generation**: AI writes custom Python functions and NX journal scripts during optimization
- **Intelligent Decision Support**: Surrogate quality assessment, sensitivity analysis, engineering recommendations
- **Real-Time Monitoring**: Interactive web dashboard with live progress tracking
- **Extensible Architecture**: Plugin system with hooks for pre/post mesh, solve, and extraction phases
- **Self-Improving**: Feature registry that learns from user workflows and expands capabilities
📘 See [DEVELOPMENT_ROADMAP.md ](DEVELOPMENT_ROADMAP.md ) for the complete vision and implementation plan.
2025-11-15 07:56:35 -05:00
## Architecture
```
┌─────────────────────────────────────────────────────────┐
2025-11-15 14:34:16 -05:00
│ LLM Interface Layer │
│ Claude Skill + Natural Language Parser + Workflow Mgr │
2025-11-15 07:56:35 -05:00
└─────────────────────────────────────────────────────────┘
↕
┌─────────────────────────────────────────────────────────┐
2025-11-15 14:34:16 -05:00
│ Optimization Engine Core │
│ Plugin System + Feature Registry + Code Generator │
2025-11-15 07:56:35 -05:00
└─────────────────────────────────────────────────────────┘
↕
┌─────────────────────────────────────────────────────────┐
│ Execution Layer │
2025-11-15 14:34:16 -05:00
│ NX Solver (via Journals) + Optuna + Result Extractors │
└─────────────────────────────────────────────────────────┘
↕
┌─────────────────────────────────────────────────────────┐
│ Analysis & Reporting │
│ Surrogate Quality + Sensitivity + Report Generator │
2025-11-15 07:56:35 -05:00
└─────────────────────────────────────────────────────────┘
```
## Quick Start
### Prerequisites
2025-11-15 08:12:32 -05:00
- **Siemens NX 2412** with NX Nastran solver
2025-11-15 07:56:35 -05:00
- **Python 3.10+** (recommend Anaconda)
2025-11-15 14:34:16 -05:00
- **Git** for version control
2025-11-15 07:56:35 -05:00
### Installation
1. **Clone the repository ** :
```bash
2025-11-15 14:34:16 -05:00
git clone https://github.com/yourusername/Atomizer.git
2025-11-15 08:05:19 -05:00
cd Atomizer
2025-11-15 07:56:35 -05:00
```
2. **Create Python environment ** :
```bash
2025-11-15 08:05:19 -05:00
conda create -n atomizer python=3.10
conda activate atomizer
2025-11-15 07:56:35 -05:00
```
3. **Install dependencies ** :
```bash
2025-11-15 14:34:16 -05:00
pip install -r requirements.txt
2025-11-15 07:56:35 -05:00
```
2025-11-15 14:34:16 -05:00
4. **Configure NX path ** (edit if needed):
- Default NX path: `C:\Program Files\Siemens\Simcenter3D_2412\NXBIN\run_journal.exe`
- Update in `optimization_engine/nx_solver.py` if different
2025-11-15 07:56:35 -05:00
### Basic Usage
2025-11-15 14:34:16 -05:00
#### Example 1: Natural Language Optimization (Future - Phase 2)
2025-11-15 07:56:35 -05:00
```
2025-11-15 14:34:16 -05:00
User: "Let's create a new study to minimize stress on my bracket"
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
LLM: "Study created! Please drop your .sim file into the study folder,
then I'll explore it to find available design parameters."
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
User: "Done. I want to vary wall_thickness between 3-8mm"
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
LLM: "Perfect! I've configured:
- Objective: Minimize max von Mises stress
- Design variable: wall_thickness (3.0 - 8.0 mm)
- Sampler: TPE with 50 trials
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
Ready to start?"
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
User: "Yes, go!"
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
LLM: "Optimization running! View progress at http://localhost:8080"
2025-11-15 07:56:35 -05:00
```
2025-11-15 14:34:16 -05:00
#### Example 2: Current JSON Configuration
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
Create `examples/my_study/config.json` :
2025-11-15 07:56:35 -05:00
```json
{
2025-11-15 14:34:16 -05:00
"sim_file": "examples/bracket/Bracket_sim1.sim",
"design_variables": [
{
"name": "wall_thickness",
"expression_name": "wall_thickness",
"min": 3.0,
"max": 8.0,
"units": "mm"
2025-11-15 07:56:35 -05:00
}
2025-11-15 14:34:16 -05:00
],
"objectives": [
{
"name": "max_stress",
"extractor": "stress_extractor",
"metric": "max_von_mises",
"direction": "minimize",
"weight": 1.0,
"units": "MPa"
2025-11-15 07:56:35 -05:00
}
2025-11-15 14:34:16 -05:00
],
"optimization_settings": {
"n_trials": 50,
"sampler": "TPE",
"n_startup_trials": 20
2025-11-15 07:56:35 -05:00
}
}
```
Run optimization:
```bash
2025-11-15 14:34:16 -05:00
python examples/run_optimization.py --config examples/my_study/config.json
2025-11-15 07:56:35 -05:00
```
2025-11-15 14:34:16 -05:00
## Current Features
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
### ✅ Implemented
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
- **Core Optimization Engine**: Optuna integration with TPE sampler
- **NX Journal Integration**: Update expressions and run simulations via NXOpen
- **Result Extraction**: Stress (OP2), displacement (OP2), mass properties
- **Study Management**: Folder-based isolation, metadata tracking
- **Web Dashboard**: Real-time monitoring, study configuration UI
- **Precision Control**: 4-decimal rounding for mm/degrees/MPa
- **Crash Recovery**: Resume interrupted optimizations
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
### 🚧 In Progress (see [DEVELOPMENT_ROADMAP.md](DEVELOPMENT_ROADMAP.md))
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
- **Phase 1**: Plugin system with optimization lifecycle hooks (2 weeks)
- **Phase 2**: LLM interface with natural language configuration (2 weeks)
- **Phase 3**: Dynamic code generation for custom objectives (3 weeks)
- **Phase 4**: Intelligent analysis and surrogate quality assessment (3 weeks)
- **Phase 5**: Automated HTML/PDF report generation (2 weeks)
- **Phase 6**: NX MCP server with full API documentation (4 weeks)
- **Phase 7**: Self-improving feature registry (4 weeks)
2025-11-15 07:56:35 -05:00
## Project Structure
```
2025-11-15 08:05:19 -05:00
Atomizer/
2025-11-15 14:34:16 -05:00
├── optimization_engine/ # Core optimization logic
│ ├── nx_solver.py # NX journal execution
│ ├── multi_optimizer.py # Optuna integration
│ ├── result_extractors/ # OP2/F06 parsers
│ └── expression_updater.py # CAD parameter modification
├── dashboard/ # Web UI
│ ├── api/ # Flask backend
│ ├── frontend/ # HTML/CSS/JS
│ └── scripts/ # NX expression extraction
├── examples/ # Example optimizations
│ └── bracket/ # Bracket stress minimization
├── tests/ # Unit and integration tests
├── docs/ # Documentation
├── DEVELOPMENT_ROADMAP.md # Future vision and phases
└── README.md # This file
2025-11-15 07:56:35 -05:00
```
2025-11-15 14:34:16 -05:00
## Example: Bracket Stress Minimization
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
A complete working example is in `examples/bracket/` :
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
```bash
# Run the bracket optimization (50 trials, TPE sampler)
python examples/test_journal_optimization.py
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
# View results
python dashboard/start_dashboard.py
# Open http://localhost:8080 in browser
```
**What it does**:
1. Loads `Bracket_sim1.sim` with wall thickness = 5mm
2. Varies thickness from 3-8mm over 50 trials
3. Runs FEA solve for each trial
4. Extracts max stress and displacement from OP2
5. Finds optimal thickness that minimizes stress
**Results** (typical):
- Best thickness: ~4.2mm
- Stress reduction: 15-20% vs. baseline
- Convergence: ~30 trials to plateau
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
## Dashboard Usage
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
Start the dashboard:
2025-11-15 07:56:35 -05:00
```bash
2025-11-15 14:34:16 -05:00
python dashboard/start_dashboard.py
2025-11-15 07:56:35 -05:00
```
2025-11-15 14:34:16 -05:00
Features:
- **Create studies** with folder structure (sim/, results/, config.json)
- **Drop .sim/.prt files** into study folders
- **Explore .sim files** to extract expressions via NX
- **Configure optimization** with 5-step wizard:
1. Simulation files
2. Design variables
3. Objectives
4. Constraints
5. Optimization settings
- **Monitor progress** with real-time charts
- **View results** with trial history and best parameters
## Vision: LLM-Native Engineering Assistant
Atomizer is evolving into a comprehensive AI-powered engineering platform. See [DEVELOPMENT_ROADMAP.md ](DEVELOPMENT_ROADMAP.md ) for details on:
- **Phase 1-7 development plan** with timelines and deliverables
- **Example use cases** demonstrating natural language workflows
- **Architecture diagrams** showing plugin system and LLM integration
- **Success metrics** for each phase
### Future Capabilities
2025-11-15 07:56:35 -05:00
```
2025-11-15 14:34:16 -05:00
User: "Add RSS function combining stress and displacement"
→ LLM: Writes Python function, validates, registers as custom objective
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
User: "Use surrogate to predict these 10 parameter sets"
→ LLM: Checks surrogate R² > 0.9, runs predictions with confidence intervals
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
User: "Make an optimization report"
→ LLM: Generates HTML with plots, insights, recommendations (30 seconds)
User: "Why did trial #34 perform best?"
→ LLM: "Trial #34 had optimal stress distribution due to thickness 4.2mm
creating uniform load paths. Fillet radius 3.1mm reduced stress
concentration by 18%. This combination is Pareto-optimal."
2025-11-15 07:56:35 -05:00
```
## Roadmap
2025-11-15 14:34:16 -05:00
- [x] Core optimization engine with Optuna
- [x] NX journal integration
- [x] Web dashboard with study management
- [x] OP2 result extraction
- [ ] **Phase 1 ** : Plugin system (2 weeks)
- [ ] **Phase 2 ** : LLM interface (2 weeks)
- [ ] **Phase 3 ** : Code generation (3 weeks)
- [ ] **Phase 4 ** : Analysis & decision support (3 weeks)
- [ ] **Phase 5 ** : Automated reporting (2 weeks)
- [ ] **Phase 6 ** : NX MCP enhancement (4 weeks)
- [ ] **Phase 7 ** : Self-improving system (4 weeks)
2025-11-15 07:56:35 -05:00
2025-11-15 14:34:16 -05:00
See [DEVELOPMENT_ROADMAP.md ](DEVELOPMENT_ROADMAP.md ) for complete timeline.
2025-11-15 07:56:35 -05:00
## License
Proprietary - Atomaste © 2025
## Support
- **Documentation**: [docs/ ](docs/ )
- **Examples**: [examples/ ](examples/ )
2025-11-15 14:34:16 -05:00
- **Development Roadmap**: [DEVELOPMENT_ROADMAP.md ](DEVELOPMENT_ROADMAP.md )
- **Email**: antoine@atomaste .com
2025-11-15 07:56:35 -05:00
2025-11-15 08:10:05 -05:00
## Resources
### NXOpen References
2025-11-15 14:34:16 -05:00
- **Official API Docs**: [Siemens NXOpen Documentation ](https://docs.sw.siemens.com/en-US/doc/209349590/ )
- **NXOpenTSE**: [The Scripting Engineer's Guide ](https://nxopentsedocumentation.thescriptingengineer.com/ )
2025-11-15 08:10:05 -05:00
- **Our Guide**: [NXOpen Resources ](docs/NXOPEN_RESOURCES.md )
### Optimization
- **Optuna Documentation**: [optuna.readthedocs.io ](https://optuna.readthedocs.io/ )
- **pyNastran**: [github.com/SteveDoyle2/pyNastran ](https://github.com/SteveDoyle2/pyNastran )
2025-11-15 07:56:35 -05:00
---
**Built with ❤️ by Atomaste** | Powered by Optuna, NXOpen, and Claude