-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsde.py
68 lines (55 loc) · 1.73 KB
/
sde.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
"""
This file contains the main object definition for a general Ito diffusion.
Version 0.1: 1D-Problem driven by a Brownian Motion.
"""
from inspect import signature
class SDE(object):
"""
Main object representing an SDE. Contains main methods for functional representation.
"""
def __init__(self, drift, diffusion, timerange=None, startvalue=1):
if timerange is None:
timerange = [0, 1]
self._drift = drift
self._diffusion = diffusion
self._timerange = timerange
self._startvalue = startvalue
self._information = dict()
self._information['drift'] = build_information(drift)
self._information['diffusion'] = build_information(diffusion)
self._driving_process = self
@property
def drift(self):
return self._drift
@property
def diffusion(self):
return self._diffusion
@property
def timerange(self):
return self._timerange
@property
def startvalue(self):
return self._startvalue
@property
def information (self):
return self._information
def build_information(func):
try:
parameter = list(signature(func).parameters)
except TypeError:
print("ERROR: No proper function was given, the information set can't be built.")
raise
else:
information = dict()
if "x" in parameter:
information['spatial'] = True
parameter.remove("x")
else:
information['spatial'] = False
if "t" in parameter:
information['time'] = True
parameter.remove("t")
else:
information['time'] = False
information['parameter'] = parameter
return information