Пример #1
0
def read_spc_dict_from_path(dict_path):
    """
    Read species dictionary given the dictionary file path
    
    Args:
        dict_path (str): the absolute path to species dictionary
    
    Returns:
        spc_dict (OrderedDict): an ordered dictionary has all species information
    """
    lib = KineticsLibrary()
    spc_dict = lib.get_species(dict_path)
    return spc_dict