Skip to content

Commit

Permalink
Fix comments and some renaming for JOSE submission
Browse files Browse the repository at this point in the history
  • Loading branch information
gforsyth committed Jul 11, 2018
1 parent f02d542 commit 9852ce7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions lessons/01_Step_1.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
"source": [
"Hello! Welcome to the **12 steps to Navier-Stokes**. This is a practical module that is used in the beginning of an interactive Computational Fluid Dynamics (CFD) course taught by [Prof. Lorena Barba](http://lorenabarba.com) since Spring 2009 at Boston University. The course assumes only basic programming knowledge (in any language) and of course some foundation in partial differential equations and fluid mechanics. The practical module was inspired by the ideas of Dr. Rio Yokota, who was a post-doc in Barba's lab, and has been refined by Prof. Barba and her students over several semesters teaching the course. The course is taught entirely using Python and students who don't know Python just learn as we work through the module.\n",
"\n",
"This [IPython notebook](http://ipython.org/ipython-doc/stable/interactive/htmlnotebook.html) will lead you through the first step of programming your own Navier-Stokes solver in Python from the ground up. We're going to dive right in. Don't worry if you don't understand everything that's happening at first, we'll cover it in detail as we move forward and you can support your learning with the videos of [Prof. Barba's lectures on YouTube](http://www.youtube.com/playlist?list=PL30F4C5ABCE62CB61).\n",
"This [Jupyter notebook](https://jupyter-notebook.readthedocs.io/en/stable/) will lead you through the first step of programming your own Navier-Stokes solver in Python from the ground up. We're going to dive right in. Don't worry if you don't understand everything that's happening at first, we'll cover it in detail as we move forward and you can support your learning with the videos of [Prof. Barba's lectures on YouTube](http://www.youtube.com/playlist?list=PL30F4C5ABCE62CB61).\n",
"\n",
"For best results, after you follow this notebook, prepare your own code for Step 1, either as a Python script or in a clean IPython notebook.\n",
"For best results, after you follow this notebook, prepare your own code for Step 1, either as a Python script or in a clean Jupyter notebook.\n",
"\n",
"To execute this Notebook, we assume you have invoked the notebook server using: `ipython notebook`."
"To execute this Notebook, we assume you have invoked the notebook server using: `jupyter notebook`."
]
},
{
Expand Down
4 changes: 2 additions & 2 deletions lessons/02_Step_2.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
},
"outputs": [],
"source": [
"import numpy #we're importing numpy and calling it np locally\n",
"from matplotlib import pyplot #and our 2D plotting library, calling it plt\n",
"import numpy # we're importing numpy \n",
"from matplotlib import pyplot # and our 2D plotting library\n",
"%matplotlib inline\n",
"\n",
"\n",
Expand Down

0 comments on commit 9852ce7

Please sign in to comment.