ReFRACtor
solar_absorption_and_continuum_test.py
Go to the documentation of this file.
1
from
nose.tools
import
*
2
from
full_physics
import
*
3
import
os
4
import
numpy
as
np
5
import
numpy.testing
as
nptest
6
7
test_data = os.path.dirname(__file__) +
"/../../test/unit/data/"
8
9
# We are in the process of changing the solar model, so temporarily
10
# comment out this test.
11
#def test_solar_spectrum():
12
# spectrum_file = test_data + "in/l1b/spec/spectra.dat"
13
# sounding_file = test_data + "in/l1b/soundinginfo.dat"
14
# noise = PrecomputedNoiseModel(HeritageFile(spectrum_file))
15
# l1b = Level1bHeritage(sounding_file, spectrum_file, noise)
16
# h = HdfFile(test_data + "l2_fixed_level_static_input.h5")
17
# solar = VectorSolarModel(h, l1b, "Solar")[0]
18
# wn = [12929.94, 12979.93, 13029.93, 13079.93, 13129.93,
19
# 13179.93]
20
# expected = np.array([0.0726478736339, 0.0732139705623,
21
# 0.0727836689145, 0.073109528699,
22
# 0.0729386962257, 0.0727803937312])
23
# sd = SpectralDomain(wn)
24
# spec = solar.solar_spectrum(sd)
25
# nptest.assert_array_almost_equal(spec.spectral_range().data(), expected)
26
tools
testing
Copyright © 2017, California Institute of Technology.
ALL RIGHTS RESERVED.
U.S. Government Sponsorship acknowledged.
Generated Fri Aug 24 2018 15:44:10