DihedralOptimizer¶
Optimize dihedral parameters via least-squares fitting of Fourier series coefficients.
Usage¶
from parametrizani import DihedralOptimizer
optimizer = DihedralOptimizer(max_terms=6, work_dir='./work')
result = optimizer.run_optimization(
ref_angles, ref_energies,
mm_energies=mm_energies,
atom_types=['ca', 'ca', 'os', 'ca']
)
# Select specific number of terms
params = optimizer.format_frcmod_params(result, n_terms=3, idivf=1)
print(params)
# Write FRCMOD file
frcmod_file = optimizer.write_frcmod(result, idivf=1, n_terms=3)
FRCMOD Format¶
The optimizer writes AMBER-format FRCMOD lines with continuation signs:
- Negative PN (periodicity) indicates continuation (more terms follow)
- Positive PN marks the final term for that dihedral
- IDIVF is the scaling factor for equivalent torsions
API Reference¶
parametrizani.dihedral_optimizer.DihedralOptimizer ¶
Optimize dihedral parameters by fitting to a reference energy profile.
Uses linear least-squares regression to determine optimal Fourier series coefficients for the dihedral potential:
V(phi) = sum_n [ V_n * (1 + cos(n*phi - delta_n)) ]
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
max_terms
|
int
|
Maximum number of Fourier terms (1-6). Default 6. |
6
|
work_dir
|
str
|
Working directory for output files. |
'./work'
|
allow_asymmetric_phase
|
bool
|
If True, phase shifts are not constrained to 0/180. Default True. |
True
|
Source code in parametrizani/dihedral_optimizer.py
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 69 70 71 72 73 74 75 76 77 78 79 80 81 82 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 132 133 134 135 136 137 138 139 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 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 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 | |
__init__ ¶
Source code in parametrizani/dihedral_optimizer.py
run_optimization ¶
run_optimization(ref_angles: List[float], ref_energies: List[float], mm_energies: Optional[List[float]] = None, atom_types: Optional[List[str]] = None, weights: Optional[List[float]] = None) -> Dict[str, Any]
Run the full dihedral optimization.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
ref_angles
|
List[float]
|
Reference dihedral angles (degrees). |
required |
ref_energies
|
List[float]
|
Reference energies (kcal/mol). |
required |
mm_energies
|
Optional[List[float]]
|
MM energies (kcal/mol). If None, assumes zeros. |
None
|
atom_types
|
Optional[List[str]]
|
Atom types for the 4 dihedral atoms. |
None
|
weights
|
Optional[List[float]]
|
Fitting weights. |
None
|
Returns:
| Type | Description |
|---|---|
Dict[str, Any]
|
Optimization results with 'best_fit', 'rmse', 'parameters', etc. |
Source code in parametrizani/dihedral_optimizer.py
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 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 215 216 217 218 219 | |
format_frcmod_params ¶
format_frcmod_params(result: Dict[str, Any], n_terms: Optional[int] = None, atom_types: Optional[List[str]] = None, idivf: int = 1) -> str
Format the requested fitted parameter set in AMBER FRCMOD format.
Source code in parametrizani/dihedral_optimizer.py
get_parameters_for_terms ¶
get_parameters_for_terms(result: Dict[str, Any], n_terms: Optional[int] = None) -> Dict[str, Dict[str, Any]]
Return the fitted parameter set for the requested number of Fourier terms.
Source code in parametrizani/dihedral_optimizer.py
write_frcmod ¶
Write optimized parameters to FRCMOD file.
Source code in parametrizani/dihedral_optimizer.py
calculate_dihedral_energy ¶
Calculate dihedral energy for given angles using fitted parameters.