Пример #1
0
def test_mercury_inferior_conjunction():
    """Tests the inferior_conjunction() method of Mercury class"""

    epoch = Epoch(1993, 10, 1.0)
    conjunction = Mercury.inferior_conjunction(epoch)
    y, m, d = conjunction.get_date()

    assert abs(round(y, 0) - 1993) < TOL, \
        "ERROR: 1st inferior_conjunction() test doesn't match"

    assert abs(round(m, 0) - 11) < TOL, \
        "ERROR: 2nd inferior_conjunction() test doesn't match"

    assert abs(round(d, 4) - 6.1449) < TOL, \
        "ERROR: 3rd inferior_conjunction() test doesn't match"

    epoch = Epoch(1631, 10, 1.0)
    conjunction = Mercury.inferior_conjunction(epoch)
    y, m, d = conjunction.get_date()

    assert abs(round(y, 0) - 1631) < TOL, \
        "ERROR: 4th inferior_conjunction() test doesn't match"

    assert abs(round(m, 0) - 11) < TOL, \
        "ERROR: 5th inferior_conjunction() test doesn't match"

    assert abs(round(d, 3) - 7.306) < TOL, \
        "ERROR: 6th inferior_conjunction() test doesn't match"
Пример #2
0
def test_mercury_perihelion_aphelion():
    """Tests the perihelion_aphelion() method of Mercury class"""

    epoch = Epoch(2000, 1, 1.0)
    e = Mercury.perihelion_aphelion(epoch)
    y, m, d, h, mi, s = e.get_full_date()

    assert abs(y - 2000) < TOL, \
        "ERROR: 1st perihelion_aphelion() test doesn't match"

    assert abs(m - 2) < TOL, \
        "ERROR: 2nd perihelion_aphelion() test doesn't match"

    assert abs(d - 15) < TOL, \
        "ERROR: 3rd perihelion_aphelion() test doesn't match"

    assert abs(h - 18) < TOL, \
        "ERROR: 4th perihelion_aphelion() test doesn't match"

    epoch = Epoch(2000, 3, 1.0)
    e = Mercury.perihelion_aphelion(epoch, perihelion=False)
    y, m, d, h, mi, s = e.get_full_date()

    assert abs(y - 2000) < TOL, \
        "ERROR: 5th perihelion_aphelion() test doesn't match"

    assert abs(m - 3) < TOL, \
        "ERROR: 6th perihelion_aphelion() test doesn't match"

    assert abs(d - 30) < TOL, \
        "ERROR: 7th perihelion_aphelion() test doesn't match"

    assert abs(h - 17) < TOL, \
        "ERROR: 8th perihelion_aphelion() test doesn't match"
Пример #3
0
def test_mercury_geocentric_position():
    """Tests the geocentric_position() method of Mercury class"""

    epoch = Epoch(1992, 12, 20.0)
    ra, dec, elon = Mercury.geocentric_position(epoch)

    assert ra.ra_str(n_dec=1) == "16h 33' 59.3''", \
        "ERROR: 1st geocentric_position() test doesn't match"

    assert dec.dms_str(n_dec=1) == "-20d 53' 31.6''", \
        "ERROR: 2nd geocentric_position() test doesn't match"

    assert elon.dms_str(n_dec=1) == "18d 24' 29.8''", \
        "ERROR: 3rd geocentric_position() test doesn't match"
Пример #4
0
def test_mercury_geometric_heliocentric_position():
    """Tests the geometric_heliocentric_position() method of Mercury class"""

    epoch = Epoch(2018, 10, 27.0)
    lon, lat, r = Mercury.geometric_heliocentric_position(epoch)

    assert abs(round(lon.to_positive(), 4) - 287.4887) < TOL, \
        "ERROR: 1st geometric_heliocentric_position() test doesn't match"

    assert abs(round(lat, 4) - (-6.0086)) < TOL, \
        "ERROR: 2nd geometric_heliocentric_position() test doesn't match"

    assert abs(round(r, 5) - 0.45113) < TOL, \
        "ERROR: 3rd geometric_heliocentric_position() test doesn't match"
Пример #5
0
def test_mercury_station_longitude_2():
    """Tests the station_longitude_2() method of Mercury class"""

    epoch = Epoch(1993, 10, 1.0)
    sta2 = Mercury.station_longitude_2(epoch)
    y, m, d = sta2.get_date()

    assert abs(round(y, 0) - 1993) < TOL, \
        "ERROR: 1st station_longitude_2() test doesn't match"

    assert abs(round(m, 0) - 11) < TOL, \
        "ERROR: 2nd station_longitude_2() test doesn't match"

    assert abs(round(d, 4) - 15.0724) < TOL, \
        "ERROR: 3rd station_longitude_2() test doesn't match"
Пример #6
0
def test_mercury_superior_conjunction():
    """Tests the superior_conjunction() method of Mercury class"""

    epoch = Epoch(1993, 10, 1.0)
    conjunction = Mercury.superior_conjunction(epoch)
    y, m, d = conjunction.get_date()

    assert abs(round(y, 0) - 1993) < TOL, \
        "ERROR: 1st superior_conjunction() test doesn't match"

    assert abs(round(m, 0) - 8) < TOL, \
        "ERROR: 2nd superior_conjunction() test doesn't match"

    assert abs(round(d, 4) - 29.3301) < TOL, \
        "ERROR: 3rd superior_conjunction() test doesn't match"
Пример #7
0
def test_mercury_eastern_elongation():
    """Tests the eastern_elongation() method of Mercury class"""

    epoch = Epoch(1990, 8, 1.0)
    time, elongation = Mercury.eastern_elongation(epoch)
    y, m, d = time.get_date()

    assert abs(round(y, 0) - 1990) < TOL, \
        "ERROR: 1st eastern_elongation() test doesn't match"

    assert abs(round(m, 0) - 8) < TOL, \
        "ERROR: 2nd eastern_elongation() test doesn't match"

    assert abs(round(d, 4) - 11.8514) < TOL, \
        "ERROR: 3rd eastern_elongation() test doesn't match"

    assert abs(round(elongation, 4) - 27.4201) < TOL, \
        "ERROR: 4th eastern_elongation() test doesn't match"
Пример #8
0
def test_mercury_western_elongation():
    """Tests the western_elongation() method of Mercury class"""

    epoch = Epoch(1993, 11, 1.0)
    time, elongation = Mercury.western_elongation(epoch)
    y, m, d = time.get_date()

    assert abs(round(y, 0) - 1993) < TOL, \
        "ERROR: 1st western_elongation() test doesn't match"

    assert abs(round(m, 0) - 11) < TOL, \
        "ERROR: 2nd western_elongation() test doesn't match"

    assert abs(round(d, 4) - 22.6386) < TOL, \
        "ERROR: 3rd western_elongation() test doesn't match"

    assert abs(round(elongation, 4) - 19.7506) < TOL, \
        "ERROR: 4th western_elongation() test doesn't match"
Пример #9
0
def test_mercury_passage_nodes():
    """Tests the passage_nodes() method of Mercury class"""

    epoch = Epoch(2019, 1, 1)
    time, r = Mercury.passage_nodes(epoch)
    y, m, d = time.get_date()
    d = round(d, 1)
    r = round(r, 4)

    assert abs(y - 2018) < TOL, \
        "ERROR: 1st passage_nodes() test doesn't match"

    assert abs(m - 11) < TOL, \
        "ERROR: 2nd passage_nodes() test doesn't match"

    assert abs(d - 24.7) < TOL, \
        "ERROR: 3rd passage_nodes() test doesn't match"

    assert abs(r - 0.3143) < TOL, \
        "ERROR: 4th passage_nodes() test doesn't match"
Пример #10
0
def test_mercury_orbital_elements_j2000():
    """Tests the orbital_elements_j2000() method of Mercury class"""

    epoch = Epoch(2065, 6, 24.0)
    l, a, e, i, ome, arg = Mercury.orbital_elements_j2000(epoch)

    assert abs(round(l, 6) - 202.579453) < TOL, \
        "ERROR: 1st orbital_elements_j2000() test doesn't match"

    assert abs(round(a, 8) - 0.38709831) < TOL, \
        "ERROR: 2nd orbital_elements_j2000() test doesn't match"

    assert abs(round(e, 7) - 0.2056451) < TOL, \
        "ERROR: 3rd orbital_elements_j2000() test doesn't match"

    assert abs(round(i, 6) - 7.001089) < TOL, \
        "ERROR: 4th orbital_elements_j2000() test doesn't match"

    assert abs(round(ome, 5) - 48.24873) < TOL, \
        "ERROR: 5th orbital_elements_j2000() test doesn't match"

    assert abs(round(arg, 6) - 29.311401) < TOL, \
        "ERROR: 6th orbital_elements_j2000() test doesn't match"
Пример #11
0
def test_mercury_orbital_elements_mean_equinox():
    """Tests the orbital_elements_mean_equinox() method of Mercury class"""

    epoch = Epoch(2065, 6, 24.0)
    l, a, e, i, ome, arg = Mercury.orbital_elements_mean_equinox(epoch)

    assert abs(round(l, 6) - 203.494701) < TOL, \
        "ERROR: 1st orbital_elements_mean_equinox() test doesn't match"

    assert abs(round(a, 8) - 0.38709831) < TOL, \
        "ERROR: 2nd orbital_elements_mean_equinox() test doesn't match"

    assert abs(round(e, 7) - 0.2056451) < TOL, \
        "ERROR: 3rd orbital_elements_mean_equinox() test doesn't match"

    assert abs(round(i, 6) - 7.006171) < TOL, \
        "ERROR: 4th orbital_elements_mean_equinox() test doesn't match"

    assert abs(round(ome, 5) - 49.10765) < TOL, \
        "ERROR: 5th orbital_elements_mean_equinox() test doesn't match"

    assert abs(round(arg, 6) - 29.367732) < TOL, \
        "ERROR: 6th orbital_elements_mean_equinox() test doesn't match"