summaryrefslogtreecommitdiffstats
path: root/src/lib/netlist/plib/pfunction.cpp
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2022-06-11 00:23:32 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2022-06-11 00:23:32 +1000
commitc1722c05df9623da087b9236eb7d501c00b83205 (patch)
treefd282485e230789be4d4f545a6debd43a7e2985a /src/lib/netlist/plib/pfunction.cpp
parentbcc5a4baa051e1ca5da99c6269abe37f945df3d7 (diff)
parent1f3f5e0d574e256bc106ee4bc9ee701858585ca3 (diff)
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'src/lib/netlist/plib/pfunction.cpp')
-rw-r--r--src/lib/netlist/plib/pfunction.cpp14
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;
}