-
Notifications
You must be signed in to change notification settings - Fork 400
Adding BaseUnits for a handful of quantities #625
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
{ | ||
"Name": "Force", | ||
"BaseUnit": "Newton", | ||
"XmlDoc": "In physics, a force is any influence that causes an object to undergo a certain change, either concerning its movement, direction, or geometrical construction. In other words, a force can cause an object with mass to change its velocity (which includes to begin moving from a state of rest), i.e., to accelerate, or a flexible object to deform, or both. Force can also be described by intuitive concepts such as a push or a pull. A force has both magnitude and direction, making it a vector quantity. It is measured in the SI unit of newtons and represented by the symbol F.", | ||
|
@@ -11,6 +11,11 @@ | |
{ | ||
"SingularName": "Dyn", | ||
"PluralName": "Dyne", | ||
"BaseUnits": { | ||
"L": "Centimeter", | ||
"M": "Gram", | ||
"T": "Second" | ||
}, | ||
"FromUnitToBaseFunc": "x/1e5", | ||
"FromBaseToUnitFunc": "x*1e5", | ||
"Localization": [ | ||
|
@@ -59,6 +64,11 @@ | |
{ | ||
"SingularName": "Newton", | ||
"PluralName": "Newtons", | ||
"BaseUnits": { | ||
"L": "Meter", | ||
"M": "Kilogram", | ||
"T": "Second" | ||
}, | ||
"FromUnitToBaseFunc": "x", | ||
"FromBaseToUnitFunc": "x", | ||
"Prefixes": [ "Micro", "Milli", "Deca", "Kilo", "Mega" ], | ||
|
@@ -93,6 +103,11 @@ | |
{ | ||
"SingularName": "Poundal", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see there is a notion of foot-pound-second system and centimeter-gram-second system (CGS / Gauss). There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Indeed there is. CGS, FPS, MKS |
||
"PluralName": "Poundals", | ||
"BaseUnits": { | ||
"L": "Foot", | ||
"M": "Pound", | ||
"T": "Second" | ||
}, | ||
"FromUnitToBaseFunc": "x*0.13825502798973041652092282466083", | ||
"FromBaseToUnitFunc": "x/0.13825502798973041652092282466083", | ||
"Localization": [ | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Where do you look up these facts? I have no prior reference. Do you google each you are unsure about or do you have a goto-source? I found this one on wiki.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here's one for dyne:
Or try this:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks