diff --git a/K2Engineering/K2Engineering/DataTypes/PressureData.cs b/K2Engineering/K2Engineering/DataTypes/PressureData.cs
new file mode 100644
index 0000000..56047d7
--- /dev/null
+++ b/K2Engineering/K2Engineering/DataTypes/PressureData.cs
@@ -0,0 +1,42 @@
+using Rhino.Geometry;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace K2Engineering.DataTypes
+{
+ public class PressureData
+ {
+ public Point3d[] Locations;
+ public Vector3d[] Loads;
+ public double PresStart;
+ public double PresEnd;
+ public double VolStart;
+ public double VolEnd;
+ public int MolStart;
+ public int MolEnd;
+
+ public PressureData() { }
+
+ public PressureData(Point3d[] locations, Vector3d[] loads, double presStart, double presEnd, double volStart, double volEnd, int molStart, int molEnd)
+ {
+ Locations = new Point3d[locations.Length];
+ Loads = new Vector3d[loads.Length];
+
+ for(int i=0; i
+
+
+
@@ -198,6 +201,12 @@
+
+
+
+
+
+