Пример #1
0
 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)
Пример #2
0
 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)
Пример #3
0
 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)