20 lines
429 B
Python
20 lines
429 B
Python
|
|
"""
|
||
|
|
Model Discovery Module
|
||
|
|
|
||
|
|
Tools for parsing and analyzing Siemens NX FEA model files:
|
||
|
|
- SimFileParser: Parse .sim files (both XML and binary)
|
||
|
|
- discover_fea_model: Main function to analyze model capabilities
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .model_discovery import (
|
||
|
|
SimFileParser,
|
||
|
|
discover_fea_model,
|
||
|
|
format_discovery_result_for_llm,
|
||
|
|
)
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"SimFileParser",
|
||
|
|
"discover_fea_model",
|
||
|
|
"format_discovery_result_for_llm",
|
||
|
|
]
|