In our app, we currently live with the legacy of a decision to store all engineering data in our database in SI.
I worry that we may run the risk of not having sufficient precision and accuracy in our database or in .NET numeric types. I am also worried that we may see artifacts of floating-point maths (although that is probably a question all to itself).
For example, the source data may have been a pressure quantity expressed (and read in from some 3rd party service) in Psi (pounds per square inch). The engineers will have chosen this unit of measure because (for the quantity being expressed) this will tend to give easily-digested, human-readable numbers without requiring scientific notation.
When we 'standardise' the number, i.e. when we convert this quantity for our own persistence, we might convert it to Pa (Pascals) which will require either multiplying or dividing the number by some other potentially large number.
We often end up storing very large or very small numbers, and worse - we might do further calculations on these numbers.
At present we use ORACLE float and System.Double.
What do people think of this?
UPDATE
Further research has unearthed Units of Measure support in the forthcoming F# language (in CTP as I write).
It seems we'll be able to have F# understand user input such as:
9.81<n/s^2> // an acceleration
We'll also be able to create our own derived units and unit systems.
![]()
