Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improving docstring (and definition?!) of mean free path in diffusion kinetics #1273

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions PySDM/physics/diffusion_kinetics/pruppacher_and_klett_2005.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
"""
as in Pruppacher and Klett 2005 (eq. 13-14)
with reference to [Okuyama and Zung 1967](https://doi.org/10.1063/1.1840906)
as in [Pruppacher and Klett 2005, chapter 13](https://doi.org/10.1007/978-0-306-48100-0_13),
eq. (13-14) - with reference to [Okuyama and Zung 1967](https://doi.org/10.1063/1.1840906)
"""

import numpy as np


class PruppacherKlett:
"""D() stands for modified diffusivity, lamdaD stands for TODO"""

def __init__(self, _):
pass

Expand Down
Loading