Scripting tutorial

From LabRPS Documentation
Revision as of 07:01, 12 October 2024 by LabRPS (talk | contribs) (→‎Vectors and placements)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Introduction

Python is a programming language that it relatively easy to learn and understand. It is open-source and multi-platform, and can be used for many purposes: from simple shell scripts to very complex programs. But its most widespread use is as a scripting language embedded in other applications. That is how it is used inside LabRPS. From the Python console, or from custom scripts, you can control LabRPS and make it perform very complex operations.

For example, from a Python script, you can:

  • Create new objects.
  • Modify existing objects.
  • Modify the 3D representation of geometric objects.
  • Modify the LabRPS interface.

There are several ways to use Python in LabRPS:

  • From the LabRPS Python interpreter, where you can issue commands in a "command line"-style interface.
  • From macros, which are a convenient way to quickly add a missing tool to the LabRPS interface.
  • From external scripts, which can be used to create quite complex solutions, even entire Workbenches.

In this tutorial, we'll work on a couple of basic examples to get you started, but there is much more documentation about Python scripting available on this wiki. If you are totally new to Python and want to understand how it works, we also have a basic introduction to Python.

Before proceeding with Python scripting, go to Edit → Preferences → General → Report view and check two boxes:

  • Redirect internal Python output to report view.
  • Redirect internal Python errors to report view.

Then go to View → Panels and check:

  • Report view.

Writing Python code

There are two ways to write Python code in LabRPS. In the Python console (select View → Panels → Python console from the menu) or in the Macro editor (select Macro → Macros... from the menu). In the console you write Python commands one by one, executing them by pressing Enter, while macros can contain more complex code made up of several lines, executed only when the macro is executed.

LabRPS Python console example.png

The LabRPS Python console

In this tutorial you can use both methods. You can copy-paste each line in the Python console and then press Enter, or copy-paste the entire code in a new Macro window.

Top

Exploring LabRPS

Let's start by creating a new empty document:

doc = LabRPS.newDocument()

If you type this in the LabRPS Python console, you will notice that as soon as you type LabRPS. a window pops up, allowing to quickly autocomplete the rest of your line. Even better, each entry in the autocomplete list has a tooltip explaining what it does. This makes it easier to explore the available functionality. Before choosing newDocument, have a look at the other options.

File:Screenshot classbrowser.jpg

The autocomplete mechanism of the LabRPS Python console

Now our new document will be created. This is similar to pressing the Std New.svg New button on the toolbar. In fact most buttons in LabRPS do nothing more than execute one or more lines of Python code. Even better, you can set an option in Edit → Preferences → Python → Macro to Show script commands in python console. This will print in the console all Python code executed when you press buttons. Very useful for learning how to reproduce actions in Python.

Now let's get back to our document and see what we can do with it:

doc.

Explore the available options. Usually names that begin with a capital letter are attributes, they contain a value, while names that begin with a lower case letter are functions (also called methods), they "do something". Names that begin with an underscore are usually there for the internal working of the module, and you shouldn't care about them. Let's use one of the methods to add a new object to our document:

myPoint = doc.addObject("Part::Vertex", "mysimulationPoint")

Nothing happens. Why? Because LabRPS is made for the big picture. One day, it will work with hundreds of complex objects, all depending each other. Making a small change somewhere could have a big impact; you may need to recalculate the whole document which could take a long time. For that reason almost no command updates the scene automatically. You must do it manually:

doc.recompute()

Now our point appeared. Many of the buttons that add objects in LabRPS actually do two things: add the object, and recompute. If you turned on the Show script commands in python console option above, try adding a sphere with the GUI button; you'll see the two lines of Python code being executed one after the other. If your point is still not visible, it may due to the fact that your point size is too small. In this case you can use the following code to increase the point size to for example 20.

LabRPSGui.getDocument(doc.Name).getObject('mysimulationPoint').PointSize = 20

Now let's explore the contents of our point:

myPoint.

You'll immediately see a couple of very interesting things such as:

myPoint.X

This will print the current X coordinate of our point. Now let's try to change that:

myPoint.X = 100

If you select your point with the mouse, you'll see that in the Property editor, on the Data tab, our DataX property appears. All properties of a LabRPS object that appear there (and also on the View tab, more about that later), are directly accessible in Python too, by their names, like we did with the DataX property. Try changing the other parameters of the point.

Top

Vectors and placements

Vectors are a very fundamental concept in any 3D application. A vector is a list of 3 numbers (x, y and z), describing a point or position in 3D space. Many things can be done with vectors, such as additions, subtractions, projections and much more. In LabRPS vectors work like this:

myvec = LabRPS.Vector(2, 0, 0)
myvec.x
myvec.y
othervec = LabRPS.Vector(0, 3, 0)
sumvec = myvec.add(othervec)

Another common feature of LabRPS geometry objects is their placement. Each object has a DataPlacement property, which contains the DataBase (position) and DataRotation (orientation) of the object. It is easy to manipulate, for example to move our object:

box.Placement
box.Placement.Base
box.Placement.Base = sumvec
 
otherpla = LabRPS.Placement()
box.Placement = otherpla

Now you must understand a couple of important concepts before we get further.

Top

App and Gui

LabRPS has been designed so that it can also be used without its user interface, as a command-line application. Almost every object in LabRPS therefore consists of two parts: an Object, its "geometry" component, and a ViewObject, its "visual" component. When you work in command-line mode, the geometry part is present, but the visual part is disabled.

To illustrate the concept let's look at our cube object. The geometric properties of the cube, such as its dimensions, position, etc. are stored in the Object. While its visual properties, such as its color, line thickness, etc. are stored in the ViewObject. This corresponds to the Data and View tabs in the Property editor. The view object of an object is accessed like this:

vo = box.ViewObject

Now you can also change the properties on the View tab:

vo.Transparency = 80
vo.hide()
vo.show()

When you start LabRPS, the Python console already loads two base modules: LabRPS and LabRPSGui (which can also be accessed by their shortcuts App and Gui). They contain all kinds of generic functionality to work with documents and their objects. To illustrate our concept, see that both LabRPS and LabRPSGui contain an ActiveDocument attribute, which is the currently opened document. LabRPS.ActiveDocument and LabRPSGui.ActiveDocument are not the same object however. They are the two components of a LabRPS document, and they contain different attributes and methods. For example, LabRPSGui.ActiveDocument contains ActiveView, which is the currently opened 3D view.

Top

Modules

The true power of LabRPS lies in its faithful modules, with their respective workbenches. The LabRPS base application is more or less an empty container. Without its modules it can do little more than create new, empty documents. Each module not only adds new workbenches to the interface, but also new Python commands and new object types. As a result several different, and even totally incompatible, object types can coexist in the same document. The most important modules in LabRPS that we'll look at in this tutorial are: Part and WindLab.

Part module is used to create and handle geometry. While WindLab is totally independent, and handles its own objects. It is for random wind velocity simulation. More about that below.

You can check all the available base object types for the current document like this:

doc.supportedTypes()

The different LabRPS modules are not automatically loaded in the Python console. This is to avoid having a very slow startup. Modules are loaded only when you need them. So, for example, to explore what's inside the Part module:

import Part
Part.

But we'll talk more about the Part module below.

Top

Part module

The Part module is the only module in the whole of LabRPS for geometrical objects representation. It allows you to create and manipulate BRep objects. BREP stands for "Boundary Representation". A BREP object is defined by surfaces that enclose and define an inner volume. Unlike meshes, BREP objects can have a wide variety of components from planar faces to very complex NURBS surfaces.

The Part module is based on the powerful OpenCasCade library, which allows a wide range of complex operations to be performed on those objects, such as boolean operations, filleting, lofts, etc.

The Part module works the following way: You create a LabRPS object, a Part object, then add the Part object to the LabRPS object:

import Part
myshape = Part.makeSphere(10)
myshape.Volume
myshape.Area

shapeobj = doc.addObject("Part::Feature", "MyShape")
shapeobj.Shape = myshape
doc.recompute()

The Part module also has a shortcut that automatically creates a LabRPS object and adds a shape to it, so you can shorten the last three lines to:

Part.show(myshape)

By exploring the contents of myshape, you will notice many interesting subcomponents such as Faces, Edges, Vertexes, Solids and Shells, and a wide range of geometry operations such as cut (subtraction), common (intersection) or fuse (union). The Topological data scripting page explains all that in detail.

Read more about part scripting...

Top

WindLab module

LabRPS features many more modules, such as WindLab, that creates RPS(Random Phenomenon Simulation) objects.

The WindLab module Wind velocity simulation object types (which are all RPS objects) such as wind spectrum and mean wind profile. Note that the way RPS objects are created is different from that of Part objects. The following example create:

import WindLab
import WindLabObjects
sim = WindLabObjects.makeSimulation(doc)
spectrum = WindLabObjects.makeFeature("Spectrum", sim.Name,  "Kaimal Along Wind Spectrum", "Along Wind Spectrum")
spectrum.ShearVelocity = 1.76 m/s

Top

Interface

The LabRPS user interface is made with Qt, a powerful graphical interface system, responsible for drawing and handling all the controls, menus, toolbars and buttons around the 3D view. Qt provides a module, PySide, which allows Python to access and modify Qt interfaces such as LabRPS's. Let's try to fiddle with the Qt interface and produce a simple dialog:

from PySide import QtGui
QtGui.QMessageBox.information(None, "Apollo program", "Houston, we have a problem")

Notice that the dialog that appears has the LabRPS icon in its toolbar, meaning that Qt knows that the order has been issued from inside the LabRPS application. It is possible to manipulate any part of the LabRPS interface.

Qt is a very powerful interface system that allows you to do very complex things. It also has some easy-to-use tools such as the Qt Designer with which you can design dialogs graphically and then add them to the LabRPS interface with a few lines of Python code.

Read more about PySide here...

Top

Macros

Now that you have a good understanding of the basics, where are we going to keep our Python scripts, and how are we going to launch them inside LabRPS? There is an easy mechanism for that, called Macros. A macro is a Python script that can be added to a toolbar and launched via a mouse click. LabRPS provides you with a simple text editor (Macro → Macros... → Create) where you can write or paste scripts. Once the script is done, use Tools → Customize... → Macros to define a button for it that can be added to toolbars.

External scripts

An alternative method for creating, saving, and running your own Python scripts is to create them outside LabRPS, using an editor of your choice (for example, Vim). To run your Python script inside LabRPS, be sure to save it with the .py extension.

Then use File → Open to open your script. It will load into a new tab in the Main view area. You can run your script by clicking the Std DlgMacroExecuteDirect.svg Execute macro button. Any errors or script output will be shown in the Report view.

When you make and save any modifications to your already-loaded script, a dialog box will appear asking whether you want to reload the modified script into LabRPS.

You can continue to the LabRPS Scripting Basics page, or you can access that page and other relevant pages at the Power users hub.

Top