In tokamak plasma physics, scaling laws are often used to estimate plasma performance. These often require non-standard units, in particular, plasma density n in units of 10^19 or 10^20 particles per cubic meter, often called n19 and n20, respectively. (Nobody calls these 10 or 100 exa-particles-per-cubic-meter.) At the same time, many physics formulae call for these values in the "standard" m^-3.
I can imagine an OpenMDAO ScalingLaw component taking in an input with units=m**-3
(and probably ref=1e19
for numerical ease), and then manually dividing by 1e19 to get an n19.
Is there a 'better' way to handle this scale conversion automatically?
It sounds like the appropriate approach here might just be to add new units to OpenMDAO's unit library. This would make the conversion automatic as the data is passed around.
For instance, in astrodynamics we sometimes invent "canonical" units in which the distance unit is set to some specified value (like the Earth's radius), the gravitational parameter GM is assumed to be 1, and time units fall out of this. In OpenMDAO, the Distance Units (DU) can be set using the following code somewhere in your script before you start defining inputs and outputs:
You can verify the functionality by adding the units and then using the OpenMDAO convert_units function to test them:
which outputs
Once those units are added to the system, you can specify
units='n19'
orunits='n20'
when you add inputs or outputs.