Source code for crystal_builder_step.crystal_builder_parameters

# -*- coding: utf-8 -*-
"""
Control parameters for the Crystal Builder step in a SEAMM flowchart
"""

import logging
import seamm

logger = logging.getLogger(__name__)


lattice_systems = {
    "cubic": {
        "lattices": ["fcc", "bcc", "primitive"],
        "parameters": ["a"],
        "cell": ["a", "a", "a", 90.0, 90.0, 90.0],
    },
    "hexagonal": {
        "lattices": ["primitive", "hcp"],
        "parameters": ["a", "c"],
        "cell": ["a", "a", "c", 90.0, 90.0, 120.0],
    },
    "rhombohedral": {
        "lattices": ["primitive"],
        "parameters": ["a", "alpha"],
        "cell": ["a", "a", "a", "alpha", "alpha", "alpha"],
    },
    "tetragonal": {
        "lattices": ["primitive", "body-centered"],
        "parameters": ["a", "c"],
        "cell": ["a", "a", "c", 90.0, 90.0, 90.0],
    },
    "orthorombic": {
        "lattices": [
            "primitive",
            "body-centered",
            "base-centered",
            "face-centered",
        ],
        "parameters": ["a", "b", "c"],
        "cell": ["a", "b", "c", 90.0, 90.0, 90.0],
    },
    "monoclinic": {
        "lattices": ["primitive", "base-centered"],
        "parameters": ["a", "b", "c", "beta"],
        "cell": ["a", "b", "c", 90.0, "beta", 90.0],
    },
    "triclinic": {
        "lattices": ["primitive"],
        "parameters": ["a", "b", "c", "alpha", "beta", "gamma"],
        "cell": ["a", "b", "c", "alpha", "beta", "gamma"],
    },
}


[docs]class CrystalBuilderParameters(seamm.Parameters): """ The control parameters for Crystal Builder. The developer will add a dictionary of Parameters to this class. The keys are parameters for the current plugin, which themselves might be dictionaries. You need to replace the 'time' example below with one or more definitions of the control parameters for your plugin and application. Attributes ---------- parameters : {'kind', 'default', 'default_units', 'enumeration', 'format_string', description', help_text'} A dictionary containing the parameters for the current step. Each key of the dictionary is a dictionary that contains the the following keys: kind, default, default_units, enumeration, format_string, description and help text. parameters['kind']: custom Specifies the kind of a variable. While the 'kind' of a variable might be a numeric value, it may still have enumerated custom values meaningful to the user. For instance, if the parameter is a convergence criterion for an optimizer, custom values like 'normal', 'precise', etc, might be adequate. In addition, any parameter can be set to a variable of expression, indicated by having '$' as the first character in the field. For example, $OPTIMIZER_CONV. parameters['default'] : 'integer' or 'float' or 'string' or 'boolean' or 'enum' The default value of the parameter, used to reset it. parameters['default_units'] : str The default units, used for resetting the value. parameters['enumeration']: tuple A tuple of enumerated values. parameters['format_string']: str A format string for 'pretty' output. parameters['description']: str A short string used as a prompt in the GUI. parameters['help_text']: tuple A longer string to display as help for the user. See Also -------- CrystalBuilder, TkCrystalBuilder, CrystalBuilder CrystalBuilderParameters, Crystal BuilderStep Examples -------- parameters = { "time": { "default": 100.0, "kind": "float", "default_units": "ps", "enumeration": tuple(), "format_string": ".1f", "description": "Simulation time:", "help_text": ("The time to simulate in the dynamics run.") }, } """ parameters = { "prototype_group": { "default": "common", "kind": "enumeration", "default_units": None, "enumeration": ( "common", "Strukturbericht", "AFLOW", "prototype", "description", ), "format_string": "", "description": "Which prototypes:", "help_text": "The group of prototypes to display", }, "n_sites": { "default": "any", "kind": "int", "default_units": None, "enumeration": ("any",), "format_string": "", "description": "Number of occupied sites:", "help_text": "The number of occupied sites in the structure.", }, "n_elements": { "default": "any", "kind": "int", "default_units": None, "enumeration": ("any",), "format_string": "", "description": "Number of elements:", "help_text": "The number of elements in the structure.", }, "spacegroup": { "default": "any", "kind": "int", "default_units": None, "enumeration": ("any",), "format_string": "", "description": "Space group (or number):", "help_text": "The space group for the structure.", }, "pearson_symbol": { "default": "any", "kind": "int", "default_units": None, "enumeration": ("any",), "format_string": "", "description": "Pearson:", "help_text": "The Pearson symbol.", }, "prototype": { "default": "", "kind": "enumeration", "default_units": None, "enumeration": ("place", "holders"), "format_string": "", "description": "Prototype:", "help_text": "The prototype to use", }, "AFLOW prototype": { "default": "", "kind": "string", "default_units": None, "enumeration": tuple(), "format_string": "", "description": "AFLOW Prototype:", "help_text": "The AFLOW prototype", }, "elements": { "default": ["Al"], "kind": "list", "default_units": None, "enumeration": tuple(), "format_string": "", "description": "Elements:", "help_text": "The elements at the different sites.", }, "coordinates": { "default": [], "kind": "list", "default_units": None, "enumeration": tuple(), "format_string": "", "description": "Coordinates:", "help_text": "The coordinates of the site.", }, "a": { "default": 10.0, "kind": "float", "default_units": "Å", "enumeration": None, "format_string": ".2f", "description": "a:", "help_text": "The length of the first side of the cell.", }, "b": { "default": 10.0, "kind": "float", "default_units": "Å", "enumeration": None, "format_string": ".2f", "description": "b:", "help_text": "The length of the second side of the cell.", }, "c": { "default": 10.0, "kind": "float", "default_units": "Å", "enumeration": None, "format_string": ".2f", "description": "c:", "help_text": "The length of the third side of the cell.", }, "alpha": { "default": 90.0, "kind": "float", "default_units": "degree", "enumeration": None, "format_string": ".1f", "description": "alpha:", "help_text": "The angle between a and b.", }, "beta": { "default": 90.0, "kind": "float", "default_units": "degree", "enumeration": None, "format_string": ".1f", "description": "beta:", "help_text": "The angle between a and c.", }, "gamma": { "default": 90.0, "kind": "float", "default_units": "degree", "enumeration": None, "format_string": ".1f", "description": "gamma:", "help_text": "The angle between b and c.", }, } def __init__(self, defaults={}, data=None): """ Initialize the parameters, by default with the parameters defined above Parameters ---------- defaults: dict A dictionary of parameters to initialize. The parameters above are used first and any given will override/add to them. data: dict A dictionary of keys and a subdictionary with value and units for updating the current, default values. """ logger.debug("CrystalBuilderParameters.__init__") super().__init__( defaults={**CrystalBuilderParameters.parameters, **defaults}, data=data )