├── .gitignore ├── LICENSE ├── README.md ├── doc ├── Makefile ├── NewFactory │ ├── MIP_Cap-Min │ │ ├── activated │ │ │ └── capacities.png │ │ └── deactivated │ │ │ └── capacities.png │ ├── MIP_Partload │ │ ├── min-partload │ │ │ └── elec-timeseries.png │ │ ├── partload-eff │ │ │ └── elec-timeseries.png │ │ ├── reference │ │ │ └── elec-timeseries.png │ │ └── start-up │ │ │ └── elec-timeseries.png │ ├── MIP_Storage_In-Out │ │ ├── activated │ │ │ └── heat-timeseries.png │ │ └── deactivated │ │ │ └── heat-timeseries.png │ ├── NewFactory.xlsm │ ├── NewFactory.xlsx │ ├── img │ │ ├── capacities.png │ │ ├── costs.png │ │ ├── elec-energy.png │ │ ├── elec-timeseries.png │ │ ├── heat-energy.png │ │ └── heat-timeseries.png │ └── intermittent_supply_wind.xlsx ├── conf.py ├── examples.rst ├── img │ ├── capacities.png │ ├── costs.png │ ├── elec-energy.png │ ├── elec-timeseries.png │ ├── heat-energy.png │ ├── heat-timeseries.png │ └── process_commodity_partload_example.png ├── index.rst ├── make.bat ├── overview.rst ├── run_ficus.rst └── tutorial.rst ├── examples ├── cover_heat+elec_automotive.xlsx ├── cover_heat+elec_carbon.xlsx ├── cover_heat+elec_iron.xlsx ├── cover_heat+elec_steel.xlsx ├── example.xlsx ├── example_fromexcel.xlsm ├── runficus.py └── steel_mill_example.xlsx └── ficus.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/NewFactory/MIP_Cap-Min/activated/capacities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/MIP_Cap-Min/activated/capacities.png -------------------------------------------------------------------------------- /doc/NewFactory/MIP_Cap-Min/deactivated/capacities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/MIP_Cap-Min/deactivated/capacities.png -------------------------------------------------------------------------------- /doc/NewFactory/MIP_Partload/min-partload/elec-timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/MIP_Partload/min-partload/elec-timeseries.png -------------------------------------------------------------------------------- /doc/NewFactory/MIP_Partload/partload-eff/elec-timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/MIP_Partload/partload-eff/elec-timeseries.png -------------------------------------------------------------------------------- /doc/NewFactory/MIP_Partload/reference/elec-timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/MIP_Partload/reference/elec-timeseries.png -------------------------------------------------------------------------------- /doc/NewFactory/MIP_Partload/start-up/elec-timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/MIP_Partload/start-up/elec-timeseries.png -------------------------------------------------------------------------------- /doc/NewFactory/MIP_Storage_In-Out/activated/heat-timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/MIP_Storage_In-Out/activated/heat-timeseries.png -------------------------------------------------------------------------------- /doc/NewFactory/MIP_Storage_In-Out/deactivated/heat-timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/MIP_Storage_In-Out/deactivated/heat-timeseries.png -------------------------------------------------------------------------------- /doc/NewFactory/NewFactory.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/NewFactory.xlsm -------------------------------------------------------------------------------- /doc/NewFactory/NewFactory.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/NewFactory.xlsx -------------------------------------------------------------------------------- /doc/NewFactory/img/capacities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/img/capacities.png -------------------------------------------------------------------------------- /doc/NewFactory/img/costs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/img/costs.png -------------------------------------------------------------------------------- /doc/NewFactory/img/elec-energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/img/elec-energy.png -------------------------------------------------------------------------------- /doc/NewFactory/img/elec-timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/img/elec-timeseries.png -------------------------------------------------------------------------------- /doc/NewFactory/img/heat-energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/img/heat-energy.png -------------------------------------------------------------------------------- /doc/NewFactory/img/heat-timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/img/heat-timeseries.png -------------------------------------------------------------------------------- /doc/NewFactory/intermittent_supply_wind.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/NewFactory/intermittent_supply_wind.xlsx -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/examples.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/examples.rst -------------------------------------------------------------------------------- /doc/img/capacities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/img/capacities.png -------------------------------------------------------------------------------- /doc/img/costs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/img/costs.png -------------------------------------------------------------------------------- /doc/img/elec-energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/img/elec-energy.png -------------------------------------------------------------------------------- /doc/img/elec-timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/img/elec-timeseries.png -------------------------------------------------------------------------------- /doc/img/heat-energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/img/heat-energy.png -------------------------------------------------------------------------------- /doc/img/heat-timeseries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/img/heat-timeseries.png -------------------------------------------------------------------------------- /doc/img/process_commodity_partload_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/img/process_commodity_partload_example.png -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/overview.rst -------------------------------------------------------------------------------- /doc/run_ficus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/run_ficus.rst -------------------------------------------------------------------------------- /doc/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/doc/tutorial.rst -------------------------------------------------------------------------------- /examples/cover_heat+elec_automotive.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/examples/cover_heat+elec_automotive.xlsx -------------------------------------------------------------------------------- /examples/cover_heat+elec_carbon.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/examples/cover_heat+elec_carbon.xlsx -------------------------------------------------------------------------------- /examples/cover_heat+elec_iron.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/examples/cover_heat+elec_iron.xlsx -------------------------------------------------------------------------------- /examples/cover_heat+elec_steel.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/examples/cover_heat+elec_steel.xlsx -------------------------------------------------------------------------------- /examples/example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/examples/example.xlsx -------------------------------------------------------------------------------- /examples/example_fromexcel.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/examples/example_fromexcel.xlsm -------------------------------------------------------------------------------- /examples/runficus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/examples/runficus.py -------------------------------------------------------------------------------- /examples/steel_mill_example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/examples/steel_mill_example.xlsx -------------------------------------------------------------------------------- /ficus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tum-ewk/ficus/HEAD/ficus.py --------------------------------------------------------------------------------