Dynamics
Dynamic analysis routines for trajectory data.
compute_D(time, msd, fit_from=0, dim=3)
Compute the diffusion coefficient from an MSD curve.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
time |
ndarray
|
Time values corresponding to the MSD entries. |
required |
msd |
ndarray
|
Mean-squared displacement values. |
required |
fit_from |
int
|
Index at which to start the linear regression. Default is |
0
|
dim |
int
|
Dimensionality of the system (e.g., |
3
|
Returns:
| Type | Description |
|---|---|
float
|
Estimated diffusion coefficient in units of |
Source code in m2dtools/basic/dynamics.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | |
compute_SISF(positions, box_lengths, lag_array, k, num_vectors=100, n_repeat=100)
Compute the self-intermediate scattering function (SISF).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
positions |
ndarray
|
Atom positions with shape |
required |
box_lengths |
ndarray or list
|
Simulation box lengths per frame with shape |
required |
lag_array |
ndarray or list
|
Lag times (in frames) at which to evaluate the SISF. |
required |
k |
float
|
Magnitude of the wave vector |
required |
num_vectors |
int
|
Number of random |
100
|
n_repeat |
int
|
Number of time origins to average over. Default is |
100
|
Returns:
| Type | Description |
|---|---|
ndarray
|
Self-intermediate scattering values for each lag time. |
Source code in m2dtools/basic/dynamics.py
83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | |
compute_SISF_zresolved(positions, box_lengths, lag_array, k, z_ranges, num_vectors=100, n_repeat=100)
Layer-resolved SISF with z-bin assignment performed at every time origin t0.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
z_ranges |
list of tuple
|
List of (zmin, zmax) tuples defining the layers along z-axis. |
required |
Other |
|
required |
Returns:
| Type | Description |
|---|---|
ndarray
|
Self-intermediate scattering values for each layer and lag time. |
Source code in m2dtools/basic/dynamics.py
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | |
compute_msd_pbc(positions, box_lengths, lag_array)
Compute mean-squared displacement with periodic boundaries.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
positions |
ndarray
|
Atom positions with shape |
required |
box_lengths |
ndarray or list
|
Simulation box lengths per frame with shape |
required |
lag_array |
ndarray or list
|
Lag times (in frames) at which to evaluate the MSD. |
required |
Returns:
| Type | Description |
|---|---|
ndarray
|
Mean-squared displacement values for each lag time. |
Source code in m2dtools/basic/dynamics.py
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 | |