Skip to content

Commit

Permalink
Merge a5fb7cf into 3193efa
Browse files Browse the repository at this point in the history
  • Loading branch information
bwinkel committed Apr 17, 2019
2 parents 3193efa + a5fb7cf commit 4ecbf5a
Show file tree
Hide file tree
Showing 12 changed files with 3,883 additions and 1,482 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -21,6 +21,7 @@ MANIFEST
docs/api
docs/generated
docs/_build
docs/docs/_build

# Eclipse editor project files
.project
Expand Down
642 changes: 433 additions & 209 deletions docs/atm/index.rst

Large diffs are not rendered by default.

915 changes: 551 additions & 364 deletions notebooks/02_atmospheric_attenuation.ipynb

Large diffs are not rendered by default.

418 changes: 418 additions & 0 deletions notebooks/tmp.ipynb

Large diffs are not rendered by default.

14 changes: 8 additions & 6 deletions pycraf/atm/__init__.py
Expand Up @@ -3,7 +3,7 @@

'''
The atm subpackage provides an implementation of the atmospheric models of
`ITU-R Rec. P.676-10 <https://www.itu.int/rec/R-REC-P.676-10-201309-S/en>`_.
`ITU-R Rec. P.676-11 <https://www.itu.int/rec/R-REC-P.676-11-201609-I/en>`_.
For this, various other algorithms from the following two ITU-R
Recommendations are
necessary:
Expand All @@ -14,14 +14,16 @@
which is used to calculate the refractive index from temperature and
water/total air pressure. Furthermore, P.453 has formulae to derive the
saturation water pressure from temperature and total air pressure,
as well as the water pressure from temperature, pressure and humidity, or
alternatively from temperature and wator vapor density.
as well as the water pressure from temperature, pressure and humidity,
or alternatively from temperature and wator vapor density.
Notes
-----
A new version of ITU-R P.676 is available,
`ITU-R Rec. P.676-11 <https://www.itu.int/rec/R-REC-P.676-11-201609-I/en>`_,
which has a modified algorithm for Annex 2. We will implement this soon.
The new version of P.676,
`ITU-R Rec. P.676-11 <https://www.itu.int/rec/R-REC-P.676-11-201609-I/en>`_, has updated the algorithms for Annex 2 (compare with https://www.itu.int/rec/R-REC-P.676-11-201609-I/en>). As the Annex 1 methods are more accurate (and
sufficiently fast), users should use these for their work. `~pycraf`
continues to provide the Annex 2 solutions of the P.676-10 for historical
reasons, but this should be considered as deprecated.
'''

from .atm import *

0 comments on commit 4ecbf5a

Please sign in to comment.