├── .gitattributes ├── .gitignore ├── README.md ├── resources ├── CHE_Geneva.067000_IWEC.epw ├── CHE_Geneva.cli ├── GHCitySim.ghx └── GHCitySim_solar.ghx ├── simulation ├── CHE_Geneva.cli ├── test-solar.gnd ├── test-solar.hor ├── test-solar.inp ├── test-solar.rad ├── test-solar.shd ├── test-solar.xml ├── test-solar_SW.out ├── test-solar_VF.out ├── test-solar_foot.xml ├── test-solar_head.xml ├── test-solar_main.xml ├── test-solar_triangulated.rad ├── test.dxf ├── test.gml ├── test.gnd ├── test.hor ├── test.log ├── test.sch ├── test.shd ├── test.stl ├── test.xml ├── test_Area.out ├── test_CM.out ├── test_ClimaticData.out ├── test_DL.out ├── test_ET.out ├── test_HC.out ├── test_Inertia.out ├── test_LW.out ├── test_MRT.out ├── test_SW.dat ├── test_SW.out ├── test_SWv.out ├── test_TH.out ├── test_TS.out ├── test_VF.out ├── test_YearlyResults.out ├── test_YearlyResultsPerBuilding.out ├── test_foot.xml ├── test_head.xml └── test_main.xml ├── src ├── Honeybee_CitySim-Horizon.py ├── Honeybee_CitySim-LoadResults.py ├── Honeybee_CitySim-LoadSolar.py ├── Honeybee_CitySim-RunSimulation.py ├── Honeybee_CitySim-Schedules.py ├── Honeybee_CitySim-Solar.py ├── Honeybee_CitySim-Srf.py ├── Honeybee_Epw to Cli.py ├── Honeybee_Honeybee.py ├── Ladybug_Export Ladybug.py └── Ladybug_Ladybug.py └── userObjects ├── Honeybee_CitySim-Horizon.ghuser ├── Honeybee_CitySim-LoadResults.ghuser ├── Honeybee_CitySim-LoadSolar.ghuser ├── Honeybee_CitySim-RunSimulation.ghuser ├── Honeybee_CitySim-Schedules.ghuser ├── Honeybee_CitySim-Solar.ghuser ├── Honeybee_CitySim-Srf.ghuser ├── Honeybee_Epw to Cli.ghuser ├── Honeybee_Honeybee.ghuser └── Ladybug_Ladybug.ghuser /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/README.md -------------------------------------------------------------------------------- /resources/CHE_Geneva.067000_IWEC.epw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/resources/CHE_Geneva.067000_IWEC.epw -------------------------------------------------------------------------------- /resources/CHE_Geneva.cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/resources/CHE_Geneva.cli -------------------------------------------------------------------------------- /resources/GHCitySim.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/resources/GHCitySim.ghx -------------------------------------------------------------------------------- /resources/GHCitySim_solar.ghx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/resources/GHCitySim_solar.ghx -------------------------------------------------------------------------------- /simulation/CHE_Geneva.cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/CHE_Geneva.cli -------------------------------------------------------------------------------- /simulation/test-solar.gnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test-solar.gnd -------------------------------------------------------------------------------- /simulation/test-solar.hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test-solar.hor -------------------------------------------------------------------------------- /simulation/test-solar.inp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test-solar.inp -------------------------------------------------------------------------------- /simulation/test-solar.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test-solar.rad -------------------------------------------------------------------------------- /simulation/test-solar.shd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test-solar.shd -------------------------------------------------------------------------------- /simulation/test-solar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test-solar.xml -------------------------------------------------------------------------------- /simulation/test-solar_SW.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test-solar_SW.out -------------------------------------------------------------------------------- /simulation/test-solar_VF.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test-solar_VF.out -------------------------------------------------------------------------------- /simulation/test-solar_foot.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation/test-solar_head.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test-solar_head.xml -------------------------------------------------------------------------------- /simulation/test-solar_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test-solar_main.xml -------------------------------------------------------------------------------- /simulation/test-solar_triangulated.rad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test-solar_triangulated.rad -------------------------------------------------------------------------------- /simulation/test.dxf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test.dxf -------------------------------------------------------------------------------- /simulation/test.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test.gml -------------------------------------------------------------------------------- /simulation/test.gnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test.gnd -------------------------------------------------------------------------------- /simulation/test.hor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test.hor -------------------------------------------------------------------------------- /simulation/test.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test.log -------------------------------------------------------------------------------- /simulation/test.sch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test.sch -------------------------------------------------------------------------------- /simulation/test.shd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test.shd -------------------------------------------------------------------------------- /simulation/test.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test.stl -------------------------------------------------------------------------------- /simulation/test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test.xml -------------------------------------------------------------------------------- /simulation/test_Area.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_Area.out -------------------------------------------------------------------------------- /simulation/test_CM.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_CM.out -------------------------------------------------------------------------------- /simulation/test_ClimaticData.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_ClimaticData.out -------------------------------------------------------------------------------- /simulation/test_DL.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_DL.out -------------------------------------------------------------------------------- /simulation/test_ET.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_ET.out -------------------------------------------------------------------------------- /simulation/test_HC.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_HC.out -------------------------------------------------------------------------------- /simulation/test_Inertia.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_Inertia.out -------------------------------------------------------------------------------- /simulation/test_LW.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_LW.out -------------------------------------------------------------------------------- /simulation/test_MRT.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_MRT.out -------------------------------------------------------------------------------- /simulation/test_SW.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_SW.dat -------------------------------------------------------------------------------- /simulation/test_SW.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_SW.out -------------------------------------------------------------------------------- /simulation/test_SWv.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_SWv.out -------------------------------------------------------------------------------- /simulation/test_TH.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_TH.out -------------------------------------------------------------------------------- /simulation/test_TS.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_TS.out -------------------------------------------------------------------------------- /simulation/test_VF.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_VF.out -------------------------------------------------------------------------------- /simulation/test_YearlyResults.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_YearlyResults.out -------------------------------------------------------------------------------- /simulation/test_YearlyResultsPerBuilding.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_YearlyResultsPerBuilding.out -------------------------------------------------------------------------------- /simulation/test_foot.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /simulation/test_head.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_head.xml -------------------------------------------------------------------------------- /simulation/test_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/simulation/test_main.xml -------------------------------------------------------------------------------- /src/Honeybee_CitySim-Horizon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/src/Honeybee_CitySim-Horizon.py -------------------------------------------------------------------------------- /src/Honeybee_CitySim-LoadResults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/src/Honeybee_CitySim-LoadResults.py -------------------------------------------------------------------------------- /src/Honeybee_CitySim-LoadSolar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/src/Honeybee_CitySim-LoadSolar.py -------------------------------------------------------------------------------- /src/Honeybee_CitySim-RunSimulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/src/Honeybee_CitySim-RunSimulation.py -------------------------------------------------------------------------------- /src/Honeybee_CitySim-Schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/src/Honeybee_CitySim-Schedules.py -------------------------------------------------------------------------------- /src/Honeybee_CitySim-Solar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/src/Honeybee_CitySim-Solar.py -------------------------------------------------------------------------------- /src/Honeybee_CitySim-Srf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/src/Honeybee_CitySim-Srf.py -------------------------------------------------------------------------------- /src/Honeybee_Epw to Cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/src/Honeybee_Epw to Cli.py -------------------------------------------------------------------------------- /src/Honeybee_Honeybee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/src/Honeybee_Honeybee.py -------------------------------------------------------------------------------- /src/Ladybug_Export Ladybug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/src/Ladybug_Export Ladybug.py -------------------------------------------------------------------------------- /src/Ladybug_Ladybug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/src/Ladybug_Ladybug.py -------------------------------------------------------------------------------- /userObjects/Honeybee_CitySim-Horizon.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/userObjects/Honeybee_CitySim-Horizon.ghuser -------------------------------------------------------------------------------- /userObjects/Honeybee_CitySim-LoadResults.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/userObjects/Honeybee_CitySim-LoadResults.ghuser -------------------------------------------------------------------------------- /userObjects/Honeybee_CitySim-LoadSolar.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/userObjects/Honeybee_CitySim-LoadSolar.ghuser -------------------------------------------------------------------------------- /userObjects/Honeybee_CitySim-RunSimulation.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/userObjects/Honeybee_CitySim-RunSimulation.ghuser -------------------------------------------------------------------------------- /userObjects/Honeybee_CitySim-Schedules.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/userObjects/Honeybee_CitySim-Schedules.ghuser -------------------------------------------------------------------------------- /userObjects/Honeybee_CitySim-Solar.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/userObjects/Honeybee_CitySim-Solar.ghuser -------------------------------------------------------------------------------- /userObjects/Honeybee_CitySim-Srf.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/userObjects/Honeybee_CitySim-Srf.ghuser -------------------------------------------------------------------------------- /userObjects/Honeybee_Epw to Cli.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/userObjects/Honeybee_Epw to Cli.ghuser -------------------------------------------------------------------------------- /userObjects/Honeybee_Honeybee.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/userObjects/Honeybee_Honeybee.ghuser -------------------------------------------------------------------------------- /userObjects/Ladybug_Ladybug.ghuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gperonato/GHCitySim/HEAD/userObjects/Ladybug_Ladybug.ghuser --------------------------------------------------------------------------------