Skip to content

Forcefield variants and properties addition #70

@ethanev

Description

@ethanev

Hi, would it be possible to add functionality to use variants of MMFF and alter properties of the forcefield (I believe this would be implementing the Forcefield module)? I commonly need to optimize structures in different dielectrics and get energies like below (cids is just a list of ints for the conformers previously generated and mol is a molecule with generated conformers):

`
dielectric = 80.0
mp = AllChem.MMFFGetMoleculeProperties(mol, mmffVariant='MMFF94s')
mp.SetMMFFDielectricConstant(dielConst=dielectric)
ff = AllChem.MMFFGetMoleculeForceField(mol, mp)
AllChem.OptimizeMoleculeConfs(mol, ff, numThreads=num_threads)

for cid in cids:
ff = AllChem.MMFFGetMoleculeForceField(mol, mp, confId=cid)
e = ff.CalcEnergy()
`

Would it be possible to add such functionality? This would significantly impact my discovery workflow!
Thanks,
Ethan

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions