Adding custom units? #245
-
Is it possible to add custom units to fend? For instance, in engineering in the US, mass units are "slugs" and "snails" where a "slug" is a mass which weighs 32.174 lbs and a "snail" is a mass which weighs 386.088 lbs. They are used in the ft-lb-sec and in-lb-sec unit systems, respectively. |
Beta Was this translation helpful? Give feedback.
Answered by
printfn
Nov 11, 2023
Replies: 1 comment
-
I've now implemented support for custom units in fend v1.3.2. For example, you could put the following in your configuration file: [[custom-units]]
singular = 'slug'
plural = 'slugs'
definition = '32.174 lbs'
[[custom-units]]
singular = 'snail'
plural = 'snails'
definition = '386.088 lbs' |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
printfn
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I've now implemented support for custom units in fend v1.3.2.
For example, you could put the following in your configuration file: