KUnitConversion

KUnitConversion

Converting physical units

Introduction

KUnitConversion provides functions to convert values in different physical units. It supports converting different prefixes (e.g. kilo, mega, giga) as well as converting between different unit systems (e.g. liters, gallons). The following areas are supported:

  • Acceleration
  • Angle
  • Area
  • Binary Data
  • Currency
  • Density
  • Electrical Current
  • Electrical Resistance
  • Energy
  • Force
  • Frequency
  • Fuel Efficiency
  • Length
  • Mass
  • Permeability
  • Power
  • Pressure
  • Temperature
  • Thermal Conductivity
  • Thermal Flux
  • Thermal Generation
  • Time
  • Velocity
  • Volume
  • Voltage
  • Weight per area

Usage

To convert 100 GBP into EUR, you can write:

using namespace KUnitConversion;
Value pounds(100, Gbp);
Value eur = pounds.convertTo(Eur);
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Oct 18 2024 11:55:55 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.