Run Prototype DoE buildings with custom weather
Hello all,
I use the create_doe_prototype_building measure which seems to accept only a predefined list of epws. Tried to combine it with measure ChangeLocation but then it complains about not having a stat file. In the end I would just like to run the model with a custom epw. It seems basic so the answer may be out there but I could not find it, sorry about that.
Is there a simpler way ? My tentative workflow below
{
"run_directory": "run_FR_SFH_2013_system01",
"measure_paths": [ "../../OpenStudio-HPXML" ],
"file_paths": [ "../data" ],
"steps": [
{ "arguments":
{ "building_type": "SmallOffice", "template": "DOE Ref 1980-2004", "climate_zone": "ASHRAE 169-2013-5B", "epw_file": "MONTEREY_724915_CZ2010.epw" },
"measure_dir_name": "create_DOE_prototype_building" },
{ "arguments":
{ "weather_file_name": "Paris_2021.epw", "climate_zone": "ASHRAE 169-2013-5B", "set_year": "2021", "use_upstream_args": true, "epw_gsub": "Do Nothing" },
"measure_dir_name": "ChangeBuildingLocation" } ],
"run_options": { "fast": true, "skip_expand_objects": true, "skip_energyplus_preprocess": true } }
Thank you