Analysis tools: Densf, FCF, analysis¶
Apart from main computational programs mentioned above, Amsterdam Modeling Suite offers a range of small utility tools that can be used to obtain more specific results. These tools usually base on the prior run of one of the main programs and need the KF file produced by them as a part of the input.
From the functional point of view these tools are very similar to ADF or AMS.
Their results are stored in KF files and their input files follow the same structure of blocks, keys and values.
Because of that the same classes (SCMJob and SCMResults) are used as bases and hence preparation, running and results extraction for utility tools follow the same rules as the AMS program.
The main difference is that usually utility jobs don’t need molecular coordinates as part of the input (they extract this information from previous calculation’s KF file).
So no Molecule instance is needed and the molecule attribute of the job object is simply ignored.
Because of that get_molecule() method does not work with FCFResults, DensfResults etc.
Below you can find the list of dedicated job classes that are currently available. Details about input specification for those jobs can be found in corresponding part of AMS suite documentation.
- class FCFJob(inputjob1=None, inputjob2=None, name='plamsjob', settings=None, depend=None)[source]¶
A class representing calculation of Franck-Condon factors using
fcfprogram.Two new attributes are introduced:
inputjob1andinputjob2. They are used to supply KF files from previous runs tofcfprogram. The value can either be a string with a path to KF file or an instance of any type ofSCMJoborSCMResults(in this case the path to corresponding KF file will be extracted automatically). If the value ofinputjob1orinputjob2isNone, no automatic handling occurs and user needs to manually supply paths to input jobs using proper keywords placed inmyjob.settings.input(STATESorSTATE1andSTATE2).The resulting
TAPE61file is renamed tojobname.t61.- Parameters:
- _serialize_mol()[source]¶
Process
Moleculeinstance stored inmoleculeattribute and add it as relevant entries ofsettings.inputbranch. Abstract method.- Return type:
None
- _remove_mol()[source]¶
Remove from
settings.inputall entries added by_serialize_mol(). Abstract method.- Return type:
None
- class DensfJob(inputjob=None, name='plamsjob', settings=None, depend=None)[source]¶
A class representing calculation of molecular properties on a grid using
densfprogram.A new attribute
inputjobis introduced to supply KF file from previously run job. The value can either be a string with a path to KF file or an instance of any type ofSCMJoborSCMResults(in this case the path to corresponding KF file will be extracted automatically). If the value ofinputjobisNone, no automatic handling occurs and user needs to manually supply path to input job usingINPUTFILEkeyword placed inmyjob.settings.input.The resulting
TAPE41file is renamed tojobname.t41.- _serialize_mol()[source]¶
Process
Moleculeinstance stored inmoleculeattribute and add it as relevant entries ofsettings.inputbranch. Abstract method.- Return type:
None
- _remove_mol()[source]¶
Remove from
settings.inputall entries added by_serialize_mol(). Abstract method.- Return type:
None
- class AMSAnalysisJob(name='plamsjob', settings=None, depend=None)[source]¶
A class for analyzing molecular dynamics trajectories using the
analysisprogram.- Parameters:
kwargs (Any) –
- _serialize_mol()[source]¶
Use the method from AMSJob to move the molecule to the settings object
- Return type:
None