fix bug in factor for Pa in units system

This commit is contained in:
wmayer
2016-08-05 13:57:27 +02:00
parent 1eca045744
commit 7979ec275b
2 changed files with 2 additions and 2 deletions

View File

@@ -125,7 +125,7 @@ QString UnitsSchemaMKS::schemaTranslate(const Quantity &quant, double &factor, Q
}
else { // bigger then 1000 GPa -> scientific notation
unitString = QString::fromLatin1("Pa");
factor = 1.0;
factor = 0.001;
}
}
else if (unit == Unit::ThermalConductivity) {