ABOUT
PyTectonics is a 3d plate tectonics simulator written in Python to provide realistic terrain generation for enthusiast world builders.
PyTectonics is a principled model. It aims to use simple yet scientifically defensible models that may be easily understood by nonexperts and modified by developers. A 3D framework is used to provide a solid foundation for modeling that is grounded in reality. Python is used to allow access from a wider audience of developers.
The model is open source and licensed under version 2.0 of the Creative Commons Non Commercial Attribution License.
NEWS
Recent changes to New Release: 0.3a
New Release: 0.3a
A new release comes to pytectonics:
- cleaner
- faster
- speed control
- thickness map
- docking
- dropped scipy dependency
I'd originally intended 0.3 to add the supercontinent cycle, but with how the work so far shapes up it seems like a new release is in order, anyways.
Perhaps most important this release is the docking functionality. Previous versions differed in how collision was performed between landmass. In real life, colliding continents have the potential to interrupt the plates they move on. Smaller, more common landmasses such as those found in island arcs however dock to larger landmasses without interrupting plates. Pytectonics previously handled the former without the latter. What made matters worse was how velocity was affected by collision - the model took a naive approach, stopping plates entirely when collision was detected. Effectively, this caused plates in the long run to stop moving, oftentimes for no reason other than hitting some insignificant island. The most recent version handles docking, though, appending crust from smaller colliding landmass to the plate of the larger landmass. Velocity is also now altered by collision in a much more sensible manner that assumes the conservation of angular momentum. This felt to me a good first order approximation given I wanted the model to remain simple without considering things like mantle convection. It still seems to me a bit naive given the timescales involved, but a brief look through literature really does seem to suggest that angular momentum is conserved.
On a bit of a side note, SciPy should now no longer be needed for subsequent versions. Previous versions used SciPy largely for the kd-tree library, allowing efficient lookups of nearest neighbors through 3d cartesian coordinates. Over the course of many commits though I've found it much faster to drop the 3rd dimension and determine neighbors based upon 2d spherical coordinates, which is rather incompatible with SciPy's kd-tree implementation. As of the previous version, kd-trees were only used upon initialization to determine the nearest plates and continents to each grid cell. Beyond that, SciPy did provide some functionality through the use of obscure mathematical constants such as the golden ratio, but that hardly warrants the dependency from the user's perspective.