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