mirror of
https://github.com/gonum/gonum.git
synced 2025-10-06 07:37:03 +08:00
93 lines
2.3 KiB
Go
93 lines
2.3 KiB
Go
// Code generated by "go generate gonum.org/v1/gonum/unit”; DO NOT EDIT.
|
|
|
|
// Copyright ©2014 The Gonum Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package unit
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"math"
|
|
"unicode/utf8"
|
|
)
|
|
|
|
// Temperature represents a temperature in Kelvin.
|
|
type Temperature float64
|
|
|
|
const (
|
|
Yottakelvin Temperature = 1e24
|
|
Zettakelvin Temperature = 1e21
|
|
Exakelvin Temperature = 1e18
|
|
Petakelvin Temperature = 1e15
|
|
Terakelvin Temperature = 1e12
|
|
Gigakelvin Temperature = 1e9
|
|
Megakelvin Temperature = 1e6
|
|
Kilokelvin Temperature = 1e3
|
|
Hectokelvin Temperature = 1e2
|
|
Decakelvin Temperature = 1e1
|
|
Kelvin Temperature = 1.0
|
|
Decikelvin Temperature = 1e-1
|
|
Centikelvin Temperature = 1e-2
|
|
Millikelvin Temperature = 1e-3
|
|
Microkelvin Temperature = 1e-6
|
|
Nanokelvin Temperature = 1e-9
|
|
Picokelvin Temperature = 1e-12
|
|
Femtokelvin Temperature = 1e-15
|
|
Attokelvin Temperature = 1e-18
|
|
Zeptokelvin Temperature = 1e-21
|
|
Yoctokelvin Temperature = 1e-24
|
|
)
|
|
|
|
// Unit converts the Temperature to a *Unit
|
|
func (t Temperature) Unit() *Unit {
|
|
return New(float64(t), Dimensions{
|
|
TemperatureDim: 1,
|
|
})
|
|
}
|
|
|
|
// Temperature allows Temperature to implement a Temperaturer interface
|
|
func (t Temperature) Temperature() Temperature {
|
|
return t
|
|
}
|
|
|
|
// From converts the unit into the receiver. From returns an
|
|
// error if there is a mismatch in dimension
|
|
func (t *Temperature) From(u Uniter) error {
|
|
if !DimensionsMatch(u, Kelvin) {
|
|
*t = Temperature(math.NaN())
|
|
return errors.New("Dimension mismatch")
|
|
}
|
|
*t = Temperature(u.Unit().Value())
|
|
return nil
|
|
}
|
|
|
|
func (t Temperature) Format(fs fmt.State, c rune) {
|
|
switch c {
|
|
case 'v':
|
|
if fs.Flag('#') {
|
|
fmt.Fprintf(fs, "%T(%v)", t, float64(t))
|
|
return
|
|
}
|
|
fallthrough
|
|
case 'e', 'E', 'f', 'F', 'g', 'G':
|
|
p, pOk := fs.Precision()
|
|
w, wOk := fs.Width()
|
|
const unit = " K"
|
|
switch {
|
|
case pOk && wOk:
|
|
fmt.Fprintf(fs, "%*.*"+string(c), pos(w-utf8.RuneCount([]byte(unit))), p, float64(t))
|
|
case pOk:
|
|
fmt.Fprintf(fs, "%.*"+string(c), p, float64(t))
|
|
case wOk:
|
|
fmt.Fprintf(fs, "%*"+string(c), pos(w-utf8.RuneCount([]byte(unit))), float64(t))
|
|
default:
|
|
fmt.Fprintf(fs, "%"+string(c), float64(t))
|
|
}
|
|
fmt.Fprint(fs, unit)
|
|
default:
|
|
fmt.Fprintf(fs, "%%!%c(%T=%g K)", c, t, float64(t))
|
|
}
|
|
}
|