pyny3d

Engineering-oriented tool to interactively build, work and perform shading simulations with 3D geometries.


Keywords
geometry, shading, 3D, photovoltaic
License
MIT
Install
pip install pyny3d==0.2

Documentation

README

04/02/2020 Update: Sadly, this library has been discontinued and I cannot provide support anymore.

Please, visit the pyny3d Web for documentation, examples and tutorials.

Abstract

pyny3d is a Python3 tyny 3D tool for build and generate information from simple and light geometry models based on polygons. Furthermore, it is possible to perform solar shadowing simulations and timeseries data projections (radiation, for example) over them. The whole library can be used interactively or coded autonomously or alongside with other codes.

It is built on top of numpy, scipy, matplotlib and shapely. It uses two well-known 2D geometry objects (matplotlib.Path.path and shapely.geometry.Polygon) to safely compute a wide range of planar operations at reasonable speed, without the need for the user to worry about the low-level workflow.

It has been designed to be a tool for scientific and engineering applications. It could hardly be useful in other areas such as computer graphics.

Hello World Code Snippet

Very simple example using some basic funtionalities:

import numpy as np
import pyny3d.geoms as pyny

# Geometry creation
## Polygons by their vertices
base = np.array([[0,0], [10,0], [10,10], [0,10]]) # Base square on the floor
pillar = np.array([[4,4,8], [6,4,8], [6,6,8], [4,6,8]]) # Top obtacle polygon (to extrude)
## Obstacle
place = pyny.Place(base)
place.add_extruded_obstacles(pillar)
space = pyny.Space(place)

# Shadows
S = space.shadows(init='auto', resolution='high')

# Viz
S.viz.exposure_plot()

https://github.com/JoseAntFer/pyny3d/blob/master/cover.png?raw=true

Miscelaneous

Disclaimer

pyny3d is being developed in a educational and reseach environment by a civil engineer with the aim of creating a very easy to use and intuitive library. For these reason, I do not recommend to use it in applications where geometries could be very complex or if the performance is a determinant factor.

On the other hand, it is actually a great tool for prototype more general purpose programs, working inside them to automate operations on 3D geometries (like translations, rotations, arbitrary projections, shading...) and then return this information back.

Requirements

Installing pyny3d

Use the pip install way: $ pip install pyny3d

Bugs

  • Overlapping plots (Official matplotlib explanation)

    Visualizations generated with matplotlib frequently have overlapping problems. This is because matplotlib initially was not designed to be a great 3D graph plotter. When it is required to plot a 2D projection of a 3D multi-body representation, it has problems to figure out which objects are in front and which ones are behind. It is important to remark that this is only a visualization problem that DO NOT affects internal pyny3d calculations, indeed, all the plot commands are no-return paths.

    I am studying to implement Mayavi to solve that problem and, at the same time, increase the quality and the possiblities of pyny3d plots. But, for now, in order to keep the intallation and usage as simple as possible for the users, I will keep matplotlib as the only visualization tool.