COMPLETE PIPELINE VALIDATED: - Stress extraction: 197.65 MPa (CTETRA elements) ✓ - Displacement extraction: 0.322 mm ✓ - Model parameter updates in .prt files ✓ - Optuna optimization with TPE sampler ✓ - Constraint handling (displacement < 1.0 mm) ✓ - Results saved to CSV/JSON ✓ Test Results (5 trials): - All extractors working correctly - Parameters updated successfully - Constraints validated - History and summary files generated New Files: - examples/test_stress_displacement_optimization.py Complete pipeline test with stress + displacement - examples/test_displacement_optimization.py Displacement-only optimization test - examples/run_optimization_real.py Full example with all extractors - examples/check_op2.py OP2 diagnostic utility - examples/bracket/optimization_config_stress_displacement.json Config: minimize stress, constrain displacement - examples/bracket/optimization_config_displacement_only.json Config: minimize displacement only Updated: - .gitignore: Exclude NX output files and optimization results - examples/bracket/optimization_config.json: Updated paths Next Step: Integrate NX solver execution for real optimization
91 lines
815 B
Plaintext
91 lines
815 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# Virtual Environment
|
|
venv/
|
|
ENV/
|
|
env/
|
|
.venv
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
.DS_Store
|
|
|
|
# NX/FEA Files
|
|
*.op2
|
|
*.f06
|
|
*.f04
|
|
*.xdb
|
|
*.log
|
|
*.diag
|
|
*.pch
|
|
*.master
|
|
*.dball
|
|
*.ldra
|
|
*.sdb
|
|
*.sim.bak
|
|
*.prt.bak
|
|
*.dat
|
|
*.html
|
|
*.png
|
|
*_i.prt
|
|
*.prt.test
|
|
|
|
# Optimization Results
|
|
optuna_study.db
|
|
optuna_study.db-journal
|
|
history.csv
|
|
history.json
|
|
history.bak
|
|
next.exp
|
|
RMS_log.csv
|
|
archives/
|
|
temp/
|
|
*.tmp
|
|
optimization_results/
|
|
**/optimization_results/
|
|
|
|
# Node modules (for dashboard)
|
|
node_modules/
|
|
.npm
|
|
.cache
|
|
dist/
|
|
build/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
|
|
# OS
|
|
Thumbs.db
|
|
desktop.ini
|