v0.14.0
Classes | Functions | Variables
sdf_hertz_2d_axisymm_plane Namespace Reference

Classes

class  yPlane
 

Functions

def sdf (delta_t, t, x, y, z, tx, ty, tz, block_id)
 
def grad_sdf (delta_t, t, x, y, z, tx, ty, tz, block_id)
 
def hess_sdf (delta_t, t, x, y, z, tx, ty, tz, block_id)
 

Variables

float d = 0.01
 
int xc = 0
 
int yc = 0
 
int zc = 0
 

Function Documentation

◆ grad_sdf()

def sdf_hertz_2d_axisymm_plane.grad_sdf (   delta_t,
  t,
  x,
  y,
  z,
  tx,
  ty,
  tz,
  block_id 
)

Definition at line 13 of file sdf_hertz_2d_axisymm_plane.py.

13 def grad_sdf(delta_t, t, x, y, z, tx, ty, tz, block_id):
14  return yPlane.gradSdf(xc, yc - d * t, zc, x, y, z)
15 

◆ hess_sdf()

def sdf_hertz_2d_axisymm_plane.hess_sdf (   delta_t,
  t,
  x,
  y,
  z,
  tx,
  ty,
  tz,
  block_id 
)

Definition at line 16 of file sdf_hertz_2d_axisymm_plane.py.

16 def hess_sdf(delta_t, t, x, y, z, tx, ty, tz, block_id):
17  return yPlane.hessSdf(xc, yc - d * t, zc, x, y, z)
18 

◆ sdf()

def sdf_hertz_2d_axisymm_plane.sdf (   delta_t,
  t,
  x,
  y,
  z,
  tx,
  ty,
  tz,
  block_id 
)

Definition at line 10 of file sdf_hertz_2d_axisymm_plane.py.

10 def sdf(delta_t, t, x, y, z, tx, ty, tz, block_id):
11  return yPlane.sDF(xc, yc - d * t, zc, x, y, z)
12 

Variable Documentation

◆ d

float sdf_hertz_2d_axisymm_plane.d = 0.01

◆ xc

int sdf_hertz_2d_axisymm_plane.xc = 0
Examples
level_set.cpp.

Definition at line 6 of file sdf_hertz_2d_axisymm_plane.py.

◆ yc

int sdf_hertz_2d_axisymm_plane.yc = 0
Examples
level_set.cpp.

Definition at line 7 of file sdf_hertz_2d_axisymm_plane.py.

◆ zc

int sdf_hertz_2d_axisymm_plane.zc = 0
Examples
level_set.cpp.

Definition at line 8 of file sdf_hertz_2d_axisymm_plane.py.

sdf_hertz_2d_axisymm_plane.hess_sdf
def hess_sdf(delta_t, t, x, y, z, tx, ty, tz, block_id)
Definition: sdf_hertz_2d_axisymm_plane.py:16
sdf_hertz_2d_axisymm_plane.sdf
def sdf(delta_t, t, x, y, z, tx, ty, tz, block_id)
Definition: sdf_hertz_2d_axisymm_plane.py:10
sdf_hertz_2d_axisymm_plane.grad_sdf
def grad_sdf(delta_t, t, x, y, z, tx, ty, tz, block_id)
Definition: sdf_hertz_2d_axisymm_plane.py:13