Beispiel #1
0
def test_radex_grid_run():
    """Ensure that the output of RADEX grid run is correct."""
    ds = ndradex.run(
        "co.dat",
        ["1-0", "2-1", "3-2"],
        [100, 200, 300],
        **COMMONS,
    )
    assert np.isclose(ds["I"].sel(QN_ul="1-0", T_kin=100), 1.36)
    assert np.isclose(ds["F"].sel(QN_ul="1-0", T_kin=100), 2.684e-8)
Beispiel #2
0
def test_dataset_io():
    """Ensure that I/O functions works correctly."""
    with TemporaryDirectory(dir=".") as temp_dir:
        filename = Path(temp_dir) / "test.nc"

        ds_before = ndradex.run("co.dat", "1-0", 100)
        ndradex.save_dataset(ds_before, filename)
        ds_after = ndradex.load_dataset(filename)

        ds_bool = (ds_before == ds_after).all()
        for dataarray in ds_bool.values():
            assert dataarray
Beispiel #3
0
def test_work_dir():
    """Ensure that work_dir option works correctly."""
    with TemporaryDirectory(dir=".") as work_dir:
        ndradex.run("co.dat", "1-0", 100, work_dir=work_dir)
        assert not list(Path(work_dir).glob("*"))
Beispiel #4
0
def test_radex_single_run():
    """Ensure that the output of RADEX single run is correct."""
    ds = ndradex.run("co.dat", "1-0", 100, **COMMONS)
    assert np.isclose(ds["I"], 1.36)
    assert np.isclose(ds["F"], 2.684e-8)
Beispiel #5
0
def test_work_dir():
    """Ensure that work_dir option works correctly."""
    with TemporaryDirectory(dir='.') as work_dir:
        ds = ndradex.run('co.dat', '1-0', 100, work_dir=work_dir)
        assert not list(Path(work_dir).glob('*'))
Beispiel #6
0
def test_radex_grid_run():
    """Ensure that the output of RADEX grid run is correct."""
    ds = ndradex.run('co.dat', ['1-0', '2-1', '3-2'],
                     [100, 200, 300], **COMMONS)
    assert np.isclose(ds['I'].sel(QN_ul='1-0', T_kin=100), 1.36)
    assert np.isclose(ds['F'].sel(QN_ul='1-0', T_kin=100), 2.684e-8)
Beispiel #7
0
def test_radex_single_run():
    """Ensure that the output of RADEX single run is correct."""
    ds = ndradex.run('co.dat', '1-0', 100, **COMMONS)
    assert np.isclose(ds['I'], 1.36)
    assert np.isclose(ds['F'], 2.684e-8)