FunctionUnitBase#
- class astropy.units.FunctionUnitBase(physical_unit=None, function_unit=None)[source]#
 Bases:
objectAbstract base class for function units.
Function units are functions containing a physical unit, such as dB(mW). Most of the arithmetic operations on function units are defined in this base class.
While instantiation is defined, this class should not be used directly. Rather, subclasses should be used that override the abstract properties
_default_function_unitand_quantity_class, and the abstract methodsfrom_physical, andto_physical.- Parameters:
 
Attributes Summary
Copy the current function unit with the physical unit in CGS.
List of equivalencies between function and physical units.
Return the physical type of the physical unit (e.g., 'length').
Copy the current function unit with the physical unit in SI.
Methods Summary
decompose([bases])Copy the current unit with the physical unit decomposed.
Transformation from value in physical to value in function units.
is_equivalent(other[, equivalencies])Returns
Trueif this unit is equivalent toother.is_unity()to(other[, value, equivalencies])Return the converted values in the specified unit.
to_physical(x)Transformation from value in function to value in physical units.
to_string([format])Output the unit in the given format as a string.
Attributes Documentation
- cgs#
 Copy the current function unit with the physical unit in CGS.
- equivalencies#
 List of equivalencies between function and physical units.
Uses the
from_physicalandto_physicalmethods.
- function_unit#
 
- physical_type#
 Return the physical type of the physical unit (e.g., ‘length’).
- physical_unit#
 
- si#
 Copy the current function unit with the physical unit in SI.
Methods Documentation
- decompose(bases={})[source]#
 Copy the current unit with the physical unit decomposed.
For details, see
decompose.
- abstract from_physical(x)[source]#
 Transformation from value in physical to value in function units.
This method should be overridden by subclasses. It is used to provide automatic transformations using an equivalency.
- is_equivalent(other, equivalencies=[])[source]#
 Returns
Trueif this unit is equivalent toother.- Parameters:
 - other
Unit,python:str, orpython:tuple The unit to convert to. If a tuple of units is specified, this method returns true if the unit matches any of those in the tuple.
- equivalencies
python:listofpython:tuple A list of equivalence pairs to try if the units are not directly convertible. See Equivalencies. This list is in addition to the built-in equivalencies between the function unit and the physical one, as well as possible global defaults set by, e.g.,
set_enabled_equivalencies. UseNoneto turn off any global equivalencies.
- other
 - Returns:
 - bool
 
- to(other, value=1.0, equivalencies=[])[source]#
 Return the converted values in the specified unit.
- Parameters:
 - other
Unit,FunctionUnitBase, orpython:str The unit to convert to.
- value
python:int,python:float, or scalar numpy:array_like, optional Value(s) in the current unit to be converted to the specified unit. If not provided, defaults to 1.0.
- equivalencies
python:listofpython:tuple A list of equivalence pairs to try if the units are not directly convertible. See Equivalencies. This list is in meant to treat only equivalencies between different physical units; the built-in equivalency between the function unit and the physical one is automatically taken into account.
- other
 - Returns:
 - valuesscalar or 
array Converted value(s). Input value sequences are returned as numpy arrays.
- valuesscalar or 
 - Raises:
 UnitsErrorIf units are inconsistent.
- abstract to_physical(x)[source]#
 Transformation from value in function to value in physical units.
This method should be overridden by subclasses. It is used to provide automatic transformations using an equivalency.
- to_string(format='generic', **kwargs)[source]#
 Output the unit in the given format as a string.
The physical unit is appended, within parentheses, to the function unit, as in “dB(mW)”, with both units set using the given format
- Parameters:
 - format
astropy.units.format.Basesubclass orpython:str The name of a format or a formatter class. If not provided, defaults to the generic format.
- format