Skip to main content

veux

SEES Logo

Highly efficient and portable finite element visualization framework


DOI Latest PyPI version

veux is a finite element rendering library that leverages modern web technologies to produce sharable, efficient, and detailed renderings.



veux is a finite element rendering library that leverages modern web technologies to produce sharable, efficient, and detailed renderings. Unlike most tools that only provide temporary visualization, veux generates persistent 3D models that can be stored in files, shared with colleagues, and viewed with any standard 3D model viewer. This means anyone can interact with the renderings without needing to install specialized software or even Python. Simply open the 3D object with your computer’s 3D viewer (e.g., 3D Viewer on Windows) or load it into a free online viewer in like gltf-viewer.

Documentation is currently under development.

Features

  • Detailed Render frames with extruded cross sections
  • Persistence: Save your finite element visualizations as persistent 3D models that can be revisited and analyzed at any time.
  • Portability: Share your models effortlessly with colleagues, enabling seamless collaboration and review.
  • Accessibility: View and interact with the models using any standard 3D model viewer, eliminating the need for specialized software or Python installation.
  • Versatility: A wide selection of rendering backends and output file types, including optimized 3D web formats like .glb. Generated 3D models can be loaded directly into programs like PowerPoint and animated.
  • Correctly render models that treat both y or z as the vertical coordinate.

Getting Started

To install veux run:

pip install veux

Python Interface

To render a model directly from Python, use the veux.render function:

artist = veux.render(model, canvas=canvas)
  • model: the model parameter can be of several types
    • str (string) variables are treated like file paths. Supported files are .json and .tcl
    • dict variables are treated
    • Model variables from the sees Python package can be passed directly
  • canvas: The canvas parameter is a string which indicates which "backend" technology to use. The options are:
    • "gltf" is the default canvas and produces the highest quality renderings. You can save renderings drawn by this backend to either .html or .glb files. .glb files are preferred as they are a natural format for 3D objects and can be viewed by standard 3D viewing applications.
    • "plotly" is best for model debugging as it is able to embed model details like node/element numbers and properties with hover annotations. However, the renderings produced by this backend dont look quite as good as with gltf.
    • "matplotlib": can be used to programatically create .png files.

Once the artist is created, the rendering can either be displayed or saved to a file. Each canvas supports slightly different options:

  • viewing To view a rendering that is generated either with canvas="gltf" or canvas="plotly", use the veux.serve() function:

    veux.serve(artist)
    

    After running you will see a message like the following printed to your terminal:

        Bottle v0.13.1 server starting up (using WSGIRefServer())...
        Listening on http://localhost:8081/
        Hit Ctrl-C to quit.
    

    Paste the URL from this message (eg, http://localhost:8081) into the address bar of a browser and an interactive rendering will appear.

  • saving Use the artist's save() method to write the rendering to a file. The file type depends on the canvas:

    • with canvas="gltf", files are saved in the glTF format with extension .glb:
      ...
      artist.save("model.glb")
      
    • with canvas="plotly", files are saved in to HTML:
      ...
      artist.save("model.html")
      
    • with canvas="matplotlib", files are saved in as PNGs:
      ...
      artist.save("model.png")
      
      Note, however, that renderings produced by the "matplotlib" canvas are generally very poor quality. For high quality images, use the "gltf" canvas and take screen captures.

Command Line Interface

To create a rendering, execute the following command from the anaconda prompt (after activating the appropriate environment):

python -m veux model.json -o model.html

where model.json is a JSON file generated from executing the following OpenSees command:

print -JSON model.json

If you omit the -o <file.html> portion, it will plot immediately in a new window. You can also use a .png extension to save a static image file, as opposed to the interactive html.

Note Printing depends on the JSON output of a model. Several materials and elements in the OpenSeesPy and upstream OpenSees implementations do not correctly print to JSON. For the most reliable results, use the opensees package.

By default, the rendering treats the $y$ coordinate as vertical. In order to manually control this behavior, pass the option --vert 3 to render model $z$ vertically, or --vert 2 to render model $y$ vertically.

If the opensees package is installed, you can directly render a Tcl script without first printing to JSON, by just passing a Tcl script instead of the JSON file:

python -m veux model.tcl -o model.html

To plot an elevation (elev) plan (plan) or section (sect) view, run:

python -m veux model.json --view elev

and add -o <file.extension> as appropriate.

To see the help page run

python -m veux --help

Related Links

See also

The veux packages was used to generate figures for the following publications:

Gallery

Support

PEER Logo Caltrans Logo STAIRlab Logo

Download files

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

Source Distribution

veux-0.0.8.tar.gz (360.6 kB view details)

Uploaded Source

Built Distribution

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

veux-0.0.8-py3-none-any.whl (374.8 kB view details)

Uploaded Python 3

File details

Details for the file veux-0.0.8.tar.gz.

File metadata

  • Download URL: veux-0.0.8.tar.gz
  • Upload date:
  • Size: 360.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.1

File hashes

Hashes for veux-0.0.8.tar.gz
Algorithm Hash digest
SHA256 6d0b455bab1700567e89d2c1858956fb56b17dcee966c100fc59648493020c70
MD5 7443990d9dc7a6a6fef3e3ec9838a8d7
BLAKE2b-256 7eba831b33c074a37b5b5808a7d282ac26932de73355fb79c8bca7cc93fbaea9

See more details on using hashes here.

File details

Details for the file veux-0.0.8-py3-none-any.whl.

File metadata

  • Download URL: veux-0.0.8-py3-none-any.whl
  • Upload date:
  • Size: 374.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.1

File hashes

Hashes for veux-0.0.8-py3-none-any.whl
Algorithm Hash digest
SHA256 76d0ae4d14e69cfa2cc5362fa269c25aabf6a0d4cd7109d8bfa5e403d9284443
MD5 e2b0ef69e2d422b8ad6aa58586faa92c
BLAKE2b-256 253165559122145a8e29b92f2366de3265f13c5bd555803b0b6d7d5d2a95002f

See more details on using hashes here.

Release history Release notifications | RSS feed

0.0.43

2 files

0.0.42

2 files

0.0.41

2 files

0.0.40

2 files

0.0.39

2 files

0.0.38

2 files

0.0.37

2 files

0.0.36

2 files

0.0.35

2 files

0.0.34

2 files

0.0.33

2 files

0.0.32

2 files

0.0.31

2 files

0.0.30

2 files

0.0.29

2 files

0.0.28

2 files

0.0.27

2 files

0.0.26

2 files

0.0.25

2 files

0.0.24

2 files

0.0.23

2 files

0.0.22

2 files

0.0.21

2 files

0.0.20

2 files

0.0.19

2 files

0.0.18

2 files

0.0.17

2 files

0.0.16

2 files

0.0.15

2 files

0.0.14

2 files

0.0.13

2 files

0.0.12

2 files

0.0.11

2 files

0.0.10

2 files

0.0.9

2 files

This release

0.0.8 This release

2 files

0.0.7

2 files

0.0.6

2 files

0.0.5

2 files

0.0.4

2 files

0.0.3

2 files

0.0.2

2 files

0.0.1

2 files

0.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page