예제 #1
0
 def eqn(self):
     t = self.u.grid.stepping_dim
     return iso_stencil(self.u, self.m, t.spacing, self.damp, self.kernel)
예제 #2
0
파일: test_yask.py 프로젝트: richah2/devito
 def eqn(self, m, damp, u, kernel):
     t = u.grid.stepping_dim
     return iso_stencil(u, m, t.spacing, damp, kernel)
예제 #3
0
파일: test_yask.py 프로젝트: opesci/devito
 def eqn(self):
     t = self.u.grid.stepping_dim
     return iso_stencil(self.u, self.m, t.spacing, self.damp, self.kernel)
예제 #4
0
파일: test_yask.py 프로젝트: fymenq/devito
 def eqn(self, m, damp, u, time_order):
     t = u.grid.stepping_dim
     return iso_stencil(u, time_order, m, t.spacing, damp)