-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperiment.conf
64 lines (56 loc) · 1.81 KB
/
experiment.conf
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
"""
Configuration of the experiment.
NP Parameters
-------------
r_mean : float
Mean of the normal distribution nanoparticle radius. [r] = nm
r_deviation : float, optional
Standard deviation of the normal distribution nanoparticle radius.
if not, the radius is considered constant. [r] = nm
R_Forster : float
Forster radius. [R_Forster] = nm
mean_path : float
Mean free path. [mean_path] = nm
tau_D : float
Lifetime of donor. [tau_D] = ns
epsilon : float
[epsilon] = nm
Simulation Parameters
---------------------
num_acceptors_min : int, optional
Minimum number of acceptores to simulate. Default value = 1
num_acceptors_max : int
Maximum number of acceptores to simulate.
acceptors_step : int
Step number of acceptores.
num_exc : int
Numbers of exitation of the same nanoparticle.
Experiment Parameters
---------------------
acceptors : str
Way to create the acceptors. Can be 'vol' (volumetrically)
for uniform distribution inside of nanoparticle or 'sup' (superficialy)
for uniform distributions on the surface of the nanoparticle.
exiton : str
Way to create the exiton. Can be 'laser' to generate uniformily in
the nanoparticle or 'elec' (electrolysis) to generate between the
radius R of the nanoparticle and a r (R > r).
r_electro : float, optional
In a chemical electrolysis, the exiton position is generated between
the radius R of the nanoparticle and a radius r (r<R),
where r depends electrolysis.
"""
r_mean = 15 #coment
R_Forster = 3.14
mean_path = 100
tau_D = 0.333
epsilon = 1.5
num_acceptors_min = 0 #Acceptores equiespaciados
num_acceptors_max = 401
acceptors_step = 20
arbitrary_list = 1 #Para una lista arbitraria (if == 1, use list)
list_num_acceptors = 0, 21, 43, 86, 171, 436, 871
num_exc = 3000
acceptors = vol
exiton = laser
r_electro = 0