TorsiondriveDataset

pydantic model openff.qcsubmit.datasets.TorsiondriveDataset[source]

An torsiondrive dataset class which handles submission of settings differently from the basic dataset, and creates torsiondrive datasets in the public or local qcarcive instance.

Important

The dihedral_ranges for the whole dataset can be defined here or if different scan ranges are required on a case by case basis they can be defined for each torsion in a molecule separately in the keywords of the torsiondrive entry.

Show JSON schema
{
   "title": "TorsiondriveDataset",
   "description": "An torsiondrive dataset class which handles submission of settings differently from the basic dataset, and creates\ntorsiondrive datasets in the public or local qcarcive instance.\n\nImportant:\n    The dihedral_ranges for the whole dataset can be defined here or if different scan ranges are required on a case\n    by case basis they can be defined for each torsion in a molecule separately in the keywords of the torsiondrive entry.",
   "type": "object",
   "properties": {
      "qc_specifications": {
         "title": "Qc Specifications",
         "description": "The QCSpecifications which will be computed for this dataset.",
         "default": {
            "default": {
               "method": "B3LYP-D3BJ",
               "basis": "DZVP",
               "program": "psi4",
               "spec_name": "default",
               "spec_description": "Standard OpenFF optimization quantum chemistry specification.",
               "store_wavefunction": "none",
               "implicit_solvent": null,
               "maxiter": 200,
               "scf_properties": [
                  "dipole",
                  "quadrupole",
                  "wiberg_lowdin_indices",
                  "mayer_indices"
               ],
               "keywords": null
            }
         },
         "type": "object",
         "additionalProperties": {
            "$ref": "#/definitions/QCSpec"
         }
      },
      "driver": {
         "default": "gradient",
         "allOf": [
            {
               "$ref": "#/definitions/DriverEnum"
            }
         ]
      },
      "priority": {
         "title": "Priority",
         "description": "The priority the dataset should be computed at compared to other datasets currently running.",
         "default": "normal",
         "type": "string"
      },
      "dataset_tags": {
         "title": "Dataset Tags",
         "description": "The dataset tags which help identify the dataset.",
         "default": [
            "openff"
         ],
         "type": "array",
         "items": {
            "type": "string"
         }
      },
      "compute_tag": {
         "title": "Compute Tag",
         "description": "The tag the computes tasks will be assigned to, managers wishing to execute these tasks should use this compute tag.",
         "default": "openff",
         "type": "string"
      },
      "dataset_name": {
         "title": "Dataset Name",
         "description": "The name of the dataset, this will be the name given to the collection in QCArchive.",
         "type": "string"
      },
      "dataset_tagline": {
         "title": "Dataset Tagline",
         "description": "The tagline should be a short description of the dataset which will be displayed by the QCArchive client when the collections are listed.",
         "minLength": 8,
         "pattern": "[a-zA-Z]",
         "type": "string"
      },
      "type": {
         "title": "Type",
         "default": "TorsionDriveDataset",
         "enum": [
            "TorsionDriveDataset"
         ],
         "type": "string"
      },
      "description": {
         "title": "Description",
         "description": "A long description of the datasets purpose and details about the molecules within.",
         "minLength": 8,
         "pattern": "[a-zA-Z]",
         "type": "string"
      },
      "metadata": {
         "title": "Metadata",
         "description": "The metadata describing the dataset.",
         "default": {
            "submitter": "docs",
            "creation_date": "2023-01-06",
            "collection_type": null,
            "dataset_name": null,
            "short_description": null,
            "long_description_url": null,
            "long_description": null,
            "elements": []
         },
         "allOf": [
            {
               "$ref": "#/definitions/Metadata"
            }
         ]
      },
      "provenance": {
         "title": "Provenance",
         "description": "A dictionary of the software and versions used to generate the dataset.",
         "default": {},
         "type": "object",
         "additionalProperties": {
            "type": "string"
         }
      },
      "dataset": {
         "title": "Dataset",
         "default": {},
         "type": "object",
         "additionalProperties": {
            "$ref": "#/definitions/TorsionDriveEntry"
         }
      },
      "filtered_molecules": {
         "title": "Filtered Molecules",
         "description": "The set of workflow components used to generate the dataset with any filtered molecules.",
         "default": {},
         "type": "object",
         "additionalProperties": {
            "$ref": "#/definitions/FilterEntry"
         }
      },
      "optimization_procedure": {
         "title": "Optimization Procedure",
         "default": {
            "program": "geometric",
            "coordsys": "dlc",
            "enforce": 0.1,
            "epsilon": 0.0,
            "reset": true,
            "qccnv": true,
            "molcnv": false,
            "check": 0,
            "trust": 0.1,
            "tmax": 0.3,
            "maxiter": 300,
            "convergence_set": "GAU",
            "constraints": {}
         },
         "allOf": [
            {
               "$ref": "#/definitions/GeometricProcedure"
            }
         ]
      },
      "grid_spacing": {
         "title": "Grid Spacing",
         "description": "The grid spcaing that should be used for all torsiondrives, this can be overwriten on a per entry basis.",
         "default": [
            15
         ],
         "type": "array",
         "items": {
            "type": "integer"
         }
      },
      "energy_upper_limit": {
         "title": "Energy Upper Limit",
         "description": "The upper energy limit to spawn new optimizations in the torsiondrive.",
         "default": 0.05,
         "type": "number"
      },
      "dihedral_ranges": {
         "title": "Dihedral Ranges",
         "description": "The scan range that should be used for each torsiondrive, this can be overwriten on a per entry basis.",
         "type": "array",
         "items": {
            "type": "array",
            "minItems": 2,
            "maxItems": 2,
            "items": [
               {
                  "type": "integer"
               },
               {
                  "type": "integer"
               }
            ]
         }
      },
      "energy_decrease_thresh": {
         "title": "Energy Decrease Thresh",
         "description": "The energy lower threshold to trigger new optimizations in the torsiondrive.",
         "type": "number"
      }
   },
   "required": [
      "dataset_name",
      "dataset_tagline",
      "description"
   ],
   "definitions": {
      "WavefunctionProtocolEnum": {
         "title": "WavefunctionProtocolEnum",
         "description": "Wavefunction to keep from a computation.",
         "enum": [
            "all",
            "orbitals_and_eigenvalues",
            "return_results",
            "none"
         ],
         "type": "string"
      },
      "PCMSettings": {
         "title": "PCMSettings",
         "description": "A class to handle PCM settings which can be used with PSi4.",
         "type": "object",
         "properties": {
            "units": {
               "title": "Units",
               "description": "The units used in the input options atomic units are used by default.",
               "type": "string"
            },
            "codata": {
               "title": "Codata",
               "description": "The set of fundamental physical constants to be used in the module.",
               "default": 2010,
               "type": "integer"
            },
            "cavity_Type": {
               "title": "Cavity Type",
               "description": "Completely specifies type of molecular surface and its discretization.",
               "default": "GePol",
               "type": "string"
            },
            "cavity_Area": {
               "title": "Cavity Area",
               "description": "Average area (weight) of the surface partition for the GePol cavity in the specified units. By default this is in AU.",
               "default": 0.3,
               "type": "number"
            },
            "cavity_Scaling": {
               "title": "Cavity Scaling",
               "description": "If true, the radii for the spheres will be scaled by 1.2. For finer control on the scaling factor for each sphere, select explicit creation mode.",
               "default": true,
               "type": "boolean"
            },
            "cavity_RadiiSet": {
               "title": "Cavity Radiiset",
               "description": "Select set of atomic radii to be used. Currently Bondi-Mantina Bondi, UFF  and Allinger\u2019s MM3 sets available. Radii in Allinger\u2019s MM3 set are obtained by dividing the value in the original paper by 1.2, as done in the ADF COSMO implementation We advise to turn off scaling of the radii by 1.2 when using this set.",
               "default": "Bondi",
               "type": "string"
            },
            "cavity_MinRadius": {
               "title": "Cavity Minradius",
               "description": "Minimal radius for additional spheres not centered on atoms. An arbitrarily big value is equivalent to switching off the use of added spheres, which is the default in AU.",
               "default": 100,
               "type": "number"
            },
            "cavity_Mode": {
               "title": "Cavity Mode",
               "description": "How to create the list of spheres for the generation of the molecular surface.",
               "default": "Implicit",
               "type": "string"
            },
            "medium_SolverType": {
               "title": "Medium Solvertype",
               "description": "Type of solver to be used. All solvers are based on the Integral Equation Formulation of the Polarizable Continuum Model.",
               "default": "IEFPCM",
               "type": "string"
            },
            "medium_Nonequilibrium": {
               "title": "Medium Nonequilibrium",
               "description": "Initializes an additional solver using the dynamic permittivity. To be used in response calculations.",
               "default": false,
               "type": "boolean"
            },
            "medium_Solvent": {
               "title": "Medium Solvent",
               "description": "Specification of the dielectric medium outside the cavity. Note this will always be converted to the molecular formula to aid parsing via PCM.",
               "type": "string"
            },
            "medium_MatrixSymm": {
               "title": "Medium Matrixsymm",
               "description": "If True, the PCM matrix obtained by the IEFPCM collocation solver is symmetrized.",
               "default": true,
               "type": "boolean"
            },
            "medium_Correction": {
               "title": "Medium Correction",
               "description": "Correction, k for the apparent surface charge scaling factor in the CPCM solver.",
               "default": 0.0,
               "minimum": 0,
               "type": "number"
            },
            "medium_DiagonalScaling": {
               "title": "Medium Diagonalscaling",
               "description": "Scaling factor for diagonal of collocation matrices, values commonly used in the literature are 1.07 and 1.0694.",
               "default": 1.07,
               "minimum": 0,
               "type": "number"
            },
            "medium_ProbeRadius": {
               "title": "Medium Proberadius",
               "description": "Radius of the spherical probe approximating a solvent molecule. Used for generating the solvent-excluded surface (SES) or an approximation of it. Overridden by the built-in value for the chosen solvent. Default in AU.",
               "default": 1.0,
               "type": "number"
            }
         },
         "required": [
            "units",
            "medium_Solvent"
         ]
      },
      "SCFProperties": {
         "title": "SCFProperties",
         "description": "The type of SCF property that should be extracted from a single point calculation.",
         "enum": [
            "dipole",
            "quadrupole",
            "mulliken_charges",
            "lowdin_charges",
            "wiberg_lowdin_indices",
            "mayer_indices",
            "mbis_charges"
         ],
         "type": "string"
      },
      "QCSpec": {
         "title": "QCSpec",
         "description": "A basic config class for results structures.",
         "type": "object",
         "properties": {
            "method": {
               "title": "Method",
               "description": "The name of the computational model used to execute the calculation. This could be the QC method or the forcefield name.",
               "default": "B3LYP-D3BJ",
               "type": "string"
            },
            "basis": {
               "title": "Basis",
               "description": "The name of the basis that should be used with the given method, outside of QC this can be the parameterization ie antechamber or None.",
               "default": "DZVP",
               "type": "string"
            },
            "program": {
               "title": "Program",
               "description": "The name of the program that will be used to perform the calculation.",
               "default": "psi4",
               "type": "string"
            },
            "spec_name": {
               "title": "Spec Name",
               "description": "The name the specification will be stored under in QCArchive.",
               "default": "default",
               "type": "string"
            },
            "spec_description": {
               "title": "Spec Description",
               "description": "The description of the specification which will be stored in QCArchive.",
               "default": "Standard OpenFF optimization quantum chemistry specification.",
               "type": "string"
            },
            "store_wavefunction": {
               "description": "The level of wavefunction detail that should be saved in QCArchive. Note that this is done for every calculation and should not be used with optimizations.",
               "default": "none",
               "allOf": [
                  {
                     "$ref": "#/definitions/WavefunctionProtocolEnum"
                  }
               ]
            },
            "implicit_solvent": {
               "title": "Implicit Solvent",
               "description": "If PCM is to be used with psi4 this is the full description of the settings that should be used.",
               "allOf": [
                  {
                     "$ref": "#/definitions/PCMSettings"
                  }
               ]
            },
            "maxiter": {
               "title": "Maxiter",
               "description": "The maximum number of SCF iterations in QM calculations this will be ignored by programs where this does not make sense.",
               "default": 200,
               "exclusiveMinimum": 0,
               "type": "integer"
            },
            "scf_properties": {
               "description": "The SCF properties which should be extracted after every single point calculation.",
               "default": [
                  "dipole",
                  "quadrupole",
                  "wiberg_lowdin_indices",
                  "mayer_indices"
               ],
               "type": "array",
               "items": {
                  "$ref": "#/definitions/SCFProperties"
               }
            },
            "keywords": {
               "title": "Keywords",
               "description": "An optional set of program specific computational keywords that should be passed to the program. These may include, for example, DFT grid settings.",
               "type": "object",
               "additionalProperties": {
                  "anyOf": [
                     {
                        "type": "string"
                     },
                     {
                        "type": "integer"
                     },
                     {
                        "type": "number"
                     },
                     {
                        "type": "boolean"
                     },
                     {
                        "type": "array",
                        "items": {
                           "type": "number"
                        }
                     }
                  ]
               }
            }
         }
      },
      "DriverEnum": {
         "title": "DriverEnum",
         "description": "The type of calculation that is being performed (e.g., energy, gradient, Hessian, ...).",
         "enum": [
            "energy",
            "gradient",
            "hessian",
            "properties"
         ],
         "type": "string"
      },
      "Metadata": {
         "title": "Metadata",
         "description": "A general metadata class which is required to be filled in before submitting a dataset to the qcarchive.",
         "type": "object",
         "properties": {
            "submitter": {
               "title": "Submitter",
               "description": "The name of the submitter/creator of the dataset, this is automatically generated but can be changed.",
               "default": "docs",
               "type": "string"
            },
            "creation_date": {
               "title": "Creation Date",
               "description": "The date the dataset was created on, this is automatically generated.",
               "default": "2023-01-06",
               "type": "string",
               "format": "date"
            },
            "collection_type": {
               "title": "Collection Type",
               "description": "The type of collection that will be created in QCArchive this is automatically updated when attached to a dataset.",
               "type": "string"
            },
            "dataset_name": {
               "title": "Dataset Name",
               "description": "The name that will be given to the collection once it is put into QCArchive, this is updated when attached to a dataset.",
               "type": "string"
            },
            "short_description": {
               "title": "Short Description",
               "description": "A short informative description of the dataset.",
               "minLength": 8,
               "pattern": "[a-zA-Z]",
               "type": "string"
            },
            "long_description_url": {
               "title": "Long Description Url",
               "description": "The url which links to more information about the submission normally a github repo with scripts showing how the dataset was created.",
               "minLength": 1,
               "maxLength": 2083,
               "format": "uri",
               "type": "string"
            },
            "long_description": {
               "title": "Long Description",
               "description": "A long description of the purpose of the dataset and the molecules within.",
               "minLength": 8,
               "pattern": "[a-zA-Z]",
               "type": "string"
            },
            "elements": {
               "title": "Elements",
               "description": "The unique set of elements present in the dataset",
               "default": [],
               "type": "array",
               "items": {
                  "type": "string"
               },
               "uniqueItems": true
            }
         }
      },
      "Identifiers": {
         "title": "Identifiers",
         "description": "Canonical chemical identifiers",
         "type": "object",
         "properties": {
            "molecule_hash": {
               "title": "Molecule Hash",
               "type": "string"
            },
            "molecular_formula": {
               "title": "Molecular Formula",
               "type": "string"
            },
            "smiles": {
               "title": "Smiles",
               "type": "string"
            },
            "inchi": {
               "title": "Inchi",
               "type": "string"
            },
            "inchikey": {
               "title": "Inchikey",
               "type": "string"
            },
            "canonical_explicit_hydrogen_smiles": {
               "title": "Canonical Explicit Hydrogen Smiles",
               "type": "string"
            },
            "canonical_isomeric_explicit_hydrogen_mapped_smiles": {
               "title": "Canonical Isomeric Explicit Hydrogen Mapped Smiles",
               "type": "string"
            },
            "canonical_isomeric_explicit_hydrogen_smiles": {
               "title": "Canonical Isomeric Explicit Hydrogen Smiles",
               "type": "string"
            },
            "canonical_isomeric_smiles": {
               "title": "Canonical Isomeric Smiles",
               "type": "string"
            },
            "canonical_smiles": {
               "title": "Canonical Smiles",
               "type": "string"
            },
            "pubchem_cid": {
               "title": "Pubchem Cid",
               "description": "PubChem Compound ID",
               "type": "string"
            },
            "pubchem_sid": {
               "title": "Pubchem Sid",
               "description": "PubChem Substance ID",
               "type": "string"
            },
            "pubchem_conformerid": {
               "title": "Pubchem Conformerid",
               "description": "PubChem Conformer ID",
               "type": "string"
            }
         },
         "additionalProperties": false
      },
      "Provenance": {
         "title": "Provenance",
         "description": "Provenance information.",
         "type": "object",
         "properties": {
            "creator": {
               "title": "Creator",
               "description": "The name of the program, library, or person who created the object.",
               "type": "string"
            },
            "version": {
               "title": "Version",
               "description": "The version of the creator, blank otherwise. This should be sortable by the very broad `PEP 440 <https://www.python.org/dev/peps/pep-0440/>`_.",
               "default": "",
               "type": "string"
            },
            "routine": {
               "title": "Routine",
               "description": "The name of the routine or function within the creator, blank otherwise.",
               "default": "",
               "type": "string"
            }
         },
         "required": [
            "creator"
         ],
         "$schema": "http://json-schema.org/draft-04/schema#"
      },
      "Molecule": {
         "title": "Molecule",
         "description": "The physical Cartesian representation of the molecular system.\n\nA QCSchema representation of a Molecule. This model contains\ndata for symbols, geometry, connectivity, charges, fragmentation, etc while also supporting a wide array of I/O and manipulation capabilities.\n\nMolecule objects geometry, masses, and charges are truncated to 8, 6, and 4 decimal places respectively to assist with duplicate detection.\n\nNotes\n-----\nAll arrays are stored flat but must be reshapable into the dimensions in attribute ``shape``, with abbreviations as follows:\n\n  * nat: number of atomic = calcinfo_natom\n  * nfr: number of fragments\n  * <varies>: irregular dimension not systematically reshapable",
         "type": "object",
         "properties": {
            "schema_name": {
               "title": "Schema Name",
               "description": "The QCSchema specification to which this model conforms. Explicitly fixed as qcschema_molecule.",
               "default": "qcschema_molecule",
               "pattern": "^(qcschema_molecule)$",
               "type": "string"
            },
            "schema_version": {
               "title": "Schema Version",
               "description": "The version number of :attr:`~qcelemental.models.Molecule.schema_name` to which this model conforms.",
               "default": 2,
               "type": "integer"
            },
            "validated": {
               "title": "Validated",
               "description": "A boolean indicator (for speed purposes) that the input Molecule data has been previously checked for schema (data layout and type) and physics (e.g., non-overlapping atoms, feasible multiplicity) compliance. This should be False in most cases. A ``True`` setting should only ever be set by the constructor for this class itself or other trusted sources such as a Fractal Server or previously serialized Molecules.",
               "default": false,
               "type": "boolean"
            },
            "symbols": {
               "title": "Symbols",
               "description": "The ordered array of atomic elemental symbols in title case. This field's index sets atomic order for all other per-atom fields like :attr:`~qcelemental.models.Molecule.real` and the first dimension of :attr:`~qcelemental.models.Molecule.geometry`. Ghost/virtual atoms must have an entry here in :attr:`~qcelemental.models.Molecule.symbols`; ghostedness is indicated through the :attr:`~qcelemental.models.Molecule.real` field.",
               "shape": [
                  "nat"
               ],
               "type": "array",
               "items": {
                  "type": "string"
               }
            },
            "geometry": {
               "title": "Geometry",
               "description": "The ordered array for Cartesian XYZ atomic coordinates [a0]. Atom ordering is fixed; that is, a consumer who shuffles atoms must not reattach the input (pre-shuffling) molecule schema instance to any output (post-shuffling) per-atom results (e.g., gradient). Index of the first dimension matches the 0-indexed indices of all other per-atom settings like :attr:`~qcelemental.models.Molecule.symbols` and :attr:`~qcelemental.models.Molecule.real`.\nSerialized storage is always flat, (3*nat,), but QCSchema implementations will want to reshape it. QCElemental can also accept array-likes which can be mapped to (nat,3) such as a 1-D list of length 3*nat, or the serialized version of the array in (3*nat,) shape; all forms will be reshaped to (nat,3) for this attribute.",
               "shape": [
                  "nat",
                  3
               ],
               "units": "a0",
               "type": "array",
               "items": {
                  "type": "number"
               }
            },
            "name": {
               "title": "Name",
               "description": "Common or human-readable name to assign to this molecule. This field can be arbitrary; see :attr:`~qcelemental.models.Molecule.identifiers` for well-defined labels.",
               "type": "string"
            },
            "identifiers": {
               "title": "Identifiers",
               "description": "An optional dictionary of additional identifiers by which this molecule can be referenced, such as INCHI, canonical SMILES, etc. See the :class:`~qcelemental.models.results.Identifiers` model for more details.",
               "allOf": [
                  {
                     "$ref": "#/definitions/Identifiers"
                  }
               ]
            },
            "comment": {
               "title": "Comment",
               "description": "Additional comments for this molecule. Intended for pure human/user consumption and clarity.",
               "type": "string"
            },
            "molecular_charge": {
               "title": "Molecular Charge",
               "description": "The net electrostatic charge of the molecule.",
               "default": 0.0,
               "type": "number"
            },
            "molecular_multiplicity": {
               "title": "Molecular Multiplicity",
               "description": "The total multiplicity of the molecule.",
               "default": 1,
               "type": "integer"
            },
            "masses": {
               "title": "Masses",
               "description": "The ordered array of atomic masses. Index order matches the 0-indexed indices of all other per-atom fields like :attr:`~qcelemental.models.Molecule.symbols` and :attr:`~qcelemental.models.Molecule.real`. If this is not provided, the mass of each atom is inferred from its most common isotope. If this is provided, it must be the same length as :attr:`~qcelemental.models.Molecule.symbols` but can accept ``None`` entries for standard masses to infer from the same index in the :attr:`~qcelemental.models.Molecule.symbols` field.",
               "shape": [
                  "nat"
               ],
               "units": "u",
               "type": "array",
               "items": {
                  "type": "number"
               }
            },
            "real": {
               "title": "Real",
               "description": "The ordered array indicating if each atom is real (``True``) or ghost/virtual (``False``). Index matches the 0-indexed indices of all other per-atom settings like :attr:`~qcelemental.models.Molecule.symbols` and the first dimension of :attr:`~qcelemental.models.Molecule.geometry`. If this is not provided, all atoms are assumed to be real (``True``).If this is provided, the reality or ghostedness of every atom must be specified.",
               "shape": [
                  "nat"
               ],
               "type": "array",
               "items": {
                  "type": "boolean"
               }
            },
            "atom_labels": {
               "title": "Atom Labels",
               "description": "Additional per-atom labels as an array of strings. Typical use is in model conversions, such as Elemental <-> Molpro and not typically something which should be user assigned. See the :attr:`~qcelemental.models.Molecule.comment` field for general human-consumable text to affix to the molecule.",
               "shape": [
                  "nat"
               ],
               "type": "array",
               "items": {
                  "type": "string"
               }
            },
            "atomic_numbers": {
               "title": "Atomic Numbers",
               "description": "An optional ordered 1-D array-like object of atomic numbers of shape (nat,). Index matches the 0-indexed indices of all other per-atom settings like :attr:`~qcelemental.models.Molecule.symbols` and :attr:`~qcelemental.models.Molecule.real`. Values are inferred from the :attr:`~qcelemental.models.Molecule.symbols` list if not explicitly set. Ghostedness should be indicated through :attr:`~qcelemental.models.Molecule.real` field, not zeros here.",
               "shape": [
                  "nat"
               ],
               "type": "array",
               "items": {
                  "type": "number",
                  "multipleOf": 1.0
               }
            },
            "mass_numbers": {
               "title": "Mass Numbers",
               "description": "An optional ordered 1-D array-like object of atomic *mass* numbers of shape (nat). Index matches the 0-indexed indices of all other per-atom settings like :attr:`~qcelemental.models.Molecule.symbols` and :attr:`~qcelemental.models.Molecule.real`. Values are inferred from the most common isotopes of the :attr:`~qcelemental.models.Molecule.symbols` list if not explicitly set. If single isotope not (yet) known for an atom, -1 is placeholder.",
               "shape": [
                  "nat"
               ],
               "type": "array",
               "items": {
                  "type": "number",
                  "multipleOf": 1.0
               }
            },
            "connectivity": {
               "title": "Connectivity",
               "description": "A list of bonds within the molecule. Each entry is a tuple of ``(atom_index_A, atom_index_B, bond_order)`` where the ``atom_index`` matches the 0-indexed indices of all other per-atom settings like :attr:`~qcelemental.models.Molecule.symbols` and :attr:`~qcelemental.models.Molecule.real`. Bonds may be freely reordered and inverted.",
               "minItems": 1,
               "type": "array",
               "items": {
                  "type": "array",
                  "minItems": 3,
                  "maxItems": 3,
                  "items": [
                     {
                        "type": "integer",
                        "minimum": 0
                     },
                     {
                        "type": "integer",
                        "minimum": 0
                     },
                     {
                        "type": "number",
                        "minimum": 0,
                        "maximum": 5
                     }
                  ]
               }
            },
            "fragments": {
               "title": "Fragments",
               "description": "List of indices grouping atoms (0-indexed) into molecular fragments within the molecule. Each entry in the outer list is a new fragment; index matches the ordering in :attr:`~qcelemental.models.Molecule.fragment_charges` and :attr:`~qcelemental.models.Molecule.fragment_multiplicities`. Inner lists are 0-indexed atoms which compose the fragment; every atom must be in exactly one inner list. Noncontiguous fragments are allowed, though no QM program is known to support them. Fragment ordering is fixed; that is, a consumer who shuffles fragments must not reattach the input (pre-shuffling) molecule schema instance to any output (post-shuffling) per-fragment results (e.g., n-body energy arrays).",
               "shape": [
                  "nfr",
                  "<varies>"
               ],
               "type": "array",
               "items": {
                  "type": "array",
                  "items": {
                     "type": "number",
                     "multipleOf": 1.0
                  }
               }
            },
            "fragment_charges": {
               "title": "Fragment Charges",
               "description": "The total charge of each fragment in the :attr:`~qcelemental.models.Molecule.fragments` list. The index of this list matches the 0-index indices of :attr:`~qcelemental.models.Molecule.fragments` list. Will be filled in based on a set of rules if not provided (and :attr:`~qcelemental.models.Molecule.fragments` are specified).",
               "shape": [
                  "nfr"
               ],
               "type": "array",
               "items": {
                  "type": "number"
               }
            },
            "fragment_multiplicities": {
               "title": "Fragment Multiplicities",
               "description": "The multiplicity of each fragment in the :attr:`~qcelemental.models.Molecule.fragments` list. The index of this list matches the 0-index indices of :attr:`~qcelemental.models.Molecule.fragments` list. Will be filled in based on a set of rules if not provided (and :attr:`~qcelemental.models.Molecule.fragments` are specified).",
               "shape": [
                  "nfr"
               ],
               "type": "array",
               "items": {
                  "type": "integer"
               }
            },
            "fix_com": {
               "title": "Fix Com",
               "description": "Whether translation of geometry is allowed (fix F) or disallowed (fix T).When False, QCElemental will pre-process the Molecule object to translate the center of mass to (0,0,0) in Euclidean coordinate space, resulting in a different :attr:`~qcelemental.models.Molecule.geometry` than the one provided. 'Fix' is used in the sense of 'specify': that is, `fix_com=True` signals that the origin in `geometry` is a deliberate part of the Molecule spec, whereas `fix_com=False` (default) allows that the origin is happenstance and may be adjusted. guidance: A consumer who translates the geometry must not reattach the input (pre-translation) molecule schema instance to any output (post-translation) origin-sensitive results (e.g., an ordinary energy when EFP present).",
               "default": false,
               "type": "boolean"
            },
            "fix_orientation": {
               "title": "Fix Orientation",
               "description": "Whether rotation of geometry is allowed (fix F) or disallowed (fix T). When False, QCElemental will pre-process the Molecule object to orient via the intertial tensor, resulting in a different :attr:`~qcelemental.models.Molecule.geometry` than the one provided. 'Fix' is used in the sense of 'specify': that is, `fix_orientation=True` signals that the frame orientation in `geometry` is a deliberate part of the Molecule spec, whereas `fix_orientation=False` (default) allows that the frame is happenstance and may be adjusted. guidance: A consumer who rotates the geometry must not reattach the input (pre-rotation) molecule schema instance to any output (post-rotation) frame-sensitive results (e.g., molecular vibrations).",
               "default": false,
               "type": "boolean"
            },
            "fix_symmetry": {
               "title": "Fix Symmetry",
               "description": "Maximal point group symmetry which :attr:`~qcelemental.models.Molecule.geometry` should be treated. Lowercase.",
               "type": "string"
            },
            "provenance": {
               "title": "Provenance",
               "description": "The provenance information about how this Molecule (and its attributes) were generated, provided, and manipulated.",
               "allOf": [
                  {
                     "$ref": "#/definitions/Provenance"
                  }
               ]
            },
            "id": {
               "title": "Id",
               "description": "A unique identifier for this Molecule object. This field exists primarily for Databases (e.g. Fractal's Server) to track and lookup this specific object and should virtually never need to be manually set."
            },
            "extras": {
               "title": "Extras",
               "description": "Additional information to bundle with the molecule. Use for schema development and scratch space.",
               "type": "object"
            }
         },
         "required": [
            "symbols",
            "geometry"
         ],
         "additionalProperties": false,
         "$schema": "http://json-schema.org/draft-04/schema#"
      },
      "MoleculeAttributes": {
         "title": "MoleculeAttributes",
         "description": "A class to hold and validate the molecule attributes associated with a QCArchive entry, All attributes are required\nto be entered into a dataset.\n\nNote:\n    The attributes here are not exhaustive but are based on those given by cmiles and can all be obtain through the openforcefield toolkit Molecule class.",
         "type": "object",
         "properties": {
            "canonical_smiles": {
               "title": "Canonical Smiles",
               "type": "string"
            },
            "canonical_isomeric_smiles": {
               "title": "Canonical Isomeric Smiles",
               "type": "string"
            },
            "canonical_explicit_hydrogen_smiles": {
               "title": "Canonical Explicit Hydrogen Smiles",
               "type": "string"
            },
            "canonical_isomeric_explicit_hydrogen_smiles": {
               "title": "Canonical Isomeric Explicit Hydrogen Smiles",
               "type": "string"
            },
            "canonical_isomeric_explicit_hydrogen_mapped_smiles": {
               "title": "Canonical Isomeric Explicit Hydrogen Mapped Smiles",
               "description": "The fully mapped smiles where every atom should have a numerical tag so that the molecule can be rebuilt to match the order of the coordinates.",
               "type": "string"
            },
            "molecular_formula": {
               "title": "Molecular Formula",
               "description": "The hill formula of the molecule as given by the openfftoolkit.",
               "type": "string"
            },
            "standard_inchi": {
               "title": "Standard Inchi",
               "description": "The standard inchi given by the inchi program ie not fixed hydrogen layer.",
               "type": "string"
            },
            "inchi_key": {
               "title": "Inchi Key",
               "description": "The standard inchi key given by the inchi program.",
               "type": "string"
            },
            "fixed_hydrogen_inchi": {
               "title": "Fixed Hydrogen Inchi",
               "description": "The non-standard inchi with a fixed hydrogen layer to distinguish tautomers.",
               "type": "string"
            },
            "fixed_hydrogen_inchi_key": {
               "title": "Fixed Hydrogen Inchi Key",
               "description": "The non-standard inchikey with a fixed hydrogen layer.",
               "type": "string"
            },
            "unique_fixed_hydrogen_inchi_keys": {
               "title": "Unique Fixed Hydrogen Inchi Keys",
               "description": "The list of unique non-standard inchikey with a fixed hydrogen layer.",
               "type": "array",
               "items": {
                  "type": "string"
               },
               "uniqueItems": true
            }
         },
         "required": [
            "canonical_smiles",
            "canonical_isomeric_smiles",
            "canonical_explicit_hydrogen_smiles",
            "canonical_isomeric_explicit_hydrogen_smiles",
            "canonical_isomeric_explicit_hydrogen_mapped_smiles",
            "molecular_formula",
            "standard_inchi",
            "inchi_key"
         ]
      },
      "TDSettings": {
         "title": "TDSettings",
         "description": "A replacement of the TDKeywords class in the QCFractal which drops the dihedrals field as this is moved up the model.\nThe settings here overwrite the global dataset and allow the user to have control over the individual scans.",
         "type": "object",
         "properties": {
            "grid_spacing": {
               "title": "Grid Spacing",
               "description": "List of grid spacings for the dihedral scan in degrees.",
               "type": "array",
               "items": {
                  "type": "integer"
               }
            },
            "dihedral_ranges": {
               "title": "Dihedral Ranges",
               "description": "A list of the dihedral scan limits of the form (lower, upper)",
               "type": "array",
               "items": {
                  "type": "array",
                  "minItems": 2,
                  "maxItems": 2,
                  "items": [
                     {
                        "type": "integer"
                     },
                     {
                        "type": "integer"
                     }
                  ]
               }
            },
            "energy_decrease_thresh": {
               "title": "Energy Decrease Thresh",
               "description": "The threshold of the smallest energy decrease amount to trigger activating optimizations from grid point.",
               "type": "number"
            },
            "energy_upper_limit": {
               "title": "Energy Upper Limit",
               "description": "The threshold if the energy of a grid point that is higher than the current global minimum, to start new optimizations, in unit of a.u. I.e. if energy_upper_limit = 0.05, current global minimum energy is -9.9 , then a new task starting with energy -9.8 will be skipped.",
               "type": "number"
            },
            "additional_keywords": {
               "title": "Additional Keywords",
               "description": "Additional keywords to add to the torsiondrive's optimization runs",
               "default": {},
               "type": "object"
            }
         }
      },
      "DihedralConstraint": {
         "title": "DihedralConstraint",
         "description": "A basic config class for results structures.",
         "type": "object",
         "properties": {
            "type": {
               "title": "Type",
               "default": "dihedral",
               "enum": [
                  "dihedral"
               ],
               "type": "string"
            },
            "indices": {
               "title": "Indices",
               "type": "array",
               "minItems": 4,
               "maxItems": 4,
               "items": [
                  {
                     "type": "integer"
                  },
                  {
                     "type": "integer"
                  },
                  {
                     "type": "integer"
                  },
                  {
                     "type": "integer"
                  }
               ]
            },
            "bonded": {
               "title": "Bonded",
               "description": "If this is a bonded constraint, this will trigger a validation step to ensure all of the atoms are bonded.",
               "default": true,
               "type": "boolean"
            }
         },
         "required": [
            "indices"
         ]
      },
      "AngleConstraint": {
         "title": "AngleConstraint",
         "description": "A basic config class for results structures.",
         "type": "object",
         "properties": {
            "type": {
               "title": "Type",
               "default": "angle",
               "enum": [
                  "angle"
               ],
               "type": "string"
            },
            "indices": {
               "title": "Indices",
               "type": "array",
               "minItems": 3,
               "maxItems": 3,
               "items": [
                  {
                     "type": "integer"
                  },
                  {
                     "type": "integer"
                  },
                  {
                     "type": "integer"
                  }
               ]
            },
            "bonded": {
               "title": "Bonded",
               "description": "If this is a bonded constraint, this will trigger a validation step to ensure all of the atoms are bonded.",
               "default": true,
               "type": "boolean"
            }
         },
         "required": [
            "indices"
         ]
      },
      "DistanceConstraint": {
         "title": "DistanceConstraint",
         "description": "A basic config class for results structures.",
         "type": "object",
         "properties": {
            "type": {
               "title": "Type",
               "default": "distance",
               "enum": [
                  "distance"
               ],
               "type": "string"
            },
            "indices": {
               "title": "Indices",
               "type": "array",
               "minItems": 2,
               "maxItems": 2,
               "items": [
                  {
                     "type": "integer"
                  },
                  {
                     "type": "integer"
                  }
               ]
            },
            "bonded": {
               "title": "Bonded",
               "description": "If this is a bonded constraint, this will trigger a validation step to ensure all of the atoms are bonded.",
               "default": true,
               "type": "boolean"
            }
         },
         "required": [
            "indices"
         ]
      },
      "PositionConstraint": {
         "title": "PositionConstraint",
         "description": "A basic config class for results structures.",
         "type": "object",
         "properties": {
            "type": {
               "title": "Type",
               "default": "xyz",
               "enum": [
                  "xyz"
               ],
               "type": "string"
            },
            "indices": {
               "title": "Indices",
               "type": "array",
               "items": {
                  "type": "integer"
               }
            }
         },
         "required": [
            "indices"
         ]
      },
      "DihedralConstraintSet": {
         "title": "DihedralConstraintSet",
         "description": "A basic config class for results structures.",
         "type": "object",
         "properties": {
            "type": {
               "title": "Type",
               "default": "dihedral",
               "enum": [
                  "dihedral"
               ],
               "type": "string"
            },
            "indices": {
               "title": "Indices",
               "type": "array",
               "minItems": 4,
               "maxItems": 4,
               "items": [
                  {
                     "type": "integer"
                  },
                  {
                     "type": "integer"
                  },
                  {
                     "type": "integer"
                  },
                  {
                     "type": "integer"
                  }
               ]
            },
            "bonded": {
               "title": "Bonded",
               "description": "If this is a bonded constraint, this will trigger a validation step to ensure all of the atoms are bonded.",
               "default": true,
               "type": "boolean"
            },
            "value": {
               "title": "Value",
               "type": "number"
            }
         },
         "required": [
            "indices",
            "value"
         ]
      },
      "AngleConstraintSet": {
         "title": "AngleConstraintSet",
         "description": "A basic config class for results structures.",
         "type": "object",
         "properties": {
            "type": {
               "title": "Type",
               "default": "angle",
               "enum": [
                  "angle"
               ],
               "type": "string"
            },
            "indices": {
               "title": "Indices",
               "type": "array",
               "minItems": 3,
               "maxItems": 3,
               "items": [
                  {
                     "type": "integer"
                  },
                  {
                     "type": "integer"
                  },
                  {
                     "type": "integer"
                  }
               ]
            },
            "bonded": {
               "title": "Bonded",
               "description": "If this is a bonded constraint, this will trigger a validation step to ensure all of the atoms are bonded.",
               "default": true,
               "type": "boolean"
            },
            "value": {
               "title": "Value",
               "type": "number"
            }
         },
         "required": [
            "indices",
            "value"
         ]
      },
      "DistanceConstraintSet": {
         "title": "DistanceConstraintSet",
         "description": "A basic config class for results structures.",
         "type": "object",
         "properties": {
            "type": {
               "title": "Type",
               "default": "distance",
               "enum": [
                  "distance"
               ],
               "type": "string"
            },
            "indices": {
               "title": "Indices",
               "type": "array",
               "minItems": 2,
               "maxItems": 2,
               "items": [
                  {
                     "type": "integer"
                  },
                  {
                     "type": "integer"
                  }
               ]
            },
            "bonded": {
               "title": "Bonded",
               "description": "If this is a bonded constraint, this will trigger a validation step to ensure all of the atoms are bonded.",
               "default": true,
               "type": "boolean"
            },
            "value": {
               "title": "Value",
               "type": "number"
            }
         },
         "required": [
            "indices",
            "value"
         ]
      },
      "PositionConstraintSet": {
         "title": "PositionConstraintSet",
         "description": "A basic config class for results structures.",
         "type": "object",
         "properties": {
            "type": {
               "title": "Type",
               "default": "xyz",
               "enum": [
                  "xyz"
               ],
               "type": "string"
            },
            "indices": {
               "title": "Indices",
               "type": "array",
               "minItems": 1,
               "maxItems": 1,
               "items": [
                  {
                     "type": "integer"
                  }
               ]
            },
            "value": {
               "title": "Value",
               "description": "The value the constraint should be set to, a value or possition.",
               "anyOf": [
                  {
                     "type": "string"
                  },
                  {
                     "type": "array",
                     "minItems": 3,
                     "maxItems": 3,
                     "items": [
                        {
                           "type": "number"
                        },
                        {
                           "type": "number"
                        },
                        {
                           "type": "number"
                        }
                     ]
                  }
               ]
            }
         },
         "required": [
            "indices",
            "value"
         ]
      },
      "Constraints": {
         "title": "Constraints",
         "description": "A constraints holder which validates the constraints type and data structure however the indices are not checked for connection as this is not required.",
         "type": "object",
         "properties": {
            "freeze": {
               "title": "Freeze",
               "description": "The list of freeze type constraints.",
               "default": [],
               "type": "array",
               "items": {
                  "anyOf": [
                     {
                        "$ref": "#/definitions/DihedralConstraint"
                     },
                     {
                        "$ref": "#/definitions/AngleConstraint"
                     },
                     {
                        "$ref": "#/definitions/DistanceConstraint"
                     },
                     {
                        "$ref": "#/definitions/PositionConstraint"
                     }
                  ]
               }
            },
            "set": {
               "title": "Set",
               "description": "The list of set type constraints.",
               "default": [],
               "type": "array",
               "items": {
                  "anyOf": [
                     {
                        "$ref": "#/definitions/DihedralConstraintSet"
                     },
                     {
                        "$ref": "#/definitions/AngleConstraintSet"
                     },
                     {
                        "$ref": "#/definitions/DistanceConstraintSet"
                     },
                     {
                        "$ref": "#/definitions/PositionConstraintSet"
                     }
                  ]
               }
            }
         }
      },
      "TorsionDriveEntry": {
         "title": "TorsionDriveEntry",
         "description": "A Torsiondrive dataset specific class which can check dihedral indices and store torsiondrive specific settings with built in validation.",
         "type": "object",
         "properties": {
            "index": {
               "title": "Index",
               "description": "The index name the molecule will be stored under in QCArchive. Note that if multipule geometries are provided the index will be augmented with a value indecating the conformer number so -0, -1.",
               "type": "string"
            },
            "initial_molecules": {
               "title": "Initial Molecules",
               "description": "A list of QCElemental Molecule objects which contain the geometries to be used as inputs for the calculation.",
               "type": "array",
               "items": {
                  "$ref": "#/definitions/Molecule"
               }
            },
            "attributes": {
               "title": "Attributes",
               "description": "The complete set of required cmiles attributes for the molecule.",
               "allOf": [
                  {
                     "$ref": "#/definitions/MoleculeAttributes"
                  }
               ]
            },
            "extras": {
               "title": "Extras",
               "description": "Any extra information that should be injected into the QCElemental models before being submited like the cmiles information.",
               "default": {},
               "type": "object"
            },
            "keywords": {
               "title": "Keywords",
               "description": "The torsiondrive keyword settings which can be used to overwrite the general global settings used in the dataset allowing for finner control.",
               "default": {
                  "grid_spacing": null,
                  "dihedral_ranges": null,
                  "energy_decrease_thresh": null,
                  "energy_upper_limit": null,
                  "additional_keywords": {}
               },
               "allOf": [
                  {
                     "$ref": "#/definitions/TDSettings"
                  }
               ]
            },
            "constraints": {
               "title": "Constraints",
               "description": "Any constraints which should be used during an optimization.",
               "default": {},
               "allOf": [
                  {
                     "$ref": "#/definitions/Constraints"
                  }
               ]
            },
            "dihedrals": {
               "title": "Dihedrals",
               "description": "The list of dihedrals that should be driven, currently only 1D or 2D torsions are supported.",
               "type": "array",
               "items": {
                  "type": "array",
                  "minItems": 4,
                  "maxItems": 4,
                  "items": [
                     {
                        "type": "integer"
                     },
                     {
                        "type": "integer"
                     },
                     {
                        "type": "integer"
                     },
                     {
                        "type": "integer"
                     }
                  ]
               }
            }
         },
         "required": [
            "index",
            "initial_molecules",
            "attributes",
            "dihedrals"
         ]
      },
      "FilterEntry": {
         "title": "FilterEntry",
         "description": "A basic data class that contains information on components run in a workflow and the associated molecules which were\nremoved by it.",
         "type": "object",
         "properties": {
            "component": {
               "title": "Component",
               "description": "The name of the component ran, this should be one of the components registered with qcsubmit.",
               "type": "string"
            },
            "component_settings": {
               "title": "Component Settings",
               "description": "The run time settings of the component used to filter the molecules.",
               "type": "object"
            },
            "component_provenance": {
               "title": "Component Provenance",
               "description": "A dictionary of the version information of all dependencies of the component.",
               "type": "object",
               "additionalProperties": {
                  "type": "string"
               }
            },
            "molecules": {
               "title": "Molecules",
               "type": "array",
               "items": {
                  "type": "string"
               }
            }
         },
         "required": [
            "component",
            "component_settings",
            "component_provenance",
            "molecules"
         ]
      },
      "GeometricProcedure": {
         "title": "GeometricProcedure",
         "description": "This is a settings class controlling the various runtime options that can be used when running geometric.\n\nNote:\n    The coordinate systems supported by geometric are:\n\n        - `cart` Cartesian\n        - `prim` Primitive a.k.a redundant\n        - `dlc` Delocalised Internal Coordinates\n        - `hdlc` Hybrid Delocalised Internal Coordinates\n        - `tric` Translation-Rotation-Internal Coordinates, this is the default default\n\nImportant:\n    Geometric currently accepts the following convergence criteria sets:\n\n        +-------------------+---------------------+--------+---------+--------+--------+-------+\n        |  Set              | Set Name            | Energy |  GRMS   | GMAX   | DRMS   | DMAX  |\n        +-------------------+---------------------+--------+---------+--------+--------+-------+\n        | `GAU`             | Gaussian default    | 1e-6   | 3e-4    | 4.5e-4 | 1.2e-3 | 1.8e-3|\n        +-------------------+---------------------+--------+---------+--------+--------+-------+\n        | `NWCHEM_LOOSE`    | NW-Chem loose       | 1e-6   | 3e-3    | 4.5e-3 | 3.6e-3 | 5.4e-3|\n        +-------------------+---------------------+--------+---------+--------+--------+-------+\n        | `GAU_LOOSE`       | Gaussian loose      | 1e-6   | 1.7e-3  | 2.5e-3 | 6.7e-3 | 1e-2  |\n        +-------------------+---------------------+--------+---------+--------+--------+-------+\n        | `TURBOMOLE`       | Turbomole default   | 1e-6   | 5e-4    | 1e-3   | 5.0e-4 | 1e-3  |\n        +-------------------+---------------------+--------+---------+--------+--------+-------+\n        | `INTERFRAG_TIGHT` | Interfrag tight     | 1e-6   | 1e-5    | 1.5e-5 | 4.0e-4 | 6.0e-4|\n        +-------------------+---------------------+--------+---------+--------+--------+-------+\n        | `GAU_TIGHT`       | Gaussian tight      | 1e-6   | 1e-5    | 1.5e-5 | 4e-5   | 6e-5  |\n        +-------------------+---------------------+--------+---------+--------+--------+-------+\n        | `GAU_VERYTIGHT`   | Gaussian very tight | 1e-6   | 1e-6    | 2e-6   | 4e-6   | 6e-6  |\n        +-------------------+---------------------+--------+---------+--------+--------+-------+",
         "type": "object",
         "properties": {
            "program": {
               "title": "Program",
               "description": "The name of the program executing the procedure.",
               "default": "geometric",
               "enum": [
                  "geometric"
               ],
               "type": "string"
            },
            "coordsys": {
               "title": "Coordsys",
               "description": "The type of coordinate system which should be used during the optimization. Choices are tric, prim, dlc, hdlc, and cart.",
               "default": "dlc",
               "enum": [
                  "tric",
                  "prim",
                  "dlc",
                  "hdlc",
                  "cart"
               ],
               "type": "string"
            },
            "enforce": {
               "title": "Enforce",
               "description": "The threshold( in a.u / rad) to activate precise constraint satisfaction.",
               "default": 0.0,
               "type": "number"
            },
            "epsilon": {
               "title": "Epsilon",
               "description": "Small eigenvalue threshold.",
               "default": 1e-05,
               "type": "number"
            },
            "reset": {
               "title": "Reset",
               "description": "Reset the Hessian when the eigenvalues are under epsilon.",
               "default": true,
               "type": "boolean"
            },
            "qccnv": {
               "title": "Qccnv",
               "description": "Activate Q-Chem style convergence criteria(i.e.gradient and either energy or displacement).",
               "default": false,
               "type": "boolean"
            },
            "molcnv": {
               "title": "Molcnv",
               "description": "Activate Molpro style convergence criteria (i.e.gradient and either energy or displacement, with different defaults).",
               "default": false,
               "type": "boolean"
            },
            "check": {
               "title": "Check",
               "description": "The interval for checking the coordinate system for changes.",
               "default": 0,
               "type": "integer"
            },
            "trust": {
               "title": "Trust",
               "description": "Starting value of the trust radius.",
               "default": 0.1,
               "type": "number"
            },
            "tmax": {
               "title": "Tmax",
               "description": "Maximum value of trust radius.",
               "default": 0.3,
               "type": "number"
            },
            "maxiter": {
               "title": "Maxiter",
               "description": "Maximum number of optimization cycles.",
               "default": 300,
               "type": "integer"
            },
            "convergence_set": {
               "title": "Convergence Set",
               "description": "The set of convergence criteria to be used for the optimisation.",
               "default": "GAU",
               "enum": [
                  "GAU",
                  "NWCHEM_LOOSE",
                  "GAU_LOOSE",
                  "TURBOMOLE",
                  "INTERFRAG_TIGHT",
                  "GAU_TIGHT",
                  "GAU_VERYTIGHT"
               ],
               "type": "string"
            },
            "constraints": {
               "title": "Constraints",
               "description": "The list of constraints orginsed by set and freeze that should be used in the optimization",
               "default": {},
               "type": "object"
            }
         }
      }
   }
}

Config
  • allow_mutation: bool = True

  • arbitrary_types_allowed: bool = True

  • json_encoders: dict = {<class ‘numpy.ndarray’>: <function DatasetConfig.Config.<lambda> at 0x7f458c1c88b0>, <enum ‘Enum’>: <function DatasetConfig.Config.<lambda> at 0x7f458c1c8940>}

  • validate_assignment: bool = True

Fields
  • dataset (Dict[str, openff.qcsubmit.datasets.entries.TorsionDriveEntry])

  • dihedral_ranges (Optional[List[Tuple[int, int]]])

  • energy_decrease_thresh (Optional[float])

  • energy_upper_limit (float)

  • grid_spacing (List[int])

  • optimization_procedure (openff.qcsubmit.procedures.GeometricProcedure)

  • type (Literal['TorsionDriveDataset'])

Validators
  • _check_driver » driver

field dataset: Dict[str, openff.qcsubmit.datasets.entries.TorsionDriveEntry] = {}
field type: Literal['TorsionDriveDataset'] = 'TorsionDriveDataset'
field optimization_procedure: openff.qcsubmit.procedures.GeometricProcedure = GeometricProcedure(program='geometric', coordsys='dlc', enforce=0.1, epsilon=0.0, reset=True, qccnv=True, molcnv=False, check=0, trust=0.1, tmax=0.3, maxiter=300, convergence_set='GAU', constraints={})
field grid_spacing: List[int] = [15]

The grid spcaing that should be used for all torsiondrives, this can be overwriten on a per entry basis.

field energy_upper_limit: float = 0.05

The upper energy limit to spawn new optimizations in the torsiondrive.

field dihedral_ranges: Optional[List[Tuple[int, int]]] = None

The scan range that should be used for each torsiondrive, this can be overwriten on a per entry basis.

field energy_decrease_thresh: Optional[float] = None

The energy lower threshold to trigger new optimizations in the torsiondrive.

property n_records: int

Calculate the number of records that will be submitted.

to_tasks()[source]

Build a list of QCEngine procedure tasks which correspond to this dataset.

Return type

Dict[str, List[qcelemental.models.procedures.OptimizationInput]]