.Simulation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
RpkDataPoint.h
1 // RpkDataPoint.h - RPK data point structure declaration.
2 // Written by Jesse Z. Zhong
3 #ifndef __RPK_Data_Point_H__
4 #define __RPK_Data_Point_H__
5 #include <iostream>
6 using namespace std;
7 namespace DataReader {
8 
12  struct RpkDataPoint {
13 
14  double Time;
15  double Radius;
16  double Velocity;
17  double Pressure;
18  double DeltaPressure;
19 
23  RpkDataPoint();
24  };
25 }
26 
30 ostream& operator<<(ostream& out, DataReader::RpkDataPoint& rpkDP);
31 
32 #endif // !__RPK_Data_Point_H__
double Velocity
The velocity at which the bubble wall is expanding or compressing.
Definition: RpkDataPoint.h:16
double Radius
The radius from the center of the bubble to the wall.
Definition: RpkDataPoint.h:15
double DeltaPressure
The change in pressure of the bubble.
Definition: RpkDataPoint.h:18
Stores a single data point of an RPK set of values.
Definition: RpkDataPoint.h:12
double Pressure
The pressure measured within the bubble.
Definition: RpkDataPoint.h:17
ostream & operator<<(ostream &out, DataReader::DataSnapshot &data)
Out stream operator overload for snapshots.
Definition: DataSnapshot.cpp:350
double Time
The time elapsed in the simulation.
Definition: RpkDataPoint.h:14