Armadillo Vault

Comprised of 399 individually cut limestone pieces, unreinforced and assembled without mortar, the Armadillo Vault spans 16 m with a minimum thickness of only 5 cm. Its funicular geometry allows it to stand in pure compression, while tension ties equilibrate the form. Starting from the same structural and constructional principles as historic stone cathedrals, this sophisticated form emerged from novel computational graphic statics-based design and optimisation methods developed by the project team.

Block Model

import compas
from compas.artists import Artist

assembly = compas.json_load("armadillo.json")

artist = Artist(assembly)
artist.draw_blocks()

Connectivity Diagram

import compas
from compas.artists import Artist

assembly = compas.json_load("armadillo.json")

artist = Artist(assembly)
artist.draw_blocks(show_faces=False)
artist.draw_nodes()
artist.draw_edges()

Interfaces

import compas
from compas.artists import Artist

assembly = compas.json_load("armadillo.json")

artist = Artist(assembly)
artist.draw_blocks(show_faces=False)
artist.draw_interfaces()

Equilibrium

Coming soon...

Last updated