mirror of
https://github.com/mpusz/mp-units.git
synced 2026-07-05 08:01:01 +02:00
b76b903e34
* fix: correct sidereal_day constant in astronomy.h (issue #786) Agent-Logs-Url: https://github.com/mpusz/mp-units/sessions/80776de1-96d9-40da-ab02-767a215efba3 Co-authored-by: mpusz <506260+mpusz@users.noreply.github.com> * style: fix non-standard C++ digit separators in astronomy.h Agent-Logs-Url: https://github.com/mpusz/mp-units/sessions/d6c3365e-2620-4422-87dd-11d537ebe76e Co-authored-by: mpusz <506260+mpusz@users.noreply.github.com> * Update astronomy_test.cpp content * Restoring empty line separators * Fix formatting in astronomy_test.cpp * Refactor static assertions in astronomy_test.cpp Updated static assertions for time and length units in astronomy tests. * Fix static_assert syntax in astronomy_test.cpp * Fix static_assert statements in astronomy_test.cpp --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: mpusz <506260+mpusz@users.noreply.github.com> Co-authored-by: Mateusz Pusz <mateusz.pusz@gmail.com>
55 lines
2.1 KiB
C++
55 lines
2.1 KiB
C++
// The MIT License (MIT)
|
|
//
|
|
// Copyright (c) 2018 Mateusz Pusz
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
// copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
// SOFTWARE.
|
|
|
|
#include "test_tools.h"
|
|
#include <mp-units/systems/astronomy.h>
|
|
#include <mp-units/systems/si.h>
|
|
|
|
namespace {
|
|
|
|
using namespace mp_units;
|
|
using namespace mp_units::astronomy::unit_symbols;
|
|
using namespace mp_units::si::unit_symbols;
|
|
using mp_units::astronomy::unit_symbols::a;
|
|
|
|
// time units
|
|
static_assert(1 * D == 86'400 * s);
|
|
static_assert(10'000 * D_sid == 861'640'905 * s);
|
|
static_assert(100 * a == 36525 * D);
|
|
static_assert(1 * a == 31'557'600 * s);
|
|
static_assert(approx_equal(1. * a_trop, 365.242189 * D));
|
|
static_assert(1 * c == 100 * a);
|
|
static_assert(1 * ka == 1000 * a);
|
|
|
|
// length units
|
|
static_assert(1 * LD == 384'399 * km);
|
|
static_assert(1 * ly == 9'460'730'472'580'800 * m);
|
|
|
|
// spectral flux density
|
|
static_assert(approx_equal(1. * Jy, 1e-26 * W / m2 / Hz));
|
|
|
|
// legacy constants
|
|
static_assert(approx_equal(1. * k, 1'720'209'895. / 100'000'000'000. * pow<3, 2>(iau::astronomical_unit) /
|
|
pow<1, 2>(iau::solar_mass) / D));
|
|
|
|
} // namespace
|