aboutsummaryrefslogtreecommitdiffstats
path: root/unit.h
diff options
context:
space:
mode:
Diffstat (limited to 'unit.h')
-rw-r--r--unit.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/unit.h b/unit.h
index 520285b..b189ff1 100644
--- a/unit.h
+++ b/unit.h
@@ -74,3 +74,13 @@ VolumeFlowRate cubic_foot_per_min(double x);
double as_cubic_metre_per_sec(VolumeFlowRate x);
double as_cubic_metre_per_min(VolumeFlowRate x);
double as_cubic_foot_per_min(VolumeFlowRate x);
+
+
+typedef double MassFlowRate;
+typedef MassFlowRate (*MassFlowRateMaker)(double);
+typedef double (*MassFlowRateReader)(MassFlowRate);
+
+MassFlowRate kilo_per_sec(double x);
+MassFlowRate pound_per_min(double x);
+double as_kilo_per_sec(MassFlowRate m);
+double as_pound_per_min(MassFlowRate m);