GEOS
Units.hpp
Go to the documentation of this file.
1 /*
2  * ------------------------------------------------------------------------------------------------------------
3  * SPDX-License-Identifier: LGPL-2.1-only
4  *
5  * Copyright (c) 2016-2024 Lawrence Livermore National Security LLC
6  * Copyright (c) 2018-2024 TotalEnergies
7  * Copyright (c) 2018-2024 The Board of Trustees of the Leland Stanford Junior University
8  * Copyright (c) 2023-2024 Chevron
9  * Copyright (c) 2019- GEOS/GEOSX Contributors
10  * All rights reserved
11  *
12  * See top level LICENSE, COPYRIGHT, CONTRIBUTORS, NOTICE, and ACKNOWLEDGEMENTS files for details.
13  * ------------------------------------------------------------------------------------------------------------
14  */
15 
20 #ifndef GEOS_MATH_UNITS_HPP_
21 #define GEOS_MATH_UNITS_HPP_
22 
23 #include "common/DataTypes.hpp"
25 #include "common/format/Format.hpp"
26 
27 namespace geos
28 {
29 
30 namespace units
31 {
32 
34 static constexpr double DarcyToSqM = 9.869233e-13;
35 
41 inline constexpr double convertKToC( double kelvin )
42 { return kelvin - constants::zeroDegreesCelsiusInKelvin; }
48 inline constexpr double convertCToK( double celsius )
49 { return celsius + constants::zeroDegreesCelsiusInKelvin; }
50 
51 
58 enum Unit : integer
59 {
62 
65 
68 
71 
74 
77 
80 
83 
86 
89 
92 
95 
98 
101 
104 
107 
110 
113 };
114 
115 
120 constexpr inline std::string_view getDescription( Unit unit )
121 {
122  switch( unit )
123  {
124  default: return "unknown [?]";
125  case Dimensionless: return "dimensionless [1]";
126  case Pressure: return "pressure [Pa]";
127  case Temperature: return "temperature [K]";
128  case TemperatureInC: return "temperature [C]";
129  case Distance: return "distance [m]";
130  case Time: return "time [s]";
131  case Viscosity: return "viscosity [Pa*s]";
132  case Enthalpy: return "enthalpy [J/kg]";
133  case Density: return "density [kg/m3]";
134  case Solubility: return "solubility [g/L]";
135  case Mass: return "mass [kg]";
136  case Mole: return "mole [mol]";
137  case MassRate: return "mass rate [kg/s]";
138  case MoleRate: return "mole rate [mol/s]";
139  case Transmissibility: return "transmissibility [(Pa*s*rm3/s)/Pa]";
140  case MolarVolume: return "molar volume [m3/mol]";
141  case MolarDensity: return "molar density [mol/m3]";
142  }
143 }
144 
149 constexpr inline std::string_view getSymbol( Unit unit )
150 {
151  switch( unit )
152  {
153  default: return "?";
154  case Dimensionless: return "1";
155  case Pressure: return "Pa";
156  case Temperature: return "K";
157  case TemperatureInC: return "C";
158  case Distance: return "m";
159  case Time: return "s";
160  case Viscosity: return "Pa*s";
161  case Enthalpy: return "J/kg";
162  case Density: return "kg/m3";
163  case Solubility: return "g/L";
164  case Mass: return "kg";
165  case Mole: return "mol";
166  case MassRate: return "kg/s";
167  case MoleRate: return "mol/s";
168  case Transmissibility: return "(Pa*s*rm3/s)/Pa";
169  case MolarVolume: return "m3/mol";
170  case MolarDensity: return "mol/m3";
171  }
172 }
173 
178 constexpr inline std::string_view getVariableSymbol( Unit unit )
179 {
180  switch( unit )
181  {
182  default:
183  case Dimensionless: return "?";
184  case Pressure: return "P";
185  case Temperature: return "T";
186  case TemperatureInC: return "T";
187  case Distance: return "L";
188  case Time: return "t";
189  case Viscosity: return "mu";
190  case Enthalpy: return "H";
191  case Density: return "rho";
192  case Solubility: return "S";
193  case Mass: return "m";
194  case Mole: return "n";
195  case MassRate: return "Qm";
196  case MoleRate: return "Qn";
197  case Transmissibility: return "Tr";
198  }
199 }
200 
208 inline string formatValue( real64 value, Unit unit )
209 {
210  switch( unit )
211  {
212  default: return GEOS_FMT( "value of {} [?]", value );
213  case Dimensionless: return GEOS_FMT( "value of {} [1]", value );
214  case Pressure: return GEOS_FMT( "pressure of {} [Pa]", value );
215  case Temperature: return GEOS_FMT( "temperature of {} [K]", value );
216  case TemperatureInC: return GEOS_FMT( "temperature of {} [K]", convertCToK( value ) );
217  case Distance: return GEOS_FMT( "distance of {} [s]", value );
218  case Time: return GEOS_FMT( "time of {} [s]", value );
219  case Viscosity: return GEOS_FMT( "viscosity of {} [Pa*s]", value );
220  case Enthalpy: return GEOS_FMT( "enthalpy of {} [J/kg]", value );
221  case Density: return GEOS_FMT( "density of {} [kg/m3]", value );
222  case Solubility: return GEOS_FMT( "solubility of {} [g/L]", value );
223  case Mass: return GEOS_FMT( "mass of {} [kg]", value );
224  case Mole: return GEOS_FMT( "mole of {} [mol]", value );
225  case MassRate: return GEOS_FMT( "mass rate of {} [kg/s]", value );
226  case MoleRate: return GEOS_FMT( "mole rate of {} [mol/s]", value );
227  case Transmissibility: return GEOS_FMT( "transmissibility of {} [(Pa*s*rm3/s)/Pa]", value );
228  case MolarVolume: return GEOS_FMT( "molar volume of {} [m3/mol]", value );
229  case MolarDensity: return GEOS_FMT( "molar density of {} [mol/m3]", value );
230  }
231 }
232 
233 
235 using SystemClock = std::chrono::high_resolution_clock;
236 
238 using YearDaysRatio = std::ratio< 146097, 400 >;
240 using Days = std::chrono::duration< int64_t, std::ratio_multiply< std::ratio< 24 >, std::chrono::hours::period > >;
242 using Years = std::chrono::duration< int64_t, std::ratio_multiply< YearDaysRatio, Days::period > >;
243 
245 static constexpr double YearDays = ( double )YearDaysRatio::num / YearDaysRatio::den;
247 static constexpr double MinuteSeconds = 60.0;
249 static constexpr double HourSeconds = 60.0 * MinuteSeconds;
251 static constexpr double DaySeconds = 24.0 * HourSeconds;
253 static constexpr double YearSeconds = YearDays * DaySeconds;
254 
255 
260 {
262  double const m_totalSeconds = 0.0;
264  int const m_years = 0;
266  int const m_days = 0;
268  int const m_hours = 0;
270  int const m_minutes = 0;
272  int const m_seconds = 0;
273 
283  TimeFormatInfo( double totalSeconds, int years, int days, int hours, int minutes, int seconds );
288  static TimeFormatInfo fromSeconds( double const seconds );
294  template< typename DURATION > static TimeFormatInfo fromDuration( DURATION duration );
295 
299  friend std::ostream & operator<<( std::ostream & os, TimeFormatInfo const & ctx );
300 
304  string toString() const;
305 
309  string toUnfoldedString() const;
310 
314  string toSecondsString() const;
315 };
316 
317 template< typename DURATION >
319 {
320  using namespace std::chrono;
321 
322  auto const totalYears = duration_cast< units::Years >( value );
323  auto const daysOut = duration_cast< units::Days >( value - totalYears );
324  auto const hoursOut = duration_cast< hours >( value - totalYears - daysOut );
325  auto const minutesOut = duration_cast< minutes >( value - totalYears - daysOut - hoursOut );
326  auto const secondsOut = duration_cast< seconds >( value - totalYears - daysOut - hoursOut - minutesOut );
327 
328  return TimeFormatInfo( duration< double >( value ).count(), int( totalYears.count() ),
329  int( daysOut.count() ), int( hoursOut.count() ),
330  int( minutesOut.count() ), int( secondsOut.count() ) );
331 }
332 
333 } // end namespace units
334 
335 } // end namespace geos
336 
337 
341 template<>
342 struct GEOS_FMT_NS::formatter< geos::units::TimeFormatInfo > : GEOS_FMT_NS::formatter< std::string >
343 {
350  auto format( geos::units::TimeFormatInfo const & durationData, format_context & ctx ) const
351  {
352  return GEOS_FMT_NS::formatter< std::string >::format( durationData.toString(), ctx );
353  }
354 };
355 
356 #endif //GEOS_MATH_PHYSICSCONSTANTS_HPP_
#define GEOS_HOST_DEVICE
Marks a host-device function.
Definition: GeosxMacros.hpp:49
Regroups useful constants that are globally used for math and physics computations.
constexpr GEOS_HOST_DEVICE double convertCToK(double celsius)
Definition: Units.hpp:48
std::chrono::duration< int64_t, std::ratio_multiply< YearDaysRatio, Days::period > > Years
Year helper duration type, equivalent to C++20 std::chrono::years.
Definition: Units.hpp:242
std::ratio< 146097, 400 > YearDaysRatio
One year = 365.2425 days (= 146097 / 400) following the Gregorian calendar and the C++ convention.
Definition: Units.hpp:238
constexpr std::string_view getDescription(Unit unit)
Definition: Units.hpp:120
static constexpr double YearSeconds
Seconds in a year.
Definition: Units.hpp:253
constexpr std::string_view getVariableSymbol(Unit unit)
Definition: Units.hpp:178
std::chrono::high_resolution_clock SystemClock
Clock in use in GEOS to manipulate system times.
Definition: Units.hpp:235
constexpr GEOS_HOST_DEVICE double convertKToC(double kelvin)
Definition: Units.hpp:41
Unit
Enumerator of available unit types for given physical scales. Units are in SI by default.
Definition: Units.hpp:59
@ MolarDensity
Molar density in mol/m3.
Definition: Units.hpp:112
@ Transmissibility
Transmissibility in m2/s.
Definition: Units.hpp:106
@ Mass
Mass in kg.
Definition: Units.hpp:94
@ Time
Time in seconds.
Definition: Units.hpp:79
@ Distance
Distance in meter.
Definition: Units.hpp:76
@ Density
Density in kg/m³
Definition: Units.hpp:85
@ MoleRate
Mole rate in mol/s.
Definition: Units.hpp:103
@ MassRate
Mass rate in kg/s.
Definition: Units.hpp:100
@ TemperatureInC
Temperature in Celcius.
Definition: Units.hpp:73
@ Viscosity
Viscosity in Pa*s.
Definition: Units.hpp:82
@ Solubility
Solubility in g/L.
Definition: Units.hpp:91
@ Mole
Mole in mol.
Definition: Units.hpp:97
@ Pressure
Pressure in Pascal.
Definition: Units.hpp:67
@ Enthalpy
Enthalpy in J/kg.
Definition: Units.hpp:88
@ Dimensionless
Label to use when a value has not physical dimension (ratio values, propotions...)
Definition: Units.hpp:64
@ Temperature
Temperature in Kelvin.
Definition: Units.hpp:70
@ Unknown
Default label when a unit is not known for a value.
Definition: Units.hpp:61
@ MolarVolume
Molar volume in m3/mol.
Definition: Units.hpp:109
static constexpr double DarcyToSqM
Darcy to m^2 conversion factor.
Definition: Units.hpp:34
static constexpr double HourSeconds
Seconds in a hour.
Definition: Units.hpp:249
static constexpr double MinuteSeconds
Seconds in a minute.
Definition: Units.hpp:247
static constexpr double DaySeconds
Seconds in a day.
Definition: Units.hpp:251
constexpr std::string_view getSymbol(Unit unit)
Definition: Units.hpp:149
static constexpr double YearDays
Days in one year (following the Gregorian calendar and the C++ convention) = 365.2425 days (= 146097 ...
Definition: Units.hpp:245
string formatValue(real64 value, Unit unit)
Format the specified value coherently with the specified unit.
Definition: Units.hpp:208
std::chrono::duration< int64_t, std::ratio_multiply< std::ratio< 24 >, std::chrono::hours::period > > Days
Day helper duration type, equivalent to C++20 std::chrono::days.
Definition: Units.hpp:240
double real64
64-bit floating point type.
Definition: DataTypes.hpp:99
std::int32_t integer
Signed integer type.
Definition: DataTypes.hpp:82
std::string_view string_view
String type.
Definition: DataTypes.hpp:94
auto format(geos::units::TimeFormatInfo const &durationData, format_context &ctx) const
Format the specified TimeFormatInfo to a string.
Definition: Units.hpp:350
Stores information that is useful to duration strings. Based on the geos::units time constants.
Definition: Units.hpp:260
string toUnfoldedString() const
friend std::ostream & operator<<(std::ostream &os, TimeFormatInfo const &ctx)
Insert the string representation information in the provided stream.
int const m_seconds
Number of integral seconds to show.
Definition: Units.hpp:272
int const m_minutes
Number of integral minutes to show.
Definition: Units.hpp:270
static TimeFormatInfo fromSeconds(double const seconds)
int const m_hours
Number of integral hours to show.
Definition: Units.hpp:268
string toSecondsString() const
double const m_totalSeconds
Total time (including the decimal part) this instance represents in seconds.
Definition: Units.hpp:262
static TimeFormatInfo fromDuration(DURATION duration)
Definition: Units.hpp:318
int const m_years
Number of integral years to show.
Definition: Units.hpp:264
int const m_days
Number of integral days to show.
Definition: Units.hpp:266
TimeFormatInfo(double totalSeconds, int years, int days, int hours, int minutes, int seconds)
Construct a TimeFormatInfo from raw data (which must be coherent)