├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── general_issue.md └── workflows │ └── api_to_gui.yml ├── .gitignore ├── API ├── C │ ├── Asali.c │ ├── Asali.h │ ├── AsaliMatrix.c │ ├── AsaliMatrix.h │ ├── AsaliVector.c │ ├── AsaliVector.h │ ├── compile.sh │ ├── database-generator.c │ ├── elapsed-time.c │ ├── example.c │ ├── omega.H │ ├── thermo.H │ └── transport.H ├── Cpp │ ├── Asali.cpp │ ├── Asali.hpp │ ├── compile.sh │ ├── database-generator.cpp │ ├── elapsed-time.cpp │ ├── example.cpp │ └── shared │ │ ├── omega11.H │ │ ├── omega22.H │ │ ├── thermo.H │ │ └── transport.H ├── Fortran │ ├── Asali.f90 │ ├── compile.sh │ ├── database-generator.f90 │ ├── definitions.f90 │ ├── elapsed-time.f90 │ ├── example.f90 │ ├── omega_subroutine.f90 │ ├── thermo_subroutine.f90 │ └── transport_subroutine.f90 ├── Java │ ├── Asali.java │ ├── DatabaseGenerator.java │ ├── ElapsedTime.java │ ├── Example.java │ ├── OmegaDatabase.java │ ├── ThermoDatabase.java │ ├── TransportDatabase.java │ └── compile.sh ├── Matlab │ ├── Asali.m │ ├── database-generator.m │ ├── database.mat │ └── example.m ├── Octave │ ├── Asali.m │ ├── asali-example.m │ ├── database-generator.m │ ├── database.mat │ └── elapsed-time.m ├── Python │ ├── asali.py │ ├── database-generator.py │ ├── elapsed-time.py │ ├── example.py │ ├── omega.py │ ├── thermo.py │ └── transport.py ├── README.md ├── Rust │ ├── Cargo.toml │ └── src │ │ ├── asali.rs │ │ ├── database-generator.rs │ │ ├── definitions.rs │ │ ├── elapsed-time.rs │ │ ├── main.rs │ │ ├── omega.rs │ │ ├── thermo.rs │ │ └── transport.rs ├── SPECIES.md ├── database │ ├── astar.asali │ ├── name.asali │ ├── omega22.asali │ ├── thermo.asali │ └── transport.asali └── elapsedTimeComparison │ ├── README.md │ └── run.sh ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── GUI ├── README.md ├── app.py ├── asali.spec ├── chemkin │ ├── H2-O2-Rh │ │ ├── kinetic.kin │ │ ├── reference.txt │ │ ├── surface.sur │ │ ├── thermo.tdc │ │ └── transport.tra │ ├── kinetic.kin │ ├── thermo.tdc │ └── transport.tra ├── database │ ├── H2-O2-Rh.yaml │ ├── H2-O2.json │ └── udk.json ├── deb │ ├── DEBIAN │ │ ├── control │ │ ├── postinst │ │ └── prerm │ └── usr │ │ └── share │ │ ├── applications │ │ └── Asali.desktop │ │ └── icons │ │ └── hicolor │ │ └── 128x128 │ │ └── apps │ │ └── Icon.png ├── environment.yml ├── pyproject.toml ├── setup.iss └── src │ ├── config │ ├── app.py │ ├── contact.py │ ├── icon.py │ ├── input_composition.py │ └── regression_plot.py │ ├── controllers │ ├── cantera_file_controller.py │ ├── chemkin_file_controller.py │ ├── edit_lines_validator.py │ ├── exception_handler.py │ ├── label_formatter.py │ ├── path_handler.py │ └── thread_handler.py │ ├── core │ ├── data_keys.py │ ├── data_store.py │ ├── equilibrium_calculator.py │ ├── pressure_drops_calculator.py │ ├── properties_calculator.py │ ├── regression_calculator.py │ ├── species_names.py │ ├── unit_dimension_handler.py │ └── vacuum_calculator.py │ ├── gui │ ├── components │ │ ├── input │ │ │ ├── chemkin_converter_page.py │ │ │ ├── chemkin_thermo_page.py │ │ │ ├── chemkin_transport_page.py │ │ │ ├── equilibrium_page.py │ │ │ ├── main_page.py │ │ │ ├── pressure_drops_page.py │ │ │ ├── properties_page.py │ │ │ ├── regression_page.py │ │ │ └── vacuum_page.py │ │ └── output │ │ │ ├── equilibrium_page.py │ │ │ ├── pressure_drops_page.py │ │ │ ├── properties_page.py │ │ │ ├── regression_page.py │ │ │ └── vacuum_page.py │ ├── enums │ │ ├── chemkin_editor_action.py │ │ ├── composition_type.py │ │ ├── database_type.py │ │ ├── equilibrium_type.py │ │ ├── properties.py │ │ ├── reactor_type.py │ │ └── regression_method.py │ ├── pages │ │ ├── basic_page.py │ │ ├── dialog_pages_handler.py │ │ ├── input │ │ │ ├── chemkin_converter_page.py │ │ │ ├── chemkin_thermo_page.py │ │ │ ├── chemkin_transport_page.py │ │ │ ├── equilibrium_page.py │ │ │ ├── main_page.py │ │ │ ├── pressure_drops_page.py │ │ │ ├── properties_page.py │ │ │ ├── regression_page.py │ │ │ └── vacuum_page.py │ │ ├── main_window.py │ │ └── output │ │ │ ├── equilibrium_page.py │ │ │ ├── pressure_drops_page.py │ │ │ ├── properties_page.py │ │ │ ├── regression_page.py │ │ │ └── vacuum_page.py │ └── ui │ │ ├── input │ │ ├── chemkin_converter_page.ui │ │ ├── chemkin_thermo_page.ui │ │ ├── chemkin_transport_page.ui │ │ ├── equilibrium_page.ui │ │ ├── main_page.ui │ │ ├── pressure_drops_page.ui │ │ ├── properties_page.ui │ │ ├── regression_page.ui │ │ └── vacuum_page.ui │ │ └── output │ │ ├── equilibrium_page.ui │ │ ├── pressure_drops_page.ui │ │ ├── properties_page.ui │ │ ├── regression_page.ui │ │ └── vacuum_page.ui │ └── resources │ ├── database │ └── data.yaml │ ├── images │ ├── BigLogo.png │ ├── Icon.ico │ └── Icon.png │ └── qss │ └── style.qss ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/general_issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/.github/ISSUE_TEMPLATE/general_issue.md -------------------------------------------------------------------------------- /.github/workflows/api_to_gui.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/.github/workflows/api_to_gui.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/.gitignore -------------------------------------------------------------------------------- /API/C/Asali.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/C/Asali.c -------------------------------------------------------------------------------- /API/C/Asali.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/C/Asali.h -------------------------------------------------------------------------------- /API/C/AsaliMatrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/C/AsaliMatrix.c -------------------------------------------------------------------------------- /API/C/AsaliMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/C/AsaliMatrix.h -------------------------------------------------------------------------------- /API/C/AsaliVector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/C/AsaliVector.c -------------------------------------------------------------------------------- /API/C/AsaliVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/C/AsaliVector.h -------------------------------------------------------------------------------- /API/C/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/C/compile.sh -------------------------------------------------------------------------------- /API/C/database-generator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/C/database-generator.c -------------------------------------------------------------------------------- /API/C/elapsed-time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/C/elapsed-time.c -------------------------------------------------------------------------------- /API/C/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/C/example.c -------------------------------------------------------------------------------- /API/C/omega.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/C/omega.H -------------------------------------------------------------------------------- /API/C/thermo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/C/thermo.H -------------------------------------------------------------------------------- /API/C/transport.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/C/transport.H -------------------------------------------------------------------------------- /API/Cpp/Asali.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Cpp/Asali.cpp -------------------------------------------------------------------------------- /API/Cpp/Asali.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Cpp/Asali.hpp -------------------------------------------------------------------------------- /API/Cpp/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Cpp/compile.sh -------------------------------------------------------------------------------- /API/Cpp/database-generator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Cpp/database-generator.cpp -------------------------------------------------------------------------------- /API/Cpp/elapsed-time.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Cpp/elapsed-time.cpp -------------------------------------------------------------------------------- /API/Cpp/example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Cpp/example.cpp -------------------------------------------------------------------------------- /API/Cpp/shared/omega11.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Cpp/shared/omega11.H -------------------------------------------------------------------------------- /API/Cpp/shared/omega22.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Cpp/shared/omega22.H -------------------------------------------------------------------------------- /API/Cpp/shared/thermo.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Cpp/shared/thermo.H -------------------------------------------------------------------------------- /API/Cpp/shared/transport.H: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Cpp/shared/transport.H -------------------------------------------------------------------------------- /API/Fortran/Asali.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Fortran/Asali.f90 -------------------------------------------------------------------------------- /API/Fortran/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Fortran/compile.sh -------------------------------------------------------------------------------- /API/Fortran/database-generator.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Fortran/database-generator.f90 -------------------------------------------------------------------------------- /API/Fortran/definitions.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Fortran/definitions.f90 -------------------------------------------------------------------------------- /API/Fortran/elapsed-time.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Fortran/elapsed-time.f90 -------------------------------------------------------------------------------- /API/Fortran/example.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Fortran/example.f90 -------------------------------------------------------------------------------- /API/Fortran/omega_subroutine.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Fortran/omega_subroutine.f90 -------------------------------------------------------------------------------- /API/Fortran/thermo_subroutine.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Fortran/thermo_subroutine.f90 -------------------------------------------------------------------------------- /API/Fortran/transport_subroutine.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Fortran/transport_subroutine.f90 -------------------------------------------------------------------------------- /API/Java/Asali.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Java/Asali.java -------------------------------------------------------------------------------- /API/Java/DatabaseGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Java/DatabaseGenerator.java -------------------------------------------------------------------------------- /API/Java/ElapsedTime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Java/ElapsedTime.java -------------------------------------------------------------------------------- /API/Java/Example.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Java/Example.java -------------------------------------------------------------------------------- /API/Java/OmegaDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Java/OmegaDatabase.java -------------------------------------------------------------------------------- /API/Java/ThermoDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Java/ThermoDatabase.java -------------------------------------------------------------------------------- /API/Java/TransportDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Java/TransportDatabase.java -------------------------------------------------------------------------------- /API/Java/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Java/compile.sh -------------------------------------------------------------------------------- /API/Matlab/Asali.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Matlab/Asali.m -------------------------------------------------------------------------------- /API/Matlab/database-generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Matlab/database-generator.m -------------------------------------------------------------------------------- /API/Matlab/database.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Matlab/database.mat -------------------------------------------------------------------------------- /API/Matlab/example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Matlab/example.m -------------------------------------------------------------------------------- /API/Octave/Asali.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Octave/Asali.m -------------------------------------------------------------------------------- /API/Octave/asali-example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Octave/asali-example.m -------------------------------------------------------------------------------- /API/Octave/database-generator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Octave/database-generator.m -------------------------------------------------------------------------------- /API/Octave/database.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Octave/database.mat -------------------------------------------------------------------------------- /API/Octave/elapsed-time.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Octave/elapsed-time.m -------------------------------------------------------------------------------- /API/Python/asali.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Python/asali.py -------------------------------------------------------------------------------- /API/Python/database-generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Python/database-generator.py -------------------------------------------------------------------------------- /API/Python/elapsed-time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Python/elapsed-time.py -------------------------------------------------------------------------------- /API/Python/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Python/example.py -------------------------------------------------------------------------------- /API/Python/omega.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Python/omega.py -------------------------------------------------------------------------------- /API/Python/thermo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Python/thermo.py -------------------------------------------------------------------------------- /API/Python/transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Python/transport.py -------------------------------------------------------------------------------- /API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/README.md -------------------------------------------------------------------------------- /API/Rust/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Rust/Cargo.toml -------------------------------------------------------------------------------- /API/Rust/src/asali.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Rust/src/asali.rs -------------------------------------------------------------------------------- /API/Rust/src/database-generator.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Rust/src/database-generator.rs -------------------------------------------------------------------------------- /API/Rust/src/definitions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Rust/src/definitions.rs -------------------------------------------------------------------------------- /API/Rust/src/elapsed-time.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Rust/src/elapsed-time.rs -------------------------------------------------------------------------------- /API/Rust/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Rust/src/main.rs -------------------------------------------------------------------------------- /API/Rust/src/omega.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Rust/src/omega.rs -------------------------------------------------------------------------------- /API/Rust/src/thermo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Rust/src/thermo.rs -------------------------------------------------------------------------------- /API/Rust/src/transport.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/Rust/src/transport.rs -------------------------------------------------------------------------------- /API/SPECIES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/SPECIES.md -------------------------------------------------------------------------------- /API/database/astar.asali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/database/astar.asali -------------------------------------------------------------------------------- /API/database/name.asali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/database/name.asali -------------------------------------------------------------------------------- /API/database/omega22.asali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/database/omega22.asali -------------------------------------------------------------------------------- /API/database/thermo.asali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/database/thermo.asali -------------------------------------------------------------------------------- /API/database/transport.asali: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/database/transport.asali -------------------------------------------------------------------------------- /API/elapsedTimeComparison/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/elapsedTimeComparison/README.md -------------------------------------------------------------------------------- /API/elapsedTimeComparison/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/API/elapsedTimeComparison/run.sh -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /GUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/README.md -------------------------------------------------------------------------------- /GUI/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/app.py -------------------------------------------------------------------------------- /GUI/asali.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/asali.spec -------------------------------------------------------------------------------- /GUI/chemkin/H2-O2-Rh/kinetic.kin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/chemkin/H2-O2-Rh/kinetic.kin -------------------------------------------------------------------------------- /GUI/chemkin/H2-O2-Rh/reference.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/chemkin/H2-O2-Rh/reference.txt -------------------------------------------------------------------------------- /GUI/chemkin/H2-O2-Rh/surface.sur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/chemkin/H2-O2-Rh/surface.sur -------------------------------------------------------------------------------- /GUI/chemkin/H2-O2-Rh/thermo.tdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/chemkin/H2-O2-Rh/thermo.tdc -------------------------------------------------------------------------------- /GUI/chemkin/H2-O2-Rh/transport.tra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/chemkin/H2-O2-Rh/transport.tra -------------------------------------------------------------------------------- /GUI/chemkin/kinetic.kin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/chemkin/kinetic.kin -------------------------------------------------------------------------------- /GUI/chemkin/thermo.tdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/chemkin/thermo.tdc -------------------------------------------------------------------------------- /GUI/chemkin/transport.tra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/chemkin/transport.tra -------------------------------------------------------------------------------- /GUI/database/H2-O2-Rh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/database/H2-O2-Rh.yaml -------------------------------------------------------------------------------- /GUI/database/H2-O2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/database/H2-O2.json -------------------------------------------------------------------------------- /GUI/database/udk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/database/udk.json -------------------------------------------------------------------------------- /GUI/deb/DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/deb/DEBIAN/control -------------------------------------------------------------------------------- /GUI/deb/DEBIAN/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/deb/DEBIAN/postinst -------------------------------------------------------------------------------- /GUI/deb/DEBIAN/prerm: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | set -e 3 | # to be done after removal 4 | exit 0 5 | -------------------------------------------------------------------------------- /GUI/deb/usr/share/applications/Asali.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/deb/usr/share/applications/Asali.desktop -------------------------------------------------------------------------------- /GUI/deb/usr/share/icons/hicolor/128x128/apps/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/deb/usr/share/icons/hicolor/128x128/apps/Icon.png -------------------------------------------------------------------------------- /GUI/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/environment.yml -------------------------------------------------------------------------------- /GUI/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/pyproject.toml -------------------------------------------------------------------------------- /GUI/setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/setup.iss -------------------------------------------------------------------------------- /GUI/src/config/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/config/app.py -------------------------------------------------------------------------------- /GUI/src/config/contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/config/contact.py -------------------------------------------------------------------------------- /GUI/src/config/icon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/config/icon.py -------------------------------------------------------------------------------- /GUI/src/config/input_composition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/config/input_composition.py -------------------------------------------------------------------------------- /GUI/src/config/regression_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/config/regression_plot.py -------------------------------------------------------------------------------- /GUI/src/controllers/cantera_file_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/controllers/cantera_file_controller.py -------------------------------------------------------------------------------- /GUI/src/controllers/chemkin_file_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/controllers/chemkin_file_controller.py -------------------------------------------------------------------------------- /GUI/src/controllers/edit_lines_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/controllers/edit_lines_validator.py -------------------------------------------------------------------------------- /GUI/src/controllers/exception_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/controllers/exception_handler.py -------------------------------------------------------------------------------- /GUI/src/controllers/label_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/controllers/label_formatter.py -------------------------------------------------------------------------------- /GUI/src/controllers/path_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/controllers/path_handler.py -------------------------------------------------------------------------------- /GUI/src/controllers/thread_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/controllers/thread_handler.py -------------------------------------------------------------------------------- /GUI/src/core/data_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/core/data_keys.py -------------------------------------------------------------------------------- /GUI/src/core/data_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/core/data_store.py -------------------------------------------------------------------------------- /GUI/src/core/equilibrium_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/core/equilibrium_calculator.py -------------------------------------------------------------------------------- /GUI/src/core/pressure_drops_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/core/pressure_drops_calculator.py -------------------------------------------------------------------------------- /GUI/src/core/properties_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/core/properties_calculator.py -------------------------------------------------------------------------------- /GUI/src/core/regression_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/core/regression_calculator.py -------------------------------------------------------------------------------- /GUI/src/core/species_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/core/species_names.py -------------------------------------------------------------------------------- /GUI/src/core/unit_dimension_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/core/unit_dimension_handler.py -------------------------------------------------------------------------------- /GUI/src/core/vacuum_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/core/vacuum_calculator.py -------------------------------------------------------------------------------- /GUI/src/gui/components/input/chemkin_converter_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/input/chemkin_converter_page.py -------------------------------------------------------------------------------- /GUI/src/gui/components/input/chemkin_thermo_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/input/chemkin_thermo_page.py -------------------------------------------------------------------------------- /GUI/src/gui/components/input/chemkin_transport_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/input/chemkin_transport_page.py -------------------------------------------------------------------------------- /GUI/src/gui/components/input/equilibrium_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/input/equilibrium_page.py -------------------------------------------------------------------------------- /GUI/src/gui/components/input/main_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/input/main_page.py -------------------------------------------------------------------------------- /GUI/src/gui/components/input/pressure_drops_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/input/pressure_drops_page.py -------------------------------------------------------------------------------- /GUI/src/gui/components/input/properties_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/input/properties_page.py -------------------------------------------------------------------------------- /GUI/src/gui/components/input/regression_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/input/regression_page.py -------------------------------------------------------------------------------- /GUI/src/gui/components/input/vacuum_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/input/vacuum_page.py -------------------------------------------------------------------------------- /GUI/src/gui/components/output/equilibrium_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/output/equilibrium_page.py -------------------------------------------------------------------------------- /GUI/src/gui/components/output/pressure_drops_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/output/pressure_drops_page.py -------------------------------------------------------------------------------- /GUI/src/gui/components/output/properties_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/output/properties_page.py -------------------------------------------------------------------------------- /GUI/src/gui/components/output/regression_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/output/regression_page.py -------------------------------------------------------------------------------- /GUI/src/gui/components/output/vacuum_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/components/output/vacuum_page.py -------------------------------------------------------------------------------- /GUI/src/gui/enums/chemkin_editor_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/enums/chemkin_editor_action.py -------------------------------------------------------------------------------- /GUI/src/gui/enums/composition_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/enums/composition_type.py -------------------------------------------------------------------------------- /GUI/src/gui/enums/database_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/enums/database_type.py -------------------------------------------------------------------------------- /GUI/src/gui/enums/equilibrium_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/enums/equilibrium_type.py -------------------------------------------------------------------------------- /GUI/src/gui/enums/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/enums/properties.py -------------------------------------------------------------------------------- /GUI/src/gui/enums/reactor_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/enums/reactor_type.py -------------------------------------------------------------------------------- /GUI/src/gui/enums/regression_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/enums/regression_method.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/basic_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/basic_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/dialog_pages_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/dialog_pages_handler.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/input/chemkin_converter_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/input/chemkin_converter_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/input/chemkin_thermo_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/input/chemkin_thermo_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/input/chemkin_transport_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/input/chemkin_transport_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/input/equilibrium_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/input/equilibrium_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/input/main_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/input/main_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/input/pressure_drops_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/input/pressure_drops_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/input/properties_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/input/properties_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/input/regression_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/input/regression_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/input/vacuum_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/input/vacuum_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/main_window.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/output/equilibrium_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/output/equilibrium_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/output/pressure_drops_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/output/pressure_drops_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/output/properties_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/output/properties_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/output/regression_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/output/regression_page.py -------------------------------------------------------------------------------- /GUI/src/gui/pages/output/vacuum_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/pages/output/vacuum_page.py -------------------------------------------------------------------------------- /GUI/src/gui/ui/input/chemkin_converter_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/input/chemkin_converter_page.ui -------------------------------------------------------------------------------- /GUI/src/gui/ui/input/chemkin_thermo_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/input/chemkin_thermo_page.ui -------------------------------------------------------------------------------- /GUI/src/gui/ui/input/chemkin_transport_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/input/chemkin_transport_page.ui -------------------------------------------------------------------------------- /GUI/src/gui/ui/input/equilibrium_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/input/equilibrium_page.ui -------------------------------------------------------------------------------- /GUI/src/gui/ui/input/main_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/input/main_page.ui -------------------------------------------------------------------------------- /GUI/src/gui/ui/input/pressure_drops_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/input/pressure_drops_page.ui -------------------------------------------------------------------------------- /GUI/src/gui/ui/input/properties_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/input/properties_page.ui -------------------------------------------------------------------------------- /GUI/src/gui/ui/input/regression_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/input/regression_page.ui -------------------------------------------------------------------------------- /GUI/src/gui/ui/input/vacuum_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/input/vacuum_page.ui -------------------------------------------------------------------------------- /GUI/src/gui/ui/output/equilibrium_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/output/equilibrium_page.ui -------------------------------------------------------------------------------- /GUI/src/gui/ui/output/pressure_drops_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/output/pressure_drops_page.ui -------------------------------------------------------------------------------- /GUI/src/gui/ui/output/properties_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/output/properties_page.ui -------------------------------------------------------------------------------- /GUI/src/gui/ui/output/regression_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/output/regression_page.ui -------------------------------------------------------------------------------- /GUI/src/gui/ui/output/vacuum_page.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/gui/ui/output/vacuum_page.ui -------------------------------------------------------------------------------- /GUI/src/resources/database/data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/resources/database/data.yaml -------------------------------------------------------------------------------- /GUI/src/resources/images/BigLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/resources/images/BigLogo.png -------------------------------------------------------------------------------- /GUI/src/resources/images/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/resources/images/Icon.ico -------------------------------------------------------------------------------- /GUI/src/resources/images/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/resources/images/Icon.png -------------------------------------------------------------------------------- /GUI/src/resources/qss/style.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/GUI/src/resources/qss/style.qss -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/srebughini/ASALI/HEAD/README.md --------------------------------------------------------------------------------