-
Notifications
You must be signed in to change notification settings - Fork 56
feat: Updates for the client side dm-api. #3748
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR adds support for a new client-side datamodel API called "meshing_workflow" to complement the existing "workflow" API. The changes enable access to meshing workflow functionality through a new meshing_workflow property across the meshing session classes.
- Introduces
meshing_workflowdatamodel API support for Fluent versions >=26.1 - Adds the new API to meshing session classes and type definitions
- Updates code generation infrastructure to handle the new workflow type
Reviewed Changes
Copilot reviewed 12 out of 12 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
| tests/test_server_meshing_workflow.py | Comprehensive test suite for the new meshing workflow API functionality |
| tests/test_codegen.py | Updates test configuration to include meshing_workflow in static info mapping |
| src/ansys/fluent/core/session_pure_meshing.pyi | Type definitions for meshing_workflow property |
| src/ansys/fluent/core/session_pure_meshing.py | Implementation of meshing_workflow property in PureMeshing class |
| src/ansys/fluent/core/session_meshing.py | Implementation of meshing_workflow property in Meshing class |
| src/ansys/fluent/core/session_base_meshing.py | Base implementation and commented wrapper classes |
| src/ansys/fluent/core/services/datamodel_se.py | Cache handling modification for meshing_workflow |
| src/ansys/fluent/core/codegen/datamodelgen.py | Code generation support for meshing_workflow datamodel |
| src/ansys/fluent/core/codegen/init.py | Static info type enumeration addition |
| doc/datamodel_rstgen.py | Documentation generation support |
| doc/changelog.d/3748.added.md | Changelog entry |
| codegen/allapigen.py | API generation script updates |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
This PR adds support for a new client-side datamodel API called "meshing_workflow" to complement the existing "workflow" API. The changes enable access to meshing workflow functionality through a new meshing_workflow property across the meshing session classes.
Introduces meshing_workflow datamodel API support for Fluent versions >=26.1
Adds the new API to meshing session classes and type definitions
Updates code generation infrastructure to handle the new workflow type