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

fix author links, add constants file #5

Merged
merged 4 commits into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@ Numerical models are widely used, but gaining expertise in how they work has oft

## Authors

[JT Thielen](@jthielen), [Roger Riggin](@riotrogerriot), etc. _Acknowledge primary content authors here_
- [JT Thielen](https://github.com/jthielen)
- [Sam Gardner](https://github.com/wx4stg)
- [Roger Riggin](https://github.com/riotrogerriot)

### Contributors

Expand Down
5 changes: 5 additions & 0 deletions notebooks/constants.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/usr/bin/env python3

R_d = 8.314462618 / 28.96546e-3 # R / Md, (J/(mol*K)) / (kg/mol) = J/(kg*K)
c_p = 1.4 * R_d / (1.4 - 1) # J/(kg*K)
gravity = 9.80665 # m/(s^(2))
9 changes: 4 additions & 5 deletions notebooks/notebook-template.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# Basic Atmospheric Science Modeling Cookbook\n",
"---"
]
},
Expand Down Expand Up @@ -95,15 +96,13 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"## Your first content section"
"## Model equations setup"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"This is where you begin your first section of material, loosely tied to your objectives stated up front. Tie together your notebook as a narrative, with interspersed Markdown text, images, and more as necessary,"
]
"source": []
},
{
"cell_type": "code",
Expand Down Expand Up @@ -295,7 +294,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.8"
"version": "3.11.9"
},
"nbdime-conflicts": {
"local_diff": [
Expand Down
Loading