This repository contains example datasets for PyAnsys projects. Examples contain non-confidential and non-proprietary data.
Important
This repository used to have as its default branch master. In order to align with the ecosystem
standards, the default branch's name has been changed for main. The previous master branch is
left for avoiding breaking changes on our libraries, and it is being kept in sync with main. Make sure
that any PR opened is targeting main.
The PyAnsys Tools Common project provides a download manager to simplify downloading files from this repository instead of implementing custom download logic.
First, make sure that you have the ansys-tools-common package installed:
pip install ansys-tools-commonHere is an example of how to leverage the tool:
from ansys.tools.common.example_download import download_manager
filename = "11_blades_mode_1_ND_0.csv"
directory = "pymapdl/cfx_mapping"
local_path = download_manager.download_file(filename, directory)To contribute to this repo, please read the PyAnsys Contributing guide.