diff --git a/.SimulinkProject/Root.type.Files/Tomography.m.type.File.xml b/.SimulinkProject/Root.type.Files/Tomography.m.type.File.xml
new file mode 100644
index 0000000..80b5b16
--- /dev/null
+++ b/.SimulinkProject/Root.type.Files/Tomography.m.type.File.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.SimulinkProject/Root.type.Files/Tomography.mat.type.File.xml b/.SimulinkProject/Root.type.Files/Tomography.mat.type.File.xml
new file mode 100644
index 0000000..80b5b16
--- /dev/null
+++ b/.SimulinkProject/Root.type.Files/Tomography.mat.type.File.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Assemblage.slx b/Assemblage.slx
index 3d712db..1610906 100644
Binary files a/Assemblage.slx and b/Assemblage.slx differ
diff --git a/Tomography.m b/Tomography.m
new file mode 100644
index 0000000..caf6832
--- /dev/null
+++ b/Tomography.m
@@ -0,0 +1,27 @@
+save('Tomography.mat','Nass_xtomo','Nass_ytomo','Nass_ztomo','Nass_thetaxtomo','Nass_thetaytomo','Nass_thetaztomo')
+
+%% Plot Angle
+figure
+hold on
+plot(Nass_thetaxtomo)
+plot(Nass_thetaytomo)
+plot(Nass_thetaztomo)
+xlabel('Time (s)')
+ylabel('Angle (rad)')
+title('Tomography Nass Rotation')
+legend('Nass \theta_x','Nass \theta_y','Nass \theta_z')
+grid;
+hold off
+
+%% Plot Position
+figure
+hold on
+plot(Nass_xtomo)
+plot(Nass_ytomo)
+plot(Nass_ztomo)
+xlabel('Time (s)')
+ylabel('Distance (m)')
+title('Tomography Nass Position')
+legend('Nass x','Nass y','Nass z')
+grid
+hold off
diff --git a/Tomography.mat b/Tomography.mat
new file mode 100644
index 0000000..d1bb35b
Binary files /dev/null and b/Tomography.mat differ