diff options
Diffstat (limited to 'src/lib/netlist/plib/pfunction.cpp')
-rw-r--r-- | src/lib/netlist/plib/pfunction.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/netlist/plib/pfunction.cpp b/src/lib/netlist/plib/pfunction.cpp index 6d295f48a73..ed906a40385 100644 --- a/src/lib/netlist/plib/pfunction.cpp +++ b/src/lib/netlist/plib/pfunction.cpp @@ -78,18 +78,18 @@ namespace plib { { "G", narrow_cast<F>( 1e9) }, // NOLINT: Giga { "M", narrow_cast<F>( 1e6) }, // NOLINT: Mega { "k", narrow_cast<F>( 1e3) }, // NOLINT: Kilo - { "h", narrow_cast<F>( 1e2) }, // NOLINT: Hekto - //{ "da", narrow_cast<F>(1e1) }, // NOLINT: Deka - { "d", narrow_cast<F>(1e-1) }, // NOLINT: Dezi - { "c", narrow_cast<F>(1e-2) }, // NOLINT: Zenti + { "h", narrow_cast<F>( 1e2) }, // NOLINT: Hecto + //{ "da", narrow_cast<F>(1e1) }, // NOLINT: Deca + { "d", narrow_cast<F>(1e-1) }, // NOLINT: Deci + { "c", narrow_cast<F>(1e-2) }, // NOLINT: Centi { "m", narrow_cast<F>(1e-3) }, // NOLINT: Milli - { "μ", narrow_cast<F>(1e-6) }, // NOLINT: Mikro + { "μ", narrow_cast<F>(1e-6) }, // NOLINT: Micro { "n", narrow_cast<F>(1e-9) }, // NOLINT: Nano - { "p", narrow_cast<F>(1e-12) }, // NOLINT: Piko + { "p", narrow_cast<F>(1e-12) }, // NOLINT: Pico { "f", narrow_cast<F>(1e-15) }, // NOLINT: Femto { "a", narrow_cast<F>(1e-18) }, // NOLINT: Atto { "z", narrow_cast<F>(1e-21) }, // NOLINT: Zepto - { "y", narrow_cast<F>(1e-24) }, // NOLINT: Yokto + { "y", narrow_cast<F>(1e-24) }, // NOLINT: Yocto }; return units_si_stat; } |