diff --git a/doc/images/firedrake_mesh_design.gv b/doc/images/firedrake_mesh_design.gv
new file mode 100755
index 0000000000000000000000000000000000000000..b546539028893ec86138c327623c95c040a78bc2
--- /dev/null
+++ b/doc/images/firedrake_mesh_design.gv
@@ -0,0 +1,25 @@
+// created with graphviz2.38 dot
+
+digraph{
+    // NODES
+
+    top [label="Topological\nMesh"];
+    ref [label="Reference\nElement"];
+    fspace [label="Function Space"];
+    coordless [label="Coordinateless\nFunction"];
+    geo [label="Geometric\nMesh"];
+    withgeo [label="With\nGeometry"]; 
+
+    // EDGES
+
+    top -> fspace;
+    ref -> fspace;
+
+    fspace -> coordless;
+
+    top -> geo;
+    coordless -> geo [label="Mesh\nCoordinates"];
+
+    fspace -> withgeo;
+    geo -> withgeo;
+}
diff --git a/doc/images/firedrake_mesh_design.png b/doc/images/firedrake_mesh_design.png
new file mode 100755
index 0000000000000000000000000000000000000000..f394f9e7f3d56138ff15850311e6bcd6dcdd7bbe
Binary files /dev/null and b/doc/images/firedrake_mesh_design.png differ
diff --git a/doc/index.rst b/doc/index.rst
index 3a7a2ba71dab133f5f754ef2d213c01f23d97d32..0beee875eddae0e9b6d2b4d81ebb2d864bd8798f 100644
--- a/doc/index.rst
+++ b/doc/index.rst
@@ -9,6 +9,7 @@ Contents:
    mesh
    discretization
    connection
+   interop
    misc
 
 Indices and tables
diff --git a/doc/interop.rst b/doc/interop.rst
new file mode 100644
index 0000000000000000000000000000000000000000..f621b49b7cec4b1dabc020b14dcecc3abdd1e86e
--- /dev/null
+++ b/doc/interop.rst
@@ -0,0 +1,91 @@
+interop
+=======
+
+Interfacing with data outside of :mod:`meshmode`.
+
+
+fiat
+----
+
+.. automodule:: meshmode.interop.fiat.simplex_cell
+
+
+FInAT
+-----
+
+.. automodule:: meshmode.interop.FInAT.lagrange_element
+
+
+Firedrake
+---------
+
+
+Firedrake Function Space Design
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+
+.. note::
+    *(If you are just an end-user, you probably don't need to know this)*
+
+    In firedrake, meshes and function spaces have a close relationship.
+    In particular, due to some structure described in this
+    `firedrake pull request <http://github.com/firedrakeproject/firedrake/pull/627>`_.
+    ``fd2mm`` mimics this firedrake design style. 
+    
+    In short, it is the idea
+    that every function space should have a mesh, and the coordinates of the mesh
+    should be representable as a function on that same mesh, which must live
+    on some function space on the mesh... etc.
+    Under the hood, we divide between topological and geometric objects,
+    roughly as so
+
+    (1) A reference element defined using :mod:`FInAT` and :mod:`fiat`
+        is used to define what meshmode calls the unit nodes and unit
+        vertices. It is worth noting that :mod:`firedrake` does
+        not require a positive orientation of elements and that its
+        reference traingle is different than specified in :mod:`modepy`. 
+    
+    (2) A ``MeshTopology`` which holds information about connectivity
+        and other topological properties, but nothing about geometry/coordinates
+        etc.
+
+    (3) A ``FunctionSpace`` created from a ``FInAT`` element and a
+        ``MeshTopology`` which allows us to define functions 
+        mapping the nodes (defined by the ``FInAT`` element) of 
+        each element in the ``MeshTopology`` to some values
+    
+    (4) A ``CoordinatelessFunction`` (in the sense that its
+        *domain* has no coordinates) which is a function
+        in a ``FunctionSpace``
+    
+    (5) A ``MeshGeometry``  created from a ``FunctionSpace``
+        and a ``CoordinatelessFunction`` in that ``FunctionSpace``
+        which maps each dof to its geometric coordinates.
+
+    (6) A ``WithGeometry`` which is a ``FunctionSpace`` together
+        with a ``MeshGeometry``. This is the object returned
+        usually returned to the user by a call
+        to the :mod:`firedrake` function :func:`FunctionSpace`.
+
+    (7) A ``Function`` is defined on a ``WithGeometry``
+
+    Thus, by the coordinates of a mesh geometry we mean
+
+    (a) On the hidden back-end: a ``CoordinatelessFunction`` *f* on some function
+        space defined only on the mesh topology
+    (b) On the front-end: A ``Function`` with the values of *f* but defined
+        on a ``WithGeometry`` created from the ``FunctionSpace`` *f* lives in
+        and the ``MeshGeometry`` *f* defines.
+
+    Basically, it's this picture (where a->b if b depends on a)
+
+    .. warning::
+    
+        In general, the ``FunctionSpace`` of the coordinates function
+        of a ``WithGeometry`` may not be the same ``FunctionSpace``
+        as for functions which live in the ``WithGeometry``.
+        This picture
+        only shows how the class definitions depend on each other.
+                
+
+    .. image:: images/firedrake_mesh_design.png