Beispiel #1
0
 def test_attenuation_length_freq_match(self, depth):
     """Tests the attenuation length in the ice calculated for many freqs
     at once matches the individual calculation."""
     freq = np.logspace(3, 12, 4)
     a_lens = [AntarcticIce.attenuation_length(depth, f) for f in freq]
     assert np.array_equal(AntarcticIce.attenuation_length(depth, freq),
                           a_lens)
Beispiel #2
0
 def test_attenuation_length_depth_match(self, freq):
     """Tests the attenuation length in the ice calculated for many depths
     at once matches the individual calculation."""
     depth = -1 * np.linspace(100, 1000, 10)
     a_lens = [AntarcticIce.attenuation_length(d, freq) for d in depth]
     assert np.array_equal(AntarcticIce.attenuation_length(depth, freq),
                           a_lens)
Beispiel #3
0
 def test_attenuation_length_both_match(self):
     """Tests the attenuation length in the ice calculated for many depths
     and freqs at once matches the individual calculation."""
     depth = -1 * np.linspace(100, 1000, 10)
     freq = np.logspace(3, 12, 4)
     a_lens = np.zeros((len(depth), len(freq)))
     for i, d in enumerate(depth):
         for j, f in enumerate(freq):
             a_lens[i, j] = AntarcticIce.attenuation_length(d, f)
     assert np.array_equal(AntarcticIce.attenuation_length(depth, freq),
                           a_lens)
Beispiel #4
0
 def test_attenuation_length(self, depth, freq):
     """Tests the attenuation length in the ice at different depths and
     frequencies. Make sure attenuations match expected within 1%."""
     assert (AntarcticIce.attenuation_length(depth, freq) == pytest.approx(
         attenuations[(depth, freq)], rel=0.01))
Beispiel #5
0
 def test_temperature(self, depth, temp):
     """Tests the temperature in the ice at different depths
     (within 3%) according to Kurt Woschnagg's data here:
     http://icecube.wisc.edu/~mnewcomb/radio/temp/"""
     assert AntarcticIce.temperature(depth) == pytest.approx(temp + 273.15,
                                                             rel=0.03)
Beispiel #6
0
 def test_index_MN(self, depth, index):
     """Tests the index of refraction in the ice at different depths
     (within 5%) according to Matt Newcomb's table here:
     http://icecube.wisc.edu/~mnewcomb/radio/index/"""
     assert AntarcticIce.index(depth) == pytest.approx(index, rel=0.05)
Beispiel #7
0
 def test_index(self, depth, index):
     """Tests the index of refraction in the ice at different depths.
     Make sure indices match expected within 1%."""
     assert AntarcticIce.index(depth) == pytest.approx(index, rel=0.01)
Beispiel #8
0
def antarctic_ice():
    """Fixture for forming basic AntarcticIce object"""
    return AntarcticIce()