1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
|
// Code generated by "go generate gonum.org/v1/gonum/unit/constant”; DO NOT EDIT.
// Copyright ©2019 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 constant
import (
"fmt"
"gonum.org/v1/gonum/unit"
)
// MagneticConstant is the magnetic constant (μ₀), the magnetic permeability in a classical vacuum.
// The dimensions of MagneticConstant are A^2 s^4 kg^-1 m^-3. The standard uncertainty of the constant is 1.9e-16 A^2 s^4 kg^-1 m^-3.
const MagneticConstant = magneticConstantUnits(1.2566370621238374e-06)
type magneticConstantUnits float64
// Unit converts the magneticConstantUnits to a *unit.Unit
func (cnst magneticConstantUnits) Unit() *unit.Unit {
return unit.New(float64(cnst), unit.Dimensions{
unit.CurrentDim: 2,
unit.TimeDim: 4,
unit.MassDim: -1,
unit.LengthDim: -3,
})
}
func (cnst magneticConstantUnits) Format(fs fmt.State, c rune) {
switch c {
case 'v':
if fs.Flag('#') {
fmt.Fprintf(fs, "%T(%v)", cnst, float64(cnst))
return
}
fallthrough
case 'e', 'E', 'f', 'F', 'g', 'G':
p, pOk := fs.Precision()
w, wOk := fs.Width()
switch {
case pOk && wOk:
fmt.Fprintf(fs, "%*.*"+string(c), w, p, cnst.Unit())
case pOk:
fmt.Fprintf(fs, "%.*"+string(c), p, cnst.Unit())
case wOk:
fmt.Fprintf(fs, "%*"+string(c), w, cnst.Unit())
default:
fmt.Fprintf(fs, "%"+string(c), cnst.Unit())
}
default:
fmt.Fprintf(fs, "%%!"+string(c)+"(constant.magneticConstantUnits=%v A^2 s^4 kg^-1 m^-3)", float64(cnst))
}
}
|