gonum.org/v1/gonum@v0.14.0/unit/magneticfluxdensity.go (about)

     1  // Code generated by "go generate gonum.org/v1/gonum/unit”; DO NOT EDIT.
     2  
     3  // Copyright ©2014 The Gonum Authors. All rights reserved.
     4  // Use of this source code is governed by a BSD-style
     5  // license that can be found in the LICENSE file.
     6  
     7  package unit
     8  
     9  import (
    10  	"errors"
    11  	"fmt"
    12  	"math"
    13  	"unicode/utf8"
    14  )
    15  
    16  // MagneticFluxDensity represents a magnetic flux density in Tesla.
    17  type MagneticFluxDensity float64
    18  
    19  const Tesla MagneticFluxDensity = 1
    20  
    21  // Unit converts the MagneticFluxDensity to a *Unit.
    22  func (m MagneticFluxDensity) Unit() *Unit {
    23  	return New(float64(m), Dimensions{
    24  		CurrentDim: -1,
    25  		MassDim:    1,
    26  		TimeDim:    -2,
    27  	})
    28  }
    29  
    30  // MagneticFluxDensity allows MagneticFluxDensity to implement a MagneticFluxDensityer interface.
    31  func (m MagneticFluxDensity) MagneticFluxDensity() MagneticFluxDensity {
    32  	return m
    33  }
    34  
    35  // From converts the unit into the receiver. From returns an
    36  // error if there is a mismatch in dimension.
    37  func (m *MagneticFluxDensity) From(u Uniter) error {
    38  	if !DimensionsMatch(u, Tesla) {
    39  		*m = MagneticFluxDensity(math.NaN())
    40  		return errors.New("unit: dimension mismatch")
    41  	}
    42  	*m = MagneticFluxDensity(u.Unit().Value())
    43  	return nil
    44  }
    45  
    46  func (m MagneticFluxDensity) Format(fs fmt.State, c rune) {
    47  	switch c {
    48  	case 'v':
    49  		if fs.Flag('#') {
    50  			fmt.Fprintf(fs, "%T(%v)", m, float64(m))
    51  			return
    52  		}
    53  		fallthrough
    54  	case 'e', 'E', 'f', 'F', 'g', 'G':
    55  		p, pOk := fs.Precision()
    56  		w, wOk := fs.Width()
    57  		const unit = " T"
    58  		switch {
    59  		case pOk && wOk:
    60  			fmt.Fprintf(fs, "%*.*"+string(c), pos(w-utf8.RuneCount([]byte(unit))), p, float64(m))
    61  		case pOk:
    62  			fmt.Fprintf(fs, "%.*"+string(c), p, float64(m))
    63  		case wOk:
    64  			fmt.Fprintf(fs, "%*"+string(c), pos(w-utf8.RuneCount([]byte(unit))), float64(m))
    65  		default:
    66  			fmt.Fprintf(fs, "%"+string(c), float64(m))
    67  		}
    68  		fmt.Fprint(fs, unit)
    69  	default:
    70  		fmt.Fprintf(fs, "%%!%c(%T=%g T)", c, m, float64(m))
    71  	}
    72  }