-
Notifications
You must be signed in to change notification settings - Fork 5
API helper. #34
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
Merged
Merged
API helper. #34
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,142 @@ | ||
| import re | ||
|
|
||
|
|
||
| class PostAPIHelper: | ||
| """Class providing helper API for post objects.""" | ||
|
|
||
| class _SurfaceAPI: | ||
| """Class providing APIs for surface operations.""" | ||
|
|
||
| def __init__(self, obj): | ||
| self.obj = obj | ||
| self._surface_name_on_server = self.surface_name_in_server(obj._name) | ||
|
|
||
| @staticmethod | ||
| def surface_name_in_server(local_surface_name): | ||
| return "_dummy_surface_for_pyfluent:" + local_surface_name.lower() | ||
|
|
||
| def _get_api_handle(self): | ||
| return self.obj._get_top_most_parent().session.solver.tui.surface | ||
|
|
||
| def _delete_if_exist_on_server(self): | ||
| field_info = self.obj._api_helper.field_info() | ||
| surfaces_list = list(field_info.get_surfaces_info().keys()) | ||
| if self._surface_name_on_server in surfaces_list: | ||
| self.delete_surface_on_server() | ||
|
|
||
| def create_surface_on_server(self): | ||
| if self.obj.surface.type() == "iso-surface": | ||
| iso_surface = self.obj.surface.iso_surface | ||
| field = iso_surface.field() | ||
| iso_value = iso_surface.iso_value() | ||
| if not field: | ||
| raise RuntimeError("Iso surface definition is incomplete.") | ||
| self._delete_if_exist_on_server() | ||
| phases = self.obj._api_helper._get_phases() | ||
| unit_quantity = self.obj._api_helper._field_unit_quantity(field) | ||
| unit_info = self.obj._api_helper._fluent_unit_info(unit_quantity) | ||
| if phases: | ||
| phases = list(filter(field.startswith, phases)) | ||
| if phases: | ||
| domain, field = ( | ||
| field[0 : len(phases[0])], | ||
| field[len(phases[0]) + 1 :], | ||
| ) | ||
| else: | ||
| domain = "mixture" | ||
| self._get_api_handle().iso_surface( | ||
| domain, | ||
| field, | ||
| self._surface_name_on_server, | ||
| (), | ||
| (), | ||
| (iso_value / unit_info[1]) - unit_info[2], | ||
| (), | ||
| ) | ||
| else: | ||
| self._get_api_handle().iso_surface( | ||
| field, | ||
| self._surface_name_on_server, | ||
| (), | ||
| (), | ||
| (iso_value / unit_info[1]) - unit_info[2], | ||
| (), | ||
| ) | ||
| elif self.obj.surface.type() == "plane-surface": | ||
| plane_surface = self.obj.surface.plane_surface | ||
| xy_plane = plane_surface.xy_plane | ||
| yz_plane = plane_surface.yz_plane | ||
| zx_plane = plane_surface.zx_plane | ||
| self._delete_if_exist_on_server() | ||
| unit_info = self.obj._api_helper._fluent_unit_info("length") | ||
| self._get_api_handle().plane_surface( | ||
| self._surface_name_on_server, | ||
| "xy-plane" if xy_plane else "yz-plane" if yz_plane else "zx-plane", | ||
| (xy_plane.z() / unit_info[1]) - unit_info[2] | ||
| if xy_plane | ||
| else (yz_plane.x() / unit_info[1]) - unit_info[2] | ||
| if yz_plane | ||
| else (zx_plane.y() / unit_info[1]) - unit_info[2], | ||
| ) | ||
| field_info = self.obj._api_helper.field_info() | ||
| surfaces_list = list(field_info.get_surfaces_info().keys()) | ||
| if self._surface_name_on_server not in surfaces_list: | ||
| raise RuntimeError("Surface creation failed.") | ||
|
|
||
| def delete_surface_on_server(self): | ||
| self._get_api_handle().delete_surface(self._surface_name_on_server) | ||
|
|
||
| def __init__(self, obj): | ||
| self.obj = obj | ||
| self.field_info = lambda: obj._get_top_most_parent().session.field_info | ||
| self.field_data = lambda: obj._get_top_most_parent().session.field_data | ||
| self.monitors_manager = ( | ||
| lambda: obj._get_top_most_parent().session.monitors_manager | ||
| ) | ||
| self.id = lambda: obj._get_top_most_parent().session.id | ||
| if obj.__class__.__name__ == "Surface": | ||
| self.surface_api = PostAPIHelper._SurfaceAPI(obj) | ||
|
|
||
| def remote_surface_name(self, local_surface_name): | ||
| local_surfaces_provider = ( | ||
| self.obj._get_top_most_parent()._local_surfaces_provider() | ||
| ) | ||
| if local_surface_name in list(local_surfaces_provider): | ||
| return PostAPIHelper._SurfaceAPI.surface_name_in_server(local_surface_name) | ||
| else: | ||
| return local_surface_name | ||
|
|
||
| # Following functions will be deprecated in future. | ||
| def get_vector_fields(self): | ||
| scheme_eval_str = "(map car (apply append (map client-inquire-cell-vector-functions (inquire-domain-for-cell-functions))))" # noqa: E501 | ||
| return self._scheme_str_to_py_list(scheme_eval_str) | ||
|
|
||
| def _get_phases(self): | ||
| scheme_eval_str = "(map domain-name (get-phase-domains))" | ||
| return self._scheme_str_to_py_list(scheme_eval_str) | ||
|
|
||
| def _field_unit_quantity(self, field): | ||
| scheme_eval_str = f"(cdr (assq 'units (%fill-render-info '{field})))" | ||
| return self._scheme_str_to_py_list(scheme_eval_str)[0] | ||
|
|
||
| def _fluent_unit_info(self, unit_quantity): | ||
| def to_float(number): | ||
| try: | ||
| return float(number) | ||
| except ValueError: | ||
| return number | ||
|
|
||
| scheme_eval_str = ( | ||
| f"(units/inquire-label-scale-offset-for-quantity '{unit_quantity})" | ||
| ) | ||
| unit_info = [ | ||
| to_float(data) for data in self._scheme_str_to_py_list(scheme_eval_str) | ||
| ] | ||
| if len(unit_info) == 2: | ||
| unit_info.insert(0, "") | ||
| return unit_info | ||
|
|
||
| def _scheme_str_to_py_list(self, scheme_eval_str): | ||
| session = self.obj._get_top_most_parent().session | ||
| str = session.scheme_eval.string_eval(scheme_eval_str) | ||
| return list(filter(None, re.split(r'[\s()"\']', str))) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
So that PostAPIHelper can be patched.