-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
66a9ef0
commit bf56ffe
Showing
225 changed files
with
3,178 additions
and
53,045 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: deploy-book | ||
|
||
# Only run this when the main branch changes | ||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
# This job installs dependencies, build the book, and pushes it to `gh-pages` | ||
jobs: | ||
deploy-book: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
# Install dependencies | ||
- name: Set up Python 3.9 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Setup Miniconda | ||
uses: conda-incubator/[email protected] | ||
with: | ||
environment-file: environment.yml | ||
activate-environment: thermo-env | ||
python-version: 3.9 | ||
auto-activate-base: false | ||
|
||
# Build the book | ||
- name: Build the book | ||
shell: bash -l {0} | ||
run: | | ||
jupyter-book build book | ||
# Push the book's HTML to github-pages | ||
- name: GitHub Pages action | ||
uses: peaceiris/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./book/_build/html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
# Introduction | ||
# Mechanical Engineering Methods | ||
|
||
This website is an interactive [Jupyter Book](https://jupyterbook.org/intro.html) for ME 373, Mechanical Engineering Methods, taught at Oregon State University. | ||
**By [Kyle Niemeyer](https://niemeyer-research-group.github.io)** | ||
|
||
This ebook contain material and example problems in numerical methods for engineering, in the format of Jupyter notebooks, developed to supplement the course ME 373, Mechanical Engineering Methods, taught in the [School of Mechanical, Industrial, and Manufacturing Engineering](https://mime.oregonstate.edu) at [Oregon State University](https://oregonstate.edu). | ||
|
||
All problems here use Python with the [SciPy](https://www.scipy.org) ecosystem of packages {cite:p}`2020SciPy-NMeth`. | ||
All artwork here is original. | ||
This interactive website is powered by [Jupyter Book](https://jupyterbook.org/). | ||
|
||
|
||
[![license](../images/cc-by.svg)](https://creativecommons.org/licenses/by/4.0/) | ||
<br /> | ||
This work is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
498 changes: 315 additions & 183 deletions
498
book/content/numerical-methods/initial-value-methods.ipynb
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.