sedris.h
* Unit designations for <Axis> axis_unit and <Property> value_unit
* Guidelines for extensions to SE_UNIT_ENUM:
* 1) Use SI units if at all possible.
* 2) Use scaled SI units if customary in the community.
* hectoPascal - customary in Atmospheric community
* 3) Use FACC units to be FACC compatible if necessary
* Note: Some units have been included for compatibility
* with DIGEST FACC 2.0 (e.g. SE_UNITS_HECTARES),
* but their use is not encouraged.
* 4) Model/Algorithm specific units not enumerated in this list
* are designated by SE_UNITS_CONTEXTUALLY_DETERMINED
* The actual units match the model/algorithm external documentation.
SE_UNITS_AMPERE, /* Electric Current */
SE_UNITS_VOLT, /* Electric Potential (W/A) */
SE_UNITS_VOLTS_PER_METER, /* Electric Field Strength (m*Kg/(A*s^3)) */
SE_UNITS_WATT, /* Power (J/S or m^2*Kg/s^3) */
SE_UNITS_WATTS_PER_METER_KELVIN, /* Thermal Conductivity (m*Kg/(K*s^3)) */
SE_UNITS_WATTS_PER_SQUARE_CM_SECOND,
SE_UNITS_WATTS_PER_SQUARE_METER ,/* Irradiance (Heat Flux Density; W/m^2) */
SE_UNITS_WATTS_PER_SQUARE_METER_STERADIAN, /* Radiance */
SE_UNITS_WATTS_PER_STERADIAN, /* Radiant Intensity */
SE_UNITS_WEBER, /* Magnetic Flux (V*S) */
SE_UNITS_YEAR /* Time (~365.25 Days) */
- Document your code, make it obvious
- Use declared constants
- Header provides declarations and documentation
- Use them!