20 #ifndef GEOS_MATH_UNITS_HPP_
21 #define GEOS_MATH_UNITS_HPP_
25 #include "common/format/Format.hpp"
42 {
return kelvin - constants::zeroDegreesCelsiusInKelvin; }
49 {
return celsius + constants::zeroDegreesCelsiusInKelvin; }
124 default:
return "unknown [?]";
126 case Pressure:
return "pressure [Pa]";
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]";
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]";
159 case Time:
return "s";
164 case Mass:
return "kg";
165 case Mole:
return "mol";
188 case Time:
return "t";
193 case Mass:
return "m";
194 case Mole:
return "n";
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 );
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 );
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 > >;
245 static constexpr
double YearDays = ( double )YearDaysRatio::num / YearDaysRatio::den;
283 TimeFormatInfo(
double totalSeconds,
int years,
int days,
int hours,
int minutes,
int seconds );
317 template<
typename DURATION >
320 using namespace std::chrono;
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 );
328 return TimeFormatInfo( duration< double >( value ).count(),
int( totalYears.count() ),
329 int( daysOut.count() ),
int( hoursOut.count() ),
330 int( minutesOut.count() ),
int( secondsOut.count() ) );
342 struct GEOS_FMT_NS::formatter<
geos::units::TimeFormatInfo > : GEOS_FMT_NS::formatter< std::string >
352 return GEOS_FMT_NS::formatter< std::string >::format( durationData.
toString(), ctx );
#define GEOS_HOST_DEVICE
Marks a host-device function.
Regroups useful constants that are globally used for math and physics computations.
constexpr GEOS_HOST_DEVICE double convertCToK(double celsius)
std::chrono::duration< int64_t, std::ratio_multiply< YearDaysRatio, Days::period > > Years
Year helper duration type, equivalent to C++20 std::chrono::years.
std::ratio< 146097, 400 > YearDaysRatio
One year = 365.2425 days (= 146097 / 400) following the Gregorian calendar and the C++ convention.
constexpr std::string_view getDescription(Unit unit)
static constexpr double YearSeconds
Seconds in a year.
constexpr std::string_view getVariableSymbol(Unit unit)
std::chrono::high_resolution_clock SystemClock
Clock in use in GEOS to manipulate system times.
constexpr GEOS_HOST_DEVICE double convertKToC(double kelvin)
Unit
Enumerator of available unit types for given physical scales. Units are in SI by default.
@ MolarDensity
Molar density in mol/m3.
@ Transmissibility
Transmissibility in m2/s.
@ Distance
Distance in meter.
@ Density
Density in kg/m³
@ MoleRate
Mole rate in mol/s.
@ MassRate
Mass rate in kg/s.
@ TemperatureInC
Temperature in Celcius.
@ Viscosity
Viscosity in Pa*s.
@ Solubility
Solubility in g/L.
@ Pressure
Pressure in Pascal.
@ Enthalpy
Enthalpy in J/kg.
@ Dimensionless
Label to use when a value has not physical dimension (ratio values, propotions...)
@ Temperature
Temperature in Kelvin.
@ Unknown
Default label when a unit is not known for a value.
@ MolarVolume
Molar volume in m3/mol.
static constexpr double DarcyToSqM
Darcy to m^2 conversion factor.
static constexpr double HourSeconds
Seconds in a hour.
static constexpr double MinuteSeconds
Seconds in a minute.
static constexpr double DaySeconds
Seconds in a day.
constexpr std::string_view getSymbol(Unit unit)
static constexpr double YearDays
Days in one year (following the Gregorian calendar and the C++ convention) = 365.2425 days (= 146097 ...
string formatValue(real64 value, Unit unit)
Format the specified value coherently with the specified unit.
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.
double real64
64-bit floating point type.
std::int32_t integer
Signed integer type.
std::string_view string_view
String type.