md
scale_force(force, boxsize, temperature=298.0)
¶
Scale force to unitless DM.
Parameters:
-
force
(float
) –Force in kJ/mol/nm
-
boxsize
(float
) –Box size in nm
-
temperature
(float
, default:298.0
) –Temperature in K
Returns:
-
float
–Scaled force.
Source code in src/fpsl/utils/md.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
|
load_gromacs_pullx(pullx_file, gro_file, stride=1, nrows_max=None)
¶
Load Gromacs pullx file and convert to unitless DM.
Parameters:
-
pullx_file
(str
) –Path to the pullx file.
-
gro_file
(str
) –Path to the gro file.
-
stride
(int
, default:1
) –Stride for the trajectory. Default is 1.
-
nrows_max
(int
, default:None
) –Maximum number of rows to load. If None, load all data. Default is None.
Returns:
-
tuple
–Xs : np.ndarray Scaled trajectory. traj : np.ndarray Trajectory in nm. dt : float Time step in ns. boxsize : float Box size in nm.
Source code in src/fpsl/utils/md.py
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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
|
load_trajs(*, directory, ext_forces, pullx_basename, gro_basename, stride=1, temperature=298.0, nrows_max=None)
¶
Load Gromacs pullx files.
Parameters:
-
directory
(str
) –Directory containing the pullx and gro files.
-
ext_forces
(list[float]
) –List of external forces.
-
pullx_basename
(str
) –Basename of the pullx files. Should contain {force} placeholders.
-
gro_basename
(str
) –Basename of the gro files. Should contain {force} placeholders.
-
stride
(int
, default:1
) –Stride for the trajectory. Default is 1.
-
temperature
(float
, default:298.0
) –Temperature in K. Default is 298.0.
-
nrows_max
(int
, default:None
) –Maximum number of rows to load. If None, load all data. Default is None.
Returns:
-
tuple
–Xs : dict Dictionary of scaled trajectories for each external force. ys : dict Dictionary of scaled forces for each external force. boxsizes : dict Dictionary of box sizes for each external force. dt : float Time step in ns.
Source code in src/fpsl/utils/md.py
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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 |
|
unwrap_traj(traj, boxsize=1)
¶
Unwrap a trajectory according to periodic boundary conditions.
Parameters:
-
traj
(array_like
) –The wrapped trajectory, values in [0,1].
-
boxsize
(float
, default:1
) –The size of the box. Default is 1.
Returns:
-
unwrapped
(ndarray
) –The unwrapped trajectory (in box units, not scaled by boxsize).
Source code in src/fpsl/utils/md.py
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
|
estimate_diff_x(x, tau, dt=1.0, bins=200)
¶
Compute position-dependent diffusion coefficient from traj.
Parameters:
-
x
(List[ndarray]
) –List of trajectories in [0, 1].
-
tau
(int
) –The time lag in frames.
-
dt
(float
, default:1.0
) –The time step in [ns]. Default is 1.0.
-
bins
(int
, default:200
) –The number of bins for the histogram. Default is 200.
Returns:
-
tuple
–diff_x : jnp.ndarray The diffusion coefficient for each bin. xs : jnp.ndarray The x values for each bin.
Source code in src/fpsl/utils/md.py
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 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
|