def ijacobian(self, ts, t, X, Xdot, a, J, P): from assembly import formIJacobian cc = self.patch.problem_data['cc'] zz = self.patch.problem_data['zz'] xmin = self.patch.x.lower xmax = self.patch.x.upper return formIJacobian(ts, t, X, Xdot, a, J, P, cc, zz, xmin, xmax)
def ijacobian(self, ts, t, X, Xdot, a, J, P): from assembly import formIJacobian cc = self.grid.aux_global['cc'] zz = self.grid.aux_global['zz'] xmin = self.grid.x.lower xmax = self.grid.x.upper return formIJacobian(ts, t, X, Xdot, a, J, P, cc, zz, xmin, xmax)