19 lines
388 B
Python
19 lines
388 B
Python
|
|
"""
|
||
|
|
NX CAE Hooks
|
||
|
|
============
|
||
|
|
|
||
|
|
Python hooks for NX CAE (FEM/Simulation) operations via NX Open API.
|
||
|
|
|
||
|
|
Modules
|
||
|
|
-------
|
||
|
|
solver_manager : Solution export and solve operations
|
||
|
|
- export_bdf: Export Nastran deck without solving
|
||
|
|
- solve_simulation: Solve a simulation solution
|
||
|
|
|
||
|
|
Phase 2 Task 2.1 - NX Open Automation Roadmap
|
||
|
|
"""
|
||
|
|
|
||
|
|
from . import solver_manager
|
||
|
|
|
||
|
|
__all__ = ['solver_manager']
|