-
Notifications
You must be signed in to change notification settings - Fork 56
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
add missing quantities #30
base: develop
Are you sure you want to change the base?
Conversation
Hello, I would like to contribute code that I developed during many years to make Boost.Units usable for my applications. Including an atomic units system. The code can be found here https://gitlab.com/correaa/boost-units, it is made to coexists with a current installation of boost. |
@correaa It seems that I have no permission to view your repo. |
Thanks EK, sorry about that. I fixed that now, would you like to take a
look again? Just to have some feedback if this is something that the
Boost.Units maintainer would in principle be interested in.
…On Fri, Jul 27, 2018 at 11:36 AM E Kawashima ***@***.***> wrote:
@correaa <https://github.com/correaa> It seems that I have no permission
to view your repo.
Anyway you can create new PR.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#30 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AC6BU0dqWo5sIf5dym2ujcYX3tMd6ZCHks5uK12_gaJpZM4Van1q>
.
|
I am not a developer of this library, just a user. But I appreciate that you implemented atomic unit system. Here are brief comments:
|
On Sat, Jul 28, 2018 at 11:40 AM E Kawashima ***@***.***> wrote:
I am not a developer of this library, just a user. But I appreciate that
you implemented atomic unit system.
Thank you for the feedback EK. I will try to contact the current maintainer.
Ideally I would have send all this as a github issue but I couldn't find
how to submit issues here.
Here are brief comments:
- systems/au/si_conversion.hpp: some of converting factors are
different from (older than?) 2014 CODATA recommended values; how about
using include/boost/units/systems/si/codata/? (#29
<#29>)
Yes, that is in the plan (I have comments referring to the codata value
that should be used instead).
for example I have to pull
`boost::units::si::constants::codata::m_e.value().value()`. The
`value().value()` is funny though.
I was hoping I find a way to do it automatically without coding one by one.
Anyway, I now implemented all the conversions between au and si in terms of
codata information from the other parts of the library.
Still not sure if `systems/au/si_conversion.hpp` is the best place to put
these conversion.
- underscore + ALPHABET (e.g. _TEST_BOOST_UNITS_AU) should be avoided
(N4762 5.10)
Each identifier that contains a double underscore __ or begins with an
underscore followed by an
uppercase letter is reserved to the implementation for any use.
This code will disappear when I put the test in a separate directory.
It is now removed from `systems/au/si_conversion.hpp` for example.
-
- Spaces should be used for indent (
https://www.boost.org/development/requirements.html#Tabs)
Yes, I guess I will do a search an replace for 4 (?) spaces per tab
before submitting each file.
Thank you for the feedback.
Alfredo
…
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#30 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/ACMfYKRx4Wa65SF4NdOwd4n0vLH2PoW2ks5uLLA1gaJpZM4Van1q>
.
|
I'd like you to change the copyright header. Even if they are copied and changed, new files should get new copyright. |
What should I modify? Just add my name? |
Sorry, is the request for a copyright header for me (Alfredo Correa) or for
E. Kawashima? (these are potentially two separate contributions).
…On Mon, Sep 17, 2018 at 7:08 PM E Kawashima ***@***.***> wrote:
I'd like you to change the copyright header. Even if they are copied and
changed, new files should get new copyright.
What should I modify? Just add my name?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#30 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AC6BU9iftJQPwVE6fYK_a3-pBGvpOnjyks5ucFWdgaJpZM4Van1q>
.
|
I thought about this MR, but this applies to upcoming ones, too
For changing the CODATA constants the latter applies. The constants are public domain after all. This allows a quick check of who added which constant when without heavy usage of |
- energy_density - heat_capacity - luminance - molar_energy - molar_heat_capacity - specific_energy - specific_heat_capacity - specific_volume - stress - thermal_conductivity
0d28f02
to
b6845b1
Compare
I updated the copyright. |
Enable something like
boost::units::quantity<boost::units::si::specific_heat_capacity> c = 4.2e3 * boost::units::si::joule / boost::units::si::kelvin / boost::units::si::kilogram;