-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provide access to the ply type parameter of the materials (#465)
* add property material_metadata to the composite model to provide access to additional material properties such as ply type and solver material index. --------- Co-authored-by: Dominik Gresch <[email protected]>
- Loading branch information
Showing
9 changed files
with
303 additions
and
97 deletions.
There are no files selected for viewing
This file contains 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 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 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
110 changes: 110 additions & 0 deletions
110
src/ansys/dpf/composites/_composite_model_impl_helpers.py
This file contains 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,110 @@ | ||
# Copyright (C) 2023 - 2024 ANSYS, Inc. and/or its affiliates. | ||
# SPDX-License-Identifier: MIT | ||
# | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in all | ||
# copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
# SOFTWARE. | ||
|
||
"""Composite Model Interface.""" | ||
# New interface after 2023 R2 | ||
from collections.abc import Sequence | ||
from typing import Any, Callable | ||
from warnings import warn | ||
|
||
import ansys.dpf.core as dpf | ||
from ansys.dpf.core import FieldsContainer | ||
|
||
from .constants import FAILURE_LABEL, REF_SURFACE_NAME, TIME_LABEL, FailureOutput | ||
|
||
|
||
def _deprecated_composite_definition_label(func: Callable[..., Any]) -> Any: | ||
"""Emit a warning when the deprecated ``composite_definition_label`` is used.""" | ||
function_arg = "composite_definition_label" | ||
|
||
def inner(*args: Sequence[Any], **kwargs: Sequence[Any]) -> Any: | ||
if function_arg in kwargs.keys(): | ||
if kwargs[function_arg]: | ||
warn( | ||
f"Use of {function_arg} is deprecated. Function {func.__name__}." | ||
" can be called without this argument.", | ||
category=DeprecationWarning, | ||
stacklevel=2, | ||
) | ||
return func(*args, **kwargs) | ||
|
||
return inner | ||
|
||
|
||
def _merge_containers( | ||
non_ref_surface_container: FieldsContainer, ref_surface_container: FieldsContainer | ||
) -> FieldsContainer: | ||
""" | ||
Merge the results fields container. | ||
Merges the results fields container of the non-reference surface and the reference surface. | ||
""" | ||
assert sorted(non_ref_surface_container.labels) == sorted(ref_surface_container.labels) | ||
|
||
ref_surface_time_ids = ref_surface_container.get_available_ids_for_label(TIME_LABEL) | ||
non_ref_surface_time_ids = non_ref_surface_container.get_available_ids_for_label(TIME_LABEL) | ||
|
||
assert sorted(ref_surface_time_ids) == sorted(non_ref_surface_time_ids) | ||
|
||
out_container = dpf.FieldsContainer() | ||
out_container.labels = [TIME_LABEL, FAILURE_LABEL] | ||
out_container.time_freq_support = non_ref_surface_container.time_freq_support | ||
|
||
def add_to_output_container(time_id: int, source_container: FieldsContainer) -> None: | ||
fields = source_container.get_fields({TIME_LABEL: time_id}) | ||
for field in fields: | ||
failure_enum = _get_failure_enum_from_name(field.name) | ||
out_container.add_field({TIME_LABEL: time_id, FAILURE_LABEL: failure_enum}, field) | ||
|
||
for current_time_id in ref_surface_time_ids: | ||
add_to_output_container(current_time_id, ref_surface_container) | ||
add_to_output_container(current_time_id, non_ref_surface_container) | ||
|
||
return out_container | ||
|
||
|
||
def _get_failure_enum_from_name(name: str) -> FailureOutput: | ||
if name.startswith("Failure Mode"): | ||
if name.endswith(REF_SURFACE_NAME): | ||
return FailureOutput.FAILURE_MODE_REF_SURFACE | ||
else: | ||
return FailureOutput.FAILURE_MODE | ||
|
||
if name.startswith("IRF") or name.startswith("SF") or name.startswith("SM"): | ||
if name.endswith(REF_SURFACE_NAME): | ||
return FailureOutput.FAILURE_VALUE_REF_SURFACE | ||
else: | ||
return FailureOutput.FAILURE_VALUE | ||
|
||
if name.startswith("Layer Index"): | ||
return FailureOutput.MAX_LAYER_INDEX | ||
|
||
if name.startswith("Global Layer in Stack"): | ||
return FailureOutput.MAX_GLOBAL_LAYER_IN_STACK | ||
|
||
if name.startswith("Local Layer in Element"): | ||
return FailureOutput.MAX_LOCAL_LAYER_IN_ELEMENT | ||
|
||
if name.startswith("Solid Element Id"): | ||
return FailureOutput.MAX_SOLID_ELEMENT_ID | ||
|
||
raise RuntimeError("Could not determine failure output from name: " + name) |
This file contains 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
Oops, something went wrong.