/**
* Copyright (C) 2019 Adrien Hopkins
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see
* For example, to get a unit representing the degree Celsius, the following * code can be used: * * {@code Unit.fromConversionFunctions(SI.KELVIN, tempK -> tempK - 273.15, tempC -> tempC + 273.15);} *
* * @param base unit's base * @param converterFrom function that accepts a value expressed in the unit's * base and returns that value expressed in this unit. * @param converterTo function that accepts a value expressed in the unit * and returns that value expressed in the unit's base. * @return a unit that uses the provided functions to convert. * @since 2019-05-22 * @throws NullPointerException if any argument is null */ public static final Unit fromConversionFunctions( final ObjectProduct* For example, to get a unit representing the degree Celsius, the following * code can be used: * * {@code Unit.fromConversionFunctions(SI.KELVIN, tempK -> tempK - 273.15, tempC -> tempC + 273.15);} *
* * @param base unit's base * @param converterFrom function that accepts a value expressed in the unit's * base and returns that value expressed in this unit. * @param converterTo function that accepts a value expressed in the unit * and returns that value expressed in the unit's base. * @param ns names and symbol of unit * @return a unit that uses the provided functions to convert. * @since 2019-05-22 * @throws NullPointerException if any argument is null */ public static final Unit fromConversionFunctions( final ObjectProduct* This must be the inverse of {@code convertToBase}, so * {@code convertFromBase(convertToBase(value))} must be equal to * {@code value} for any value, ignoring precision loss by roundoff error. *
** If this unit is a base unit, this method should return * {@code value}. *
* * @implSpec This method is used by {@link #convertTo}, and its behaviour * affects the behaviour of {@code convertTo}. * * @param value value expressed in base unit * @return value expressed in this unit * @since 2018-12-22 * @since v0.1.0 */ protected abstract double convertFromBase(double value); /** * Converts a value expressed in this unit to a value expressed in * {@code other}. * * @implSpec If unit conversion is possible, this implementation returns * {@code other.convertFromBase(this.convertToBase(value))}. * Therefore, overriding either of those methods will change the * output of this method. * * @param other unit to convert to * @param value value to convert * @return converted value * @since 2019-05-22 * @throws IllegalArgumentException if {@code other} is incompatible for * conversion with this unit (as tested by * {@link Unit#canConvertTo}). * @throws NullPointerException if other is null */ public final double convertTo(final Unit other, final double value) { Objects.requireNonNull(other, "other must not be null."); if (this.canConvertTo(other)) return other.convertFromBase(this.convertToBase(value)); else throw new IllegalArgumentException( String.format("Cannot convert from %s to %s.", this, other)); } /** * Converts from a value expressed in this unit to a value expressed in this * unit's base unit. ** This must be the inverse of {@code convertFromBase}, so * {@code convertToBase(convertFromBase(value))} must be equal to * {@code value} for any value, ignoring precision loss by roundoff error. *
** If this unit is a base unit, this method should return * {@code value}. *
* * @implSpec This method is used by {@link #convertTo}, and its behaviour * affects the behaviour of {@code convertTo}. * * @param value value expressed in this unit * @return value expressed in base unit * @since 2018-12-22 * @since v0.1.0 */ protected abstract double convertToBase(double value); /** * @return combination of units that this unit is based on * @since 2018-12-22 * @since v0.1.0 */ public final ObjectProduct* "Metric" is defined by three conditions: *
* Note that this definition excludes some units that many would consider * "metric", such as the degree Celsius (fails the first condition), * calories, minutes and hours (fail the third condition). *
* All SI units (as designated by the BIPM) except the degree Celsius are * considered "metric" by this definition. * * @return true iff this unit is metric. * * @since 2020-08-27 */ public final boolean isMetric() { // first condition - check that it is a linear unit if (!(this instanceof LinearUnit)) return false; final LinearUnit linear = (LinearUnit) this; // second condition - check that for (final BaseUnit b : linear.getBase().getBaseSet()) { if (!Metric.BaseUnits.BASE_UNITS.contains(b)) return false; } // third condition - check that conversion factor is a power of 10 return DecimalComparison .equals(Math.log10(linear.getConversionFactor()) % 1.0, 0); } /** * @return a string representing this unit's definition * @since 2022-03-10 */ public String toDefinitionString() { if (!this.unitBase.getNameSymbol().isEmpty()) return "derived from " + this.unitBase.getName(); else return "derived from " + this.getBase().toString(BaseUnit::getShortName); } /** * @return a string containing both this unit's name and its definition * @since 2022-03-10 */ public final String toFullString() { return this.toString() + " (" + this.toDefinitionString() + ")"; } @Override public String toString() { if (this.nameSymbol.getPrimaryName().isPresent() && this.nameSymbol.getSymbol().isPresent()) return this.nameSymbol.getPrimaryName().orElseThrow() + " (" + this.nameSymbol.getSymbol().orElseThrow() + ")"; else return this.getName(); } /** * @param ns name(s) and symbol to use * @return a copy of this unit with provided name(s) and symbol * @since 2019-10-21 * @throws NullPointerException if ns is null */ public Unit withName(final NameSymbol ns) { return fromConversionFunctions(this.getBase(), this::convertFromBase, this::convertToBase, Objects.requireNonNull(ns, "ns must not be null.")); } }