Source code for ansys.dyna.core.lib.config
# Copyright (C) 2023 - 2026 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.
"""Module for configuration settings."""
from contextlib import contextmanager
[docs]
USE_LSPP_DEFAULTS = True
[docs]
ENABLE_CSV_AUTODETECT = True
[docs]
def use_lspp_defaults():
"""Return whether LSPP default values are currently enabled."""
return USE_LSPP_DEFAULTS
[docs]
def csv_autodetect_enabled():
"""Return whether CSV format auto-detection is enabled."""
return ENABLE_CSV_AUTODETECT
@contextmanager
[docs]
def disable_lspp_defaults():
"""Disable LSPP default values within the context."""
global USE_LSPP_DEFAULTS
USE_LSPP_DEFAULTS = False
try:
yield
finally:
USE_LSPP_DEFAULTS = True
@contextmanager
[docs]
def disable_csv_autodetect():
"""Context manager to temporarily disable CSV format auto-detection.
By default, pydyna auto-detects comma-delimited (CSV) format in keyword card data.
Use this context manager if CSV detection causes issues with specific files.
Examples
--------
>>> from ansys.dyna.core.lib.config import disable_csv_autodetect
>>> with disable_csv_autodetect():
... deck.loads(content) # CSV detection disabled
"""
global ENABLE_CSV_AUTODETECT
ENABLE_CSV_AUTODETECT = False
try:
yield
finally:
ENABLE_CSV_AUTODETECT = True