Exemple #1
0
 def kinetic(self):
     if self._kinetic is None:
         raise UnsolvedError('This ODE has not yet been solved')
     return self._kinetic
Exemple #2
0
 def theta1(self):
     if self._theta1 is None:
         raise UnsolvedError('This ODE has not yet been solved')
     return self._theta1
Exemple #3
0
 def vy2(self):
     if self._vy2 is None:
         raise UnsolvedError('This ODE has not yet been solved')
     return self._vy2
Exemple #4
0
 def potential(self):
     if self._potential is None:
         raise UnsolvedError('This ODE has not yet been solved')
     return self._potential
Exemple #5
0
 def vy(self):
     if self._vy is None:
         raise UnsolvedError("This ODE has not yet been solved")
     return self._vy
Exemple #6
0
 def omega(self): 
     if self._omega is None:
          raise UnsolvedError("This ODE has not yet been solved")
     return self._omega
Exemple #7
0
 def theta(self): 
     if self._theta is None:
         raise UnsolvedError("This ODE has not yet been solved")
     return self._theta