3974x
001769
2022-10-26

Practical Applications Using Python and RFEM 6 | 2D Truss Generator

The recently introduced Webservices gives users the ability to communicate with RFEM 6 using their programming language of choice. This feature is enhanced with our High Level Functions (HLF) Library. The libraries are available for Python, JavaScript, and C#. This article looks at a practical use case of programming a 2D Truss Generator with Python. "Learning by doing," as the saying goes.

Overview

Using the power of RFEM 6 beyond the Graphical User Interface (GUI) and controlling/automating the model and design process is a considerable advantage. However, the power of programming with RFEM 6 goes beyond mere automatic control. Users can combine the RFEM 6 HLF Library with other popular HLF Libraries to develop custom Applications.

In this article, a 2D Truss Generator will be presented. The 2D Truss Generator was written in Python and utilizes powerful Python Libraries such as PyQt and Numpy in combination with the RFEM HLF. The end result is a GUI, which allows for a flexible truss generation.

Learning the Basics

This article will only highlight portions of code unique to its application in developing the 2D Truss Generator. The basics of Programming with RFEM 6 and Python can be found in our short 6-part video series under the following link:

E-Learning Videos | Programming with RFEM 6 and Python

Following Along

The code for this example can be found in the aforementioned HLF Library (RFEM_Python_Client/Examples/TrussGenerator_2D). The code is provided as open-source and hopefully provides users with inspiration for their own projects. Details on working with the RFEM HLF (for example, cloning the repository) are explained in the video series linked above.

Specific Portions of the Code

Try and Except

As mentioned, this example uses many different libraries in conjunction with the RFEM HLF (for example, Numpy and PyQt5). Should users not have a specific library installed, an "import" command will throw an error. To overcome this potential issue, try and except blocks are used. The "import" falls under the try block and should this fail, the code goes into the except block, which will prompt the user to install the required libraries using pip.

Building the GUI using PyQt5

PQt5 is a library aimed at the creation of GUIs. A large proportion of the code is comprised of the definitions and statements required by PyQt5 for building the 2D Truss Generator GUI.

Documentation for using PyQt5 can be found under their link:

PyQt5 Reference Guide

A plethora of tutorials can also be found on YouTube.

Truss Definition

Using the RFEM HLFs, a truss can be defined rapidly. For support on programming a truss, follow the sixth video in the aforementioned video series.

Programming with RFEM 6 and Python | 006 Example | Planar Truss

Variables initialized in the PyQt5 definitions are also integrated here as arguments for the RFEM truss definitions. This creates interoperability between the two libraries.

A series of try, except, and if statements are deployed to validate information provided in the GUI.

Final Remarks

The above article seeks to give a brief overview of how a parametric 2D Truss Generator GUI was created. Should extra information be required, please use the comments section on this article and we will be happy to respond.


Links