├── .gitignore ├── Flowsheet_Class ├── OntoCape_SFILES_mapping.py ├── __init__.py ├── flowsheet.py ├── nx_to_sfiles.py └── utils_visualization.py ├── LICENSE ├── README.md ├── Real_flowsheets ├── DWSim_pickle_files │ ├── DWSim_106_NaturalGasProcessing.pkl │ ├── DWSim_132_Process_Flowsheet_DMF.pkl │ ├── DWSim_134_PGMME_Process_Flowsheet_v8_9_08_2017.pkl │ ├── DWSim_143_dealkylation_1.pkl │ ├── DWSim_202_Flowsheet_PSD.pkl │ ├── DWSim_29_braytonflowsheet.pkl │ ├── DWSim_48_Ethyleneglycol.pkl │ ├── DWSim_51_fluxograma.pkl │ └── DWSim_94_maleic_anhydride.pkl ├── images │ ├── DWSim_106_NaturalGasProcessing.jpg │ ├── DWSim_132_Process_Flowsheet_DMF.jpg │ ├── DWSim_134_PGMME_Process_Flowsheet_v8_9_08_2017.jpg │ ├── DWSim_143_dealkylation_1.jpg │ ├── DWSim_202_Flowsheet_PSD.jpg │ ├── DWSim_29_braytonflowsheet.jpg │ ├── DWSim_48_Ethyleneglycol.jpg │ ├── DWSim_51_fluxograma.jpg │ └── DWSim_94_maleic_anhydride.jpg └── test_and_load_new_data.py ├── data_augmentation.py ├── demonstration.ipynb ├── docs ├── logos │ ├── Process_Intelligence_Black_Horizontal.png │ └── google-scholar-square.svg └── photos │ ├── Artur.jpg │ ├── Edwin.jpg │ ├── Gabriel.jpg │ └── Lukas.jpg ├── examples ├── Flowsheet_theory-1.png ├── SFILESctrl_example.png └── graph_theory-1.png ├── pyproject.toml ├── run_demonstration.py └── run_demonstration_ctrl.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/.gitignore -------------------------------------------------------------------------------- /Flowsheet_Class/OntoCape_SFILES_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Flowsheet_Class/OntoCape_SFILES_mapping.py -------------------------------------------------------------------------------- /Flowsheet_Class/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Flowsheet_Class/flowsheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Flowsheet_Class/flowsheet.py -------------------------------------------------------------------------------- /Flowsheet_Class/nx_to_sfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Flowsheet_Class/nx_to_sfiles.py -------------------------------------------------------------------------------- /Flowsheet_Class/utils_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Flowsheet_Class/utils_visualization.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/README.md -------------------------------------------------------------------------------- /Real_flowsheets/DWSim_pickle_files/DWSim_106_NaturalGasProcessing.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/DWSim_pickle_files/DWSim_106_NaturalGasProcessing.pkl -------------------------------------------------------------------------------- /Real_flowsheets/DWSim_pickle_files/DWSim_132_Process_Flowsheet_DMF.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/DWSim_pickle_files/DWSim_132_Process_Flowsheet_DMF.pkl -------------------------------------------------------------------------------- /Real_flowsheets/DWSim_pickle_files/DWSim_134_PGMME_Process_Flowsheet_v8_9_08_2017.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/DWSim_pickle_files/DWSim_134_PGMME_Process_Flowsheet_v8_9_08_2017.pkl -------------------------------------------------------------------------------- /Real_flowsheets/DWSim_pickle_files/DWSim_143_dealkylation_1.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/DWSim_pickle_files/DWSim_143_dealkylation_1.pkl -------------------------------------------------------------------------------- /Real_flowsheets/DWSim_pickle_files/DWSim_202_Flowsheet_PSD.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/DWSim_pickle_files/DWSim_202_Flowsheet_PSD.pkl -------------------------------------------------------------------------------- /Real_flowsheets/DWSim_pickle_files/DWSim_29_braytonflowsheet.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/DWSim_pickle_files/DWSim_29_braytonflowsheet.pkl -------------------------------------------------------------------------------- /Real_flowsheets/DWSim_pickle_files/DWSim_48_Ethyleneglycol.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/DWSim_pickle_files/DWSim_48_Ethyleneglycol.pkl -------------------------------------------------------------------------------- /Real_flowsheets/DWSim_pickle_files/DWSim_51_fluxograma.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/DWSim_pickle_files/DWSim_51_fluxograma.pkl -------------------------------------------------------------------------------- /Real_flowsheets/DWSim_pickle_files/DWSim_94_maleic_anhydride.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/DWSim_pickle_files/DWSim_94_maleic_anhydride.pkl -------------------------------------------------------------------------------- /Real_flowsheets/images/DWSim_106_NaturalGasProcessing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/images/DWSim_106_NaturalGasProcessing.jpg -------------------------------------------------------------------------------- /Real_flowsheets/images/DWSim_132_Process_Flowsheet_DMF.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/images/DWSim_132_Process_Flowsheet_DMF.jpg -------------------------------------------------------------------------------- /Real_flowsheets/images/DWSim_134_PGMME_Process_Flowsheet_v8_9_08_2017.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/images/DWSim_134_PGMME_Process_Flowsheet_v8_9_08_2017.jpg -------------------------------------------------------------------------------- /Real_flowsheets/images/DWSim_143_dealkylation_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/images/DWSim_143_dealkylation_1.jpg -------------------------------------------------------------------------------- /Real_flowsheets/images/DWSim_202_Flowsheet_PSD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/images/DWSim_202_Flowsheet_PSD.jpg -------------------------------------------------------------------------------- /Real_flowsheets/images/DWSim_29_braytonflowsheet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/images/DWSim_29_braytonflowsheet.jpg -------------------------------------------------------------------------------- /Real_flowsheets/images/DWSim_48_Ethyleneglycol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/images/DWSim_48_Ethyleneglycol.jpg -------------------------------------------------------------------------------- /Real_flowsheets/images/DWSim_51_fluxograma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/images/DWSim_51_fluxograma.jpg -------------------------------------------------------------------------------- /Real_flowsheets/images/DWSim_94_maleic_anhydride.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/images/DWSim_94_maleic_anhydride.jpg -------------------------------------------------------------------------------- /Real_flowsheets/test_and_load_new_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/Real_flowsheets/test_and_load_new_data.py -------------------------------------------------------------------------------- /data_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/data_augmentation.py -------------------------------------------------------------------------------- /demonstration.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/demonstration.ipynb -------------------------------------------------------------------------------- /docs/logos/Process_Intelligence_Black_Horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/docs/logos/Process_Intelligence_Black_Horizontal.png -------------------------------------------------------------------------------- /docs/logos/google-scholar-square.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/docs/logos/google-scholar-square.svg -------------------------------------------------------------------------------- /docs/photos/Artur.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/docs/photos/Artur.jpg -------------------------------------------------------------------------------- /docs/photos/Edwin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/docs/photos/Edwin.jpg -------------------------------------------------------------------------------- /docs/photos/Gabriel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/docs/photos/Gabriel.jpg -------------------------------------------------------------------------------- /docs/photos/Lukas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/docs/photos/Lukas.jpg -------------------------------------------------------------------------------- /examples/Flowsheet_theory-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/examples/Flowsheet_theory-1.png -------------------------------------------------------------------------------- /examples/SFILESctrl_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/examples/SFILESctrl_example.png -------------------------------------------------------------------------------- /examples/graph_theory-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/examples/graph_theory-1.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run_demonstration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/run_demonstration.py -------------------------------------------------------------------------------- /run_demonstration_ctrl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/process-intelligence-research/SFILES2/HEAD/run_demonstration_ctrl.py --------------------------------------------------------------------------------