Skip to content

ansys/pyadditive

Folders and files

NameName
Last commit message
Last commit date

Latest commit

882996c · Mar 7, 2025
Mar 7, 2025
Aug 26, 2024
Jan 24, 2025
Sep 15, 2023
Jan 24, 2025
Jan 29, 2025
Jan 29, 2025
Dec 20, 2022
Oct 28, 2022
Sep 5, 2024
Oct 9, 2024
Feb 28, 2025
Mar 7, 2025
Jul 7, 2023
Sep 5, 2023
Feb 4, 2025
Mar 7, 2025
Dec 13, 2024
Jan 29, 2025
Dec 7, 2023
Mar 7, 2025
Mar 7, 2025

Repository files navigation

PyAdditive

PyAnsys Python PyPI GH-CI Codecov MIT

Overview

PyAdditive is a Python client library for the Ansys Additive service.

Installation

You can use pip to install PyAdditive.

pip install ansys-additive-core

To install the latest development version, run these commands:

git clone https://github.com/ansys/pyadditive
cd pyadditive
pip install -e .

For more information, see Getting Started.

Basic usage

This code shows how to import PyAdditive and use some basic capabilities:

import ansys.additive.core as pyadditive

additive = pyadditive.Additive()

input = pyadditive.SingleBeadInput(
    machine=pyadditive.AdditiveMachine(),
    material=additive.material("Ti64"),
    id="bead1",
    bead_length=0.001,  # meters
)

summary = additive.simulate(input)

For comprehensive usage information, see Examples in the PyAdditive Documentation.

Documentation and issues

Documentation for the latest stable release of PyAdditive is hosted at PyAdditive documentation.

In the upper right corner of the documentation's title bar, there is an option for switching from viewing the documentation for the latest stable release to viewing the documentation for the development version or previously released versions.

On the PyAdditive Issues page, you can create issues to report bugs and request new features. On the PyAdditive Discussions page or the Discussions page on the Ansys Developer portal, you can post questions, share ideas, and get community feedback.

To reach the project support team, email pyansys.core@ansys.com.