Skip to content

Commit

Permalink
Correct derivatives in Burgers equation
Browse files Browse the repository at this point in the history
  • Loading branch information
HGangloff authored Dec 9, 2024
1 parent 5e36d1b commit f4e1f40
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/source/_rst/tutorials/tutorial12/tutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ parameter :math:`\nu`:
self.nu = nu
def equation(input_, output_):
return grad(output_, input_, d='x') +\
output_*grad(output_, input_, d='t') -\
return grad(output_, input_, d='t') +\
output_*grad(output_, input_, d='x') -\
self.nu*laplacian(output_, input_, d='x')
Expand Down

0 comments on commit f4e1f40

Please sign in to comment.