mirror of
https://github.com/wassname/simpeg.git
synced 2026-07-05 05:05:43 +08:00
13 lines
229 B
Python
13 lines
229 B
Python
|
|
|
|
class Cooling(object):
|
|
"""Simple Beta Schedule"""
|
|
|
|
beta0 = 1.e6
|
|
beta_coolingFactor = 5.
|
|
|
|
def getBeta(self):
|
|
if self._beta is None:
|
|
return beta0
|
|
return self._beta / beta_coolingFactor
|