예제 #1
0
파일: ufl2gem.py 프로젝트: tj-sun/tsfc
 def abs(self, o, expr):
     if o.ufl_shape:
         indices = tuple(Index() for i in range(len(o.ufl_shape)))
         return ComponentTensor(MathFunction('abs', Indexed(expr, indices)),
                                indices)
     else:
         return MathFunction('abs', expr)
예제 #2
0
파일: ufl2gem.py 프로젝트: tj-sun/tsfc
 def bessel_y(self, o, nu, arg):
     return MathFunction(o._name, nu, arg)
예제 #3
0
파일: ufl2gem.py 프로젝트: tj-sun/tsfc
 def atan_2(self, o, y, x):
     return MathFunction("atan2", y, x)
예제 #4
0
파일: ufl2gem.py 프로젝트: tj-sun/tsfc
 def math_function(self, o, expr):
     return MathFunction(o._name, expr)