Skip to content

Commit

Permalink
Remove stray parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
guyer authored Oct 21, 2024
1 parent fe5bf86 commit 37db90e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/USAGE.rst
Original file line number Diff line number Diff line change
Expand Up @@ -891,7 +891,7 @@ can be constrained to have a Robin condition at faces identified by
>>> a = FaceVariable(mesh=mesh, value=..., rank=1)
>>> b = FaceVariable(mesh=mesh, value=..., rank=0)
>>> g = FaceVariable(mesh=mesh, value=..., rank=0)
>>> RobinCoeff = (mask * Gamma0 * n / (dPf.dot(a) + b)
>>> RobinCoeff = mask * Gamma0 * n / (dPf.dot(a) + b)
>>> eqn = (TransientTerm() == DiffusionTerm(coeff=Gamma) + (RobinCoeff * g).divergence
... - ImplicitSourceTerm(coeff=(RobinCoeff * n.dot(a)).divergence)

Expand Down

0 comments on commit 37db90e

Please sign in to comment.