예제 #1
0
파일: LorenzODE.py 프로젝트: cmorgan/dypy
 def __init__(self):
     ODE.__init__(self, 'Lorenz Attractor', 'Simplified equations of atmospheric convection introduced by Edward Lorenz in 1963.')
예제 #2
0
 def __init__(self):
     ODE.__init__(self, 'Rabinovich-Fabrikant', 'Models stochasticity due to modulation instability in a non-equilibrium dissipative medium.')
예제 #3
0
파일: RikitakiODE.py 프로젝트: cmorgan/dypy
 def __init__(self):
     ODE.__init__(self, 'Rikitaki Dynamo', 'Model for the dynamics of magnetic pole variation, introduced by Rikitaki in 1958.')
예제 #4
0
파일: VallisODE.py 프로젝트: cmorgan/dypy
 def __init__(self):
     ODE.__init__(self, 'Vallis System', 'Model of temperature fluctuations in the equatorial ocean, introduced by Vallis in 1986.')
예제 #5
0
파일: ElNinoODE.py 프로젝트: cmorgan/dypy
 def __init__(self):
     ODE.__init__(self, 'El Nino', ' ')
     self.t = 0
예제 #6
0
파일: RosslerODE.py 프로젝트: cmorgan/dypy
 def __init__(self):
     ODE.__init__(
         self,
         "Rossler Attractor",
         "Model with behavior similar to the Lorenz attractor, introduced by Otto Rossler in 1976.",
     )
예제 #7
0
파일: ChuaODE.py 프로젝트: cmorgan/dypy
 def __init__(self):
     ODE.__init__(self, 'Chua\'s Circuit', 'Chua\'s circuit is a simple electronic circuit that exhibits chaotic behavior.')