We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ShallowWaters.jl/src/Gradients.jl
Line 37 in 5b5746b
probably as
uij = u[j,i] ∇²u[j,i] = (u[j,i+1]-uij) + (u[j+2,i+1]-uij) + (u[j+1,i]-uij) + (u[j+1,i+2]-uij)
The text was updated successfully, but these errors were encountered:
or
∇²u[j,i] = ((u[j-1,i]-uij) + (u[j+1,i]-uij)) + ((u[j,i-1]-uij) + (u[j,i+1]-uij))
note the brackets
Sorry, something went wrong.
done in #153
No branches or pull requests
ShallowWaters.jl/src/Gradients.jl
Line 37 in 5b5746b
probably as
The text was updated successfully, but these errors were encountered: