Skip to main content

Assembly for Design & Analysis - A python library for structural analysis and design

Project description

ADA - Assembly for Design & Analysis

Anaconda-Server Badge Anaconda-Server Badge Anaconda-Server Badge Anaconda-Server Badge PyPi Badge

A python library for working with structural analysis and design. This library should be considered as experimental.

The recommended way of installing ada-py is by creating a new isolated environment for the installation like so:

mamba create -n adaenv ada-py

Here are some of the goals with ada-py:

  • Support reading, writing and modifying FE models and post-processing FE results
  • Support open source and commercial FE packages (based on what I use/would like to use regularly)
  • Support scriptable FE meshing
  • Support reading/writing CAD/BIM formats (STEP/IFC) & mesh formats (GLTF)
  • Use a CSG (Constructive Solid Geometry) core primitives library for boolean operations based on the IFC/STEP standards
  • Provide the building blocks for advanced parametric and procedural 3d model design and simulation workflows
  • The library should always strive for user ergonomics.

Quick Links

  • Feel free to start/join any informal topic related to adapy here.
  • Issues related to adapy can be raised here

Usage

Some examples of using the ada-py package

Create an IFC file

The following code

from ada import Assembly, Part, Beam

a = Assembly("MyAssembly") / (Part("MyPart") / Beam("MyBeam", (0, 0, 0), (1, 0, 0), "IPE300"))
a.to_ifc("C:/temp/myifc.ifc")

creates an Ifc file containing an IfcBeam with the following hierarchy

MyAssembly (IfSite)
    MyPart (IfcBuildingStorey)
        MyBeam (IfcBeam)

Beam Visualized in BlenderBIM

The resulting IfcBeam (and corresponding hierarchy) shown in the figure above is taken from the awesome blender plugin blenderbim.

Convert between FEM formats

Here is an example showing the code for converting a sesam FEM file to abaqus and code aster

Note! Reading FEM load and step information is not supported, but might be added in the future.

import ada

a = ada.from_fem('path_to_your_sesam_file.FEM')
a.to_fem('name_of_my_analysis_file_deck_directory_abaqus', 'abaqus')
a.to_fem('name_of_my_analysis_file_deck_directory_code_aster', 'code_aster')

Current read support is: abaqus, code aster and sesam
Current write support is: abaqus, code aster and sesam, calculix and usfos

Create and execute a FEM analysis in Calculix, Code Aster and Abaqus

This example uses a function beam_ex1 from here that returns an Assembly object with a single Beam with a few holes in it (to demonstrate a small portion of the steel detailing capabilities in ada and IFC) converted to a shell element mesh using a FE mesh recipe create_beam_mesh found here.

from ada.param_models.fem_models import beam_ex1

a = beam_ex1()

a.to_fem("MyCantilever_abaqus", "abaqus", overwrite=True, execute=True, run_ext=True)
a.to_fem("MyCantilever_calculix", "calculix", overwrite=True, execute=True)
a.to_fem("MyCantilever_code_aster", "code_aster", overwrite=True, execute=True)

after the code is executed you can look at the results using supported post-processing software or directly in python using the built-in THREEJS based viewer in a web browser or Jupyter notebook/lab for the FEA results.

Calculix Results Abaqus Results Code Aster (jupyter) results

Note!

The above example assumes you have installed Abaqus, Calculix and Code Aster locally on your computer.

To set correct paths to your installations of FE software you wish to use there are a few ways of doing so.

  1. Add directory path of FE executable/batch to your system path.
  2. Add directory paths to system environment variables. This can be done by using the control panel or running the following from a cmd prompt with administrator rights:
:: Windows
setx ADA_abaqus_exe <absolute path to abaqus.bat>
setx ADA_calculix_exe <absolute path to ccx.exe>
setx ADA_code_aster_exe <absolute path to as_run.bat>

:: Linux?

:: Mac?

Note! It is crucial that any paths containing whitespaces be converted to "shortened paths". To shorten a path on windows, you can use the utility pathcopycopy.

For manual installation files of open source FEA software such as Calculix and Code Aster, here are some relevant links:

Acknowledgements

This project would never have been possible without the existing open source python and c++ libraries. Although listed in the package dependencies (which is a long list), here are some of the packages that are at the very core of adapy;

  • IfcOpenShell
  • OpenCascade
  • PythonOCC-Core
  • Gmsh
  • Trimesh

A huge thanks to all involved in the development of the packages mentioned here and in the list of packages adapy depends on.

If you feel that a certain package listed in the adapy dependencies should be listed here please let me know and I will update the list :)

Project Responsible

Kristoffer H. Andersen

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ada_py-0.17.2.tar.gz (1.7 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ada_py-0.17.2-py3-none-any.whl (2.0 MB view details)

Uploaded Python 3

File details

Details for the file ada_py-0.17.2.tar.gz.

File metadata

  • Download URL: ada_py-0.17.2.tar.gz
  • Upload date:
  • Size: 1.7 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ada_py-0.17.2.tar.gz
Algorithm Hash digest
SHA256 1b9828c55d91e905ad8b7e8d538b90d3fde2277cc7c3a5b92cb49c1e0b0f1551
MD5 61ef9a91f000615aa951cf5ce3e7871c
BLAKE2b-256 83b19c6f5cfa5612ffc2b61bd0de6bef37e0919d15b86c000bcaa2e93949b332

See more details on using hashes here.

File details

Details for the file ada_py-0.17.2-py3-none-any.whl.

File metadata

  • Download URL: ada_py-0.17.2-py3-none-any.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for ada_py-0.17.2-py3-none-any.whl
Algorithm Hash digest
SHA256 9dc59fedb5b63aa15d02bde9292ac241715cacf74591f6a89be3cfb98c0c54ee
MD5 2c1002a488e68fd307f6d29bfaab97f9
BLAKE2b-256 e01c19ab440c5d69b5ffb4078b019d5c5e0f1ba6717863de3008a7661dc1fcd8

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page