v0.14.0
Loading...
Searching...
No Matches
surface.py
Go to the documentation of this file.
1import math
2
3def surface(x, y, z, eta):
4 return -math.tanh((-0.01 - x) / (eta * math.sqrt(2.)))
5