-
Notifications
You must be signed in to change notification settings - Fork 404
Description
"Problem"
Now we have to do for every possible combination write out all combinations and formulas and tests. For example in speeds. You have written out many combinations, but I think this is not necessary!
When we have ft/s to km/h, we do ft/s to m/s and then to km/h and do this for all combinations (and that are a lot). So write out all PluralNames and all formulas to and from the base unit.
But we know that m/s is the base and we can calculate from length m to all other length and can do this also for the second unit seconds in duration.
Solution
So can we better delete all options in speed and calculate this automaticly based on the base units/ dimensions?
Again with the example ft/s to km/h, we first calculate from ft to km in Length and than use this calculated outcome to convert s to h and then we also have the answer. And we don't have witten out all combination in speeds, because we have this also combined in length and duration.
Your opinion
I know this is a big change, but I think it's more robust and reduces the combinations to write (out).
What are your thought on this?
P.s. I haven't thought about implementation details, first I want to know if you allready thought about this or had give this a (failed) try!