How to input a value that has a unit as "per something"?

69 Views Asked by At

Okay, so my question is if I have a value such as 0.9 micromolar-1.sec-1. How should I enter this value in the code.

Which one is the correct one?

v = 0.9e-6

or

v = 0.9e6
1

There are 1 best solutions below

0
On BEST ANSWER

If your unit is molar, then you should use the first one v = 0.9e-6as it is 0.9*10^(-6) molars.

The second option, however, is 0.9 millions of the unit. However, this is a basic question not very related to the program but about the units you are using.