Skip to content

Commit 0476aa0

Browse files
authored
Fix small grammar mistakes (#39)
1 parent dd45aee commit 0476aa0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

chapter1/fundamentals_code.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"\n",
4747
"Note that in many cases, it can be hard to determine if the program works if it produces an error of size $10^{-5}$ on a\n",
4848
"$20 \\times 20$ grid. However, since we are using Sobolev spaces,\n",
49-
"we usually known about the numerical errors _asymptotic properties_. For instance that it is proportional to $h^2$ if $h$ is the size of a cell in the mesh. We can then compare the error on meshes with different $h$-values to see if the asymptotic behavior is correct. This technique will be explained in detail in the chapter [Improving your fenics code](./../chapter4/convergence).\n",
49+
"we usually know about the numerical errors _asymptotic properties_. For instance that it is proportional to $h^2$ if $h$ is the size of a cell in the mesh. We can then compare the error on meshes with different $h$-values to see if the asymptotic behavior is correct. This technique will be explained in detail in the chapter [Improving your fenics code](./../chapter4/convergence).\n",
5050
"\n",
5151
"However, in cases where we have a solution we know that should have no approximation error, we know that the solution should\n",
5252
"be produced to machine precision by the program.\n",
@@ -91,7 +91,7 @@
9191
"which defines a uniform finite element mesh over the unit square $[0,1]\\times[0, 1]$. The mesh consists of _cells_, which in 2D can be either triangles of quadrilaterals. Note that in addition to give how many elements we would like to have in each direction. \n",
9292
"Note that we also supply the _MPI-communicator_. \n",
9393
"This is to specify how we would like the program to behave in parallel. If we supply `MPI.COMM_WORLD` we create a single mesh,\n",
94-
"which data is distributed over the number of processors we \n",
94+
"whose data is distributed over the number of processors we \n",
9595
"would like to use. We can for instance run the program in \n",
9696
"parallel on two processors by using `mpirun`, as: \n",
9797
"``` bash\n",
@@ -534,4 +534,4 @@
534534
},
535535
"nbformat": 4,
536536
"nbformat_minor": 4
537-
}
537+
}

0 commit comments

Comments
 (0)