Function: get_betas_from_biso
Reference
Home
List of PyCrysFML08 Dictionaries
List of PyCrysFML08 Functions
USE
get_betas_from_biso returns beta values from B(iso). For a discussion on the different ways of defining the atomic displacement parameters, see http://pd.chem.ucl.ac.uk/pdnn/refine3/adps.htm.
function call
r = get_betas_from_biso(biso: float,cell: dict)
Variable | Type | Description |
---|---|---|
biso | float | B_iso parameter |
cell | dict | Unit cell. It must be a dictionary of type cell_g_type or cell_gls_type. It can be generated with the function set_crystal_cell. |
r | tuple | The tuple returned by the function. r[0] : int, error code. If non-zero, an error has occurred. r[1] : str, error message. r[2]: ndarray, dtype=float32, shape=6, beta values. |
examples