Closed edoddridge closed 7 years ago
General comment on filing tickets like this: A Github url involving the word master
always points to the tip of the master
branch; so, if someone commits something that changes the number of lines preceding line 1346, the line pointers are liable to shift (unless the Github takes great pains to prevent this). More reliable (if more cumbersome) is pointing to a specific commit rather than the tip of the branch.
Thanks for the tip. I've updated it to point at a specific commit.
The subroutine
SOR_solver
is missing a term in two different lines.The value
a(5,i,j)
should instead bea(5,i,j) - freesurfFac/dt**2
.Given that this additional term doesn't change for the duration of the simulation, the additional term can be rolled into
a
in thederivatives_of_the_depth_field
subroutine.Confirming that this is affecting the results is a good test case for the automated tests described in #66.