Skip to content

Commit

Permalink
fix author links, add constants file (#5)
Browse files Browse the repository at this point in the history
* add my name to author list

* add constants container

* make author GH links work
  • Loading branch information
wx4stg authored Jun 13, 2024
1 parent 1245eef commit 259fc25
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
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

0 comments on commit 259fc25

Please sign in to comment.