diff --git a/ci/travis/setup.sh b/ci/travis/setup.sh index 8cb576b90..0dd83ce1c 100755 --- a/ci/travis/setup.sh +++ b/ci/travis/setup.sh @@ -42,6 +42,11 @@ else export GEM_HOME="$TRAVIS_BUILD_DIR/gems" export GEM_PATH="$TRAVIS_BUILD_DIR/gems:$TRAVIS_BUILD_DIR/gems/bundler/gems" + # set the ulimit to be higher + ulimit -a + ulimit -n 2048 + ulimit -a + elif [ "${TRAVIS_OS_NAME}" == "linux" ]; then echo "Setting up Ubuntu for unit tests and Rubocop" # install pipe viewer to throttle printing logs to screen (not a big deal in linux, but it is in osx) diff --git a/ci/travis/test.sh b/ci/travis/test.sh index 9910a0505..8f4dd9deb 100755 --- a/ci/travis/test.sh +++ b/ci/travis/test.sh @@ -31,6 +31,7 @@ else # run unit tests via openstudio_meta run_rspec command which attempts to reproduce the PAT local environment # prior to running tests, so we should not set enviroment variables here if [ "${BUILD_TYPE}" == "test" ];then + ulimit -a echo "starting unit tests. RUBYLIB=$RUBYLIB ; OPENSTUDIO_TEST_EXE=$OPENSTUDIO_TEST_EXE" ruby "${TRAVIS_BUILD_DIR}/bin/openstudio_meta" run_rspec --debug --verbose --mongo-dir="$mongo_dir" --openstudio-exe="$OPENSTUDIO_TEST_EXE" "${TRAVIS_BUILD_DIR}/spec/unit-test" exit_status=$? diff --git a/server/Gemfile b/server/Gemfile index d7df0db8b..de30f35ec 100644 --- a/server/Gemfile +++ b/server/Gemfile @@ -123,4 +123,6 @@ group :development, :test do gem 'factory_bot_rails', '4.11.1' # 5.0.2 require ruby 2.3 gem 'mongoid-rspec' gem 'rspec-html-matchers', '0.8.1' + + gem 'json-schema', '2.8.0' end diff --git a/server/app/lib/analysis_library/schema/osa.json b/server/app/lib/analysis_library/schema/osa.json new file mode 100755 index 000000000..d7f08946b --- /dev/null +++ b/server/app/lib/analysis_library/schema/osa.json @@ -0,0 +1,1082 @@ +{ + "$schema": "http://json-schema.org/draft-04/schema#", + "type": "object", + "properties": { + "analysis": { + "properties": { + "display_name": { + "description": "Name of the analysis.", + "type": "string" + }, + "name": { + "description": "Machine readable name of the analysis (no spaces, random characters, etc).", + "type": "string" + }, + "output_variables": { + "title": "output_variables", + "description": "List of the output variables that is expected. Objective functions will be flagged in the list.", + "type": "array", + "items": { + "type": "object", + "properties": { + "display_name": { + "description": "Display name of the output variable. This can be set to be whatever the user wants.", + "type": "string" + }, + "display_name_short": { + "description": "A shorter version of the display name. This is user defined and helps with creating short names for plots.", + "type": "string" + }, + "name": { + "description": "Machine friendly name of the output variable. This must match an output of the OpenStudio workflow (e.g., openstudio_results.electricity_ip)", + "type": "string" + }, + "units": { + "description": "Units of the output variable. This is only used for display purposes.", + "type": "string" + }, + "objective_function": { + "description": "Boolean to specify that the output variable is part of an objective function.", + "type": "boolean" + }, + "objective_function_index": { + "description": "Index of the objective function. Zero-based.", + "type": [ + "number", "null" + ], + "items": { + "type": "number" + } + }, + "objective_function_target": { + "description": "Target value which the objective function is trying to achieve.", + "type": [ + "number", "null" + ] + }, + "scaling_factor": { + "description": "Value by which to scale this output variable.", + "type": [ + "number", "null" + ] + }, + "objective_function_group": { + "description": "If grouping objective functions, then the index which this output variable is grouped.", + "type": [ + "number", "null" + ] + }, + "metadata_id": { + "description": "Deprecated. Use to store a universal metadata ID for DEnCity.", + "type": [ + "string", "null" + ] + }, + "visualize": { + "description": "Boolean to specify that the output variable will be visible in OpenStudio Server's visualizations.", + "type": "boolean" + }, + "export": { + "description": "Boolean to specify that the output variable will be exported to tabular data when using OpenStudio Server.", + "type": "boolean" + }, + "variable_type": { + "description": "The data type of the variable.", + "type": "string", + "enum": [ + "double", "string" + ] + } + }, + "required": [ + "display_name", "name", "objective_function", "objective_function_index", "objective_function_target", "scaling_factor", "objective_function_group", "metadata_id", "visualize", "export" + ], + "additionalProperties": false + } + }, + "problem": { + "$ref": "#/definitions/problem_def" + }, + "seed": { + "$ref": "#/definitions/seed_file_def" + }, + "weather_file": { + "description": "Weather file to be used in the anlaysis.", + "type": "object", + "properties": { + "file_type": { + "type": "string" + }, + "path": { + "type": "string" + } + }, + "required": [ + "file_type", "path" + ], + "additionalProperties": false + }, + "server_scripts": { + "description": "Analysis and worker initialization scripts.", + "type": "object", + "properties": { + "worker_initialization": { + "description": "Worker init script that runs on each worker before the analysis starts.", + "type": "string" + }, + "worker_finalization": { + "description": "Worker finalization script that runs after each worker finishes running the batch of simulations for the analysis.", + "type": "string" + } + }, + "additionalProperties": false + }, + "file_format_version": { + "description": "Version of the OSA. This is only 1 at the moment.", + "type": "number", + "enum": [ + 1 + ] + }, + "uuid": { + "type": "string" + }, + "version_uuid": { + "type": "string" + }, + "cli_debug": { + "type": "string" + }, + "cli_verbose": { + "type": "string" + }, + "initialize_worker_timeout": { + "type": "number" + }, + "run_workflow_timeout": { + "type": "number" + }, + "upload_results_timeout": { + "type": "number" + } + }, + "required": [ + "display_name", "name", "output_variables", "problem", "seed", "weather_file", "file_format_version" + ], + "additionalProperties": false + } + }, + "required": [ + "analysis" + ], + "additionalProperties": false, + "definitions": { + "problem_def": { + "title": "problem", + "description": "Definition of the problem to analyze.", + "type": "object", + "properties": { + "analysis_type": { + "description": "The type of analysis to run.", + "type": [ + "string", "null" + ], + "enum": [ + "baseline_perturbation", "diag", "doe", "fast99", "ga", "gaisl", "lhs", "morris", "nsga_nrel", "optim", "preflight", "pso", "repeat_run", "rgenoud", "single_run", "sobol", "spea_nrel", null + ] + }, + "algorithm": { + "$ref": "#/definitions/algorithm_def" + }, + "name": { + "description": "Name of the problem being analyzed. This does not appear to be used.", + "type": "string" + }, + "workflow": { + "title": "workflow", + "description": "The steps the problem will follow.", + "type": "array", + "items": { + "$ref": "#/definitions/workflow_def" + } + }, + "design_alternatives": { + "description": "If running design alternative based workflows (from PAT local), then use this workflow definition.", + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "description": "Name of the design alternative (this is seen by the user).", + "type": "string" + }, + "description": { + "description": "Description of the design alternative set by the user.", + "type": "string" + }, + "seed": { + "$ref": "#/definitions/seed_file_def" + }, + "options": { + "description": "Options for the design alternative.", + "type": "array", + "items": { + "type": "object", + "properties": { + "measure_name": { + "description": "Name of the measure as defined in the measure.rb file.", + "type": "string" + }, + "workflow_index": { + "description": "Index of the option.", + "type": "number" + }, + "name": { + "description": "Name of alternative option. This is user-defined.", + "type": "string" + }, + "description": { + "description": "Description of alternative option. This is user-defined.", + "type": "string" + } + }, + "required": [ + "measure_name", "workflow_index", "name", "description" + ], + "additionalProperties": false + } + } + }, + "required": [ + "name", "options" + ], + "additionalProperties": false + } + } + }, + "required": [ + "analysis_type", "algorithm", "workflow" + ], + "additionalProperties": false + }, + "algorithm_def": { + "title": "algorithm", + "description": "algorithm options", + "type": "object", + "properties": { + "abstol": { + "description": "PSO: Absolute convergence tolerance", + "type": "number", + "default": 0.01, + "minimum": 0 + }, + "balance": { + "description": "RGenoud: balancing", + "type": "number", + "default": 1, + "enum": [ + 1 + ] + }, + "boundary": { + "description": "PSO: Options: invisible, damping, reflecting, absorbing2007, absorbing2011, default", + "type": "string", + "default": "reflecting", + "enum": [ + "invisible", "damping", "reflecting", "absorbing2007", "absorbing2011", "default" + ] + }, + "boundaryenforcement": { + "description": "RGenoud: Boundary Enforement", + "type": "number", + "default": 2, + "enum": [ + 2 + ] + }, + "bfgs": { + "description": "RGenoud: Use Bounded Gradient Search. Options: 1 or 0 (True or False)", + "type": "number", + "default": 1, + "enum": [ + 0, 1 + ] + }, + "bfgsburnin": { + "description": "RGenoud: The number of generations which are run before the BFGS is first used", + "type": "number", + "default": 2, + "minimum": 0 + }, + "c1": { + "description": "PSO: Cognitive acceleration coefficient", + "type": "number", + "default": 1.193147 + }, + "c2": { + "description": "PSO: Social acceleration coefficient", + "type": "number", + "default": 1.193147 + }, + "check_boundary": { + "description": "Morris: Force variables to respect mins/maxes. Options: 1 or 0 (True or False)", + "type": "number", + "default": 0, + "enum": [ + 0, 1 + ] + }, + "cidx": { + "description": "SPEA2: Crossover Distribution Index (large values give higher probabilities of offspring close to parent)", + "type": "number", + "default": 5 + }, + "conf": { + "description": "Sobol: the confidence level for bootstrap confidence intervals", + "type": "number", + "default": 0.95, + "minimum": 0, + "maximum": 1 + }, + "cprob": { + "description": "NSGA2, SPEA2: Crossover probability [0,1]", + "type": "number", + "minimum": 0, + "maximum": 1 + }, + "debug_messages": { + "description": "0 - do not show debug messages. 1 - show debug messages.", + "type": "number", + "enum": [ + 0, 1 + ] + }, + "elitism": { + "description": "Ga, GaIsl: Number of best fitness individuals to survive at each generation", + "type": "number", + "default": 0.05, + "minimum": 0 + }, + "epsilon_gradient": { + "description": "Ga, GaIsl, RGenoud: Epsilon in gradient calculation", + "type": "number", + "default": 0.001, + "minimum": 0 + }, + "epsilongradient": { + "description": "Optim: Epsilon in gradient calculation", + "type": "number", + "default": 0.001, + "minimum": 0 + }, + "experiment_type": { + "description": "DOE: Options: full_factorial; Diag: Options: diagonal TODO: only one, conflicts with DOE", + "type": "string", + "default": "full_factorial", + "enum": [ + "full_factorial", "diagonal" + ] + }, + "exit_on_guideline_14": { + "description": "Exit on Guideline 14: 0 (off), 1 (both electric and gas), 2 (just electric), 3 (just gas)", + "type": "number", + "default": 0, + "enum": [ + 0, 1, 2, 3 + ] + }, + "factr": { + "description": "Optim, RGenoud: Tolerance on delta_F", + "type": "number", + "default": 450360000000000, + "minimum": 0 + }, + "failed_f_value": { + "description": "Value to set the return value if a simulation fails.", + "type": "number", + "default": 1000000000000000000 + }, + "generations": { + "description": "NSGA2, RGenoud, SPEA2: Number of generations", + "type": "number", + "default": 2, + "minimum": 0 + }, + "gradient_check": { + "description": "RGenoud: Numerically check gradient", + "type": "number", + "default": 0, + "enum": [ + 0 + ] + }, + "grid_jump": { + "description": "Morris: Integer specifying the number of levels that are increased/decreased for computing the elementary effects", + "type": "number", + "default": 2, + "minimum": 0 + }, + "lambda": { + "description": "PSO: [0,1] a percentage to limit the maximum velocity (Vmax) for each dimension", + "type": "number", + "default": 0.9, + "minimum": 0, + "maximum": 1 + }, + "levels": { + "description": "Morris: Positive integer (if individual, total simulations is this times each variable). Must be at least 2", + "type": "number", + "default": 4, + "minimum": 1 + }, + "M": { + "description": "fast99: integer specifying the interference parameter, i.e. the number of harmonics to sum in the Fourier series decomposition", + "type": "number", + "default": 4, + "minimum": 1 + }, + "maxFitness": { + "description": "Ga, GaIsl: Upper bound on the fitness function after that the GA search is interrupted", + "type": "number", + "default": 0.01, + "minimum": 0 + }, + "maxfn": { + "description": "PSO: Maximum number of function evaluations", + "type": "number", + "default": 100, + "minimum": 1 + }, + "maxit": { + "description": "Optim, PSO: Maximum number of iterations", + "type": "number", + "default": 20, + "minimum": 1 + }, + "maxiter": { + "description": "Ga, GaIsl: Maximum number of iterations to run before the GA search is halted", + "type": "number", + "default": 100, + "minimum": 1 + }, + "max_queued_jobs": { + "description": "Integer specifying the maximum number of queued jobs", + "type": "number", + "minimum": 1 + }, + "memory_matrix": { + "description": "RGenoud: memory matrix", + "type": "number", + "default": 1, + "enum": [ + 1 + ] + }, + "method": { + "description": "PSO: TODO; optim: TODO: This is fixed for optim and conflicts with PSO ", + "type": "string", + "default": "spso2011", + "enum": [ + "spso2007", "spso2011", "ipso", "fips", "wfips", "L-BFGS-B" + ] + }, + "midx": { + "description": "SPEA2: Mutation Distribution Index (large values give higher probabilities of offspring close to parent)", + "type": "number", + "default": 5 + }, + "mprob": { + "description": "NSGA2, SPEA2: Mutation probability [0,1]", + "type": "number", + "default": 0.8, + "minimum": 0, + "maximum": 1 + }, + "mu_dist_idx": { + "description": "NSGA2: Mutation Distribution Index (large values give higher probabilities of offspring close to parent)", + "type": "number", + "default": 10 + }, + "mudistidx": { + "type": "number" + }, + "n": { + "description": "fast99: Integer giving the sample size, i.e. the length of the discretization of the s-space", + "type": "number", + "default": 66, + "minimum": 1 + }, + "nboot": { + "description": "Sobol: The number of bootstrap replicates", + "type": "number", + "default": 0 + }, + "norm_type": { + "description": "fast99, Ga, GaIsl, Morris, optim, PSO, RGenoud, Sobol, SPEA2", + "type": "string", + "default": "minkowski", + "enum": [ + "minkowski", "maximum", "euclidean", "binary", "manhattan" + ] + }, + "normtype": { + "type": "string", + "enum": [ + "minkowski", "maximum", "euclidean", "binary", "manhattan" + ] + }, + "npart": { + "description": "PSO: Number of particles in the swarm", + "type": "number", + "default": 4, + "minimum": 1 + }, + "number_of_runs": { + "description": "Number of runs.", + "type": "number", + "minimum": 1 + }, + "number_of_samples": { + "description": "Number of samples.", + "type": "number", + "minimum": 1 + }, + "numIslands": { + "description": "GaIsl: Integer value specifying the number of islands to be used in a ring topology in which each island is connected unidirectionally with another island", + "type": "number", + "default": 4, + "minimum": 0 + }, + "migrationRate": { + "description": "GaIsl: Value in range 0-1 providing the proportion of individuals that should migrate between the islands", + "type": "number", + "default": 0.1, + "minimum": 0, + "maximum": 1 + }, + "migrationInterval": { + "description": "GaIsl: Integer value specifying the number of iterations at which exchange of individuals takes place", + "type": "number", + "default": 10, + "minimum": 0 + }, + "objective_functions": { + "description": "List of the objective functions", + "type": "array", + "items": { + "type": "string" + } + }, + "order": { + "description": "Sobol: the maximum order in the ANOVA decomposition (all indices up to this order will be computed)", + "type": "number", + "default": 1 + }, + "pgtol": { + "description": "Optim, RGenoud: Tolerance on the projected gradient", + "type": "number", + "default": 0.1, + "minimum": 0 + }, + "popsize": { + "description": "RGenoud: Size of initial population", + "type": "number", + "default": 2, + "minimum": 1 + }, + "popSize": { + "description": "Ga, GaIsl: Size of initial population TODO: similar to RGenoud", + "type": "number", + "default": 2, + "minimum": 1 + }, + "pcrossover": { + "description": "Ga, GaIsl: Probability of crossover between pairs of chromosomes. Typically a large value", + "type": "number", + "default": 0.8, + "minimum": 0, + "maximum": 1 + }, + "pmutation": { + "description": "Ga, GaIsl: Probability of mutation in a parent chromosome. Usually a small probability", + "type": "number", + "default": 0.1, + "minimum": 0, + "maximum": 1 + }, + "p_power": { + "description": "fast99, Ga, GaIsl, Morris, NSGA2, Optim, PSO, RGenoud, Sobol, SPEA2: Lp norm power (must be non-negative)", + "type": "number", + "default": 2, + "minimum": 0 + }, + "ppower": { + "type": "number" + }, + "print_level": { + "description": "RGenoud: Options: 0 (minimal printing), 1 (normal), 2 (detailed), and 3 (debug)", + "type": "number", + "default": 2, + "enum": [ + 0, 1, 2, 3 + ] + }, + "r": { + "description": "Morris: Integer giving the number of repetitions of the design", + "type": "number", + "default": 10, + "minimum": 2 + }, + "r2": { + "description": "Morris: Integer giving the size of the (bigger) population in which is extracted the design, for the space-filling improvement by (Campolongo et al. 2007). r2 > r", + "type": "number", + "default": 20, + "minimum": 2 + }, + "r_genoud_debug_flag": { + "description": "RGenoud: debug flag Options: 1 or 0 (True or False)", + "type": "string", + "default": "true", + "enum": [ + "true", "false" + ] + }, + "random_seed": { + "description": "Sobol first seed for random number generator.", + "type": "number" + }, + "random_seed2": { + "description": "Sobol second seed for random number generator.", + "type": "number" + }, + "report": { + "description": "PSO: report", + "type": "number", + "default": 1, + "enum": [ + 1 + ] + }, + "reltol": { + "description": "PSO: Relative convergence tolerance", + "type": "number", + "default": 0.01, + "minimum": 0 + }, + "run": { + "description": "Ga, GaIsl: Number of consecutive generations without any improvement in the best fitness value before the GA is stopped", + "type": "number", + "default": 2, + "minimum": 0 + }, + "run_all_samples_for_pivots": { + "description": "preflight: Run all Samples for Pivots Options: true or false.", + "type": "string", + "default": "true", + "enum": [ + "true", "false" + ] + }, + "run_baseline": { + "description": "Diag: Run Baseline Options: 1 or 0 (True or False)", + "type": "number", + "default": 1, + "enum": [ + 0, 1 + ] + }, + "run_max": { + "description": "preflight: run max Options: true or false.", + "type": "string", + "default": "true", + "enum": [ + "true", "false" + ] + }, + "run_min": { + "description": "preflight: run min Options: true or false.", + "type": "string", + "default": "true", + "enum": [ + "true", "false" + ] + }, + "run_mode": { + "description": "preflight: run mode Options: true or false.", + "type": "string", + "default": "true", + "enum": [ + "true", "false" + ] + }, + "sample_method": { + "description": "The type of sampling. If 'all_variables' then the sampling will occur across all the variables. If individual, then each variable is sampled individually.", + "type": "string", + "default": "individual_variables", + "enum": [ + "all_variables", "individual_variables" + ] + }, + "seed": { + "description": "Seed value for random number generators. If null then algorithm will choose random seed.", + "type": [ + "number", "null" + ] + }, + "solution_tolerance": { + "description": "RGenoud: Numbers within solutionTolerance are considered equal", + "type": "number", + "default": 0.01, + "minimum": 0 + }, + "topology": { + "description": "PSO: Options: gbest, lbest, vonneumann, random", + "type": "string", + "default": "random", + "enum": [ + "gbest", "lbest", "vonneumann", "random" + ] + }, + "tournament_size": { + "description": "NSGA2, SPEA2: Tournament Size", + "type": "number", + "default": 2 + }, + "toursize": { + "type": "number" + }, + "type": { + "description": "Sobol: method; Morris: Options: oat (One at a Time) TODO: only one and conflicts with sobol", + "type": "string", + "default": "sobol", + "enum": [ + "sobol", "sobol2002", "sobol2007", "jansen", "mara", "martinez", "oat" + ] + }, + "vini": { + "description": "PSO: Options: zero, lhs2011, random2011, lhs2007, random2007, default", + "type": "string", + "default": "lhs2011", + "enum": [ + "zero", "lhs2011", "random2011", "lhs2007", "random2007", "default" + ] + }, + "wait_generations": { + "description": "RGenoud: If no improvement in waitGenerations of generations, then exit", + "type": "number", + "default": 2, + "minimum": 0 + }, + "xini": { + "description": "PSO: Options: lhs, random", + "type": "string", + "default": "lhs", + "enum": [ + "lhs", "random" + ] + }, + "xover_dist_idx": { + "description": "NSGA2: Crossover Distribution Index (large values give higher probabilities of offspring close to parent)", + "type": "number", + "default": 5 + }, + "xoverdistidx": { + "type": "number" + } + }, + "additionalProperties": false + }, + "workflow_def": { + "description": "Definition of the workflow.", + "type": "object", + "properties": { + "name": { + "description": "Name of the workflow step. This is commonly the measure name.", + "type": "string" + }, + "display_name": { + "description": "Display name for the workflow step.", + "type": "string" + }, + "measure_type": { + "description": "Type of measure to be run.", + "type": "string", + "enum": [ + "RubyMeasure", "EnergyPlusMeasure", "ReportingMeasure" + ] + }, + "measure_definition_class_name": { + "description": "The class name as defined in the measure.rb file.", + "type": "string" + }, + "measure_definition_directory": { + "description": "Relative directory to the measure.rb file.", + "type": "string" + }, + "measure_definition_directory_local": { + "description": "Full path to the measure directory.", + "type": "string" + }, + "measure_definition_display_name": { + "description": "The display name of the measure as defined in the measure.rb.", + "type": "string" + }, + "measure_definition_name": { + "description": "The measure name (method) of the measure as defined in the measure.rb.", + "type": "string" + }, + "measure_definition_name_xml": { + "description": "The measure name as defined in the measure.xml. TODO: this should be deprecated.", + "type": [ + "string", "null" + ] + }, + "measure_definition_uuid": { + "type": "string" + }, + "measure_definition_version_uuid": { + "type": "string" + }, + "arguments": { + "description": "List of measure arguments that are not used as variables.", + "type": "array", + "items": { + "$ref": "#/definitions/argument_base_def" + } + }, + "variables": { + "$ref": "#/definitions/variable_def" + }, + "uuid": { + "type": "string" + }, + "version_uuid": { + "type": "string" + }, + "description": { + "type": "string" + }, + "taxonomy": { + "type": "string" + }, + "workflow_index": { + "type": "number" + } + }, + "required": [ + "name", "display_name", "measure_type", "measure_definition_directory", "measure_definition_directory_local", "measure_definition_display_name", "measure_definition_name", "measure_definition_name_xml", "measure_definition_uuid", "measure_definition_version_uuid", "variables", "workflow_index" + ], + "additionalProperties": false + }, + "argument_base_def": { + "description": "Details of the argument that is \"tagged\" as a variable for the problem. The argument is the measure argument.", + "type": "object", + "properties": { + "display_name": { + "description": "Dispany name of the measure argument. This is user-defined.", + "type": "string" + }, + "display_name_short": { + "description": "A shorter display name for an argument. This field is typically used for graphs and table exports.", + "type": "string" + }, + "name": { + "description": "The machine name of the measure argument. This is typically the snake case field defined in the measure.xml.", + "type": "string" + }, + "value_type": { + "description": "The variable type of the value that is being set.", + "type": "string", + "enum": [ + "double", "string", "boolean", "bool", "integer" + ] + }, + "value": { + "description": "The value to set the measure argument. Note that if the argument is within a variable, then the value is not used.", + "type": [ + "string", "number", "boolean", "null" + ] + }, + "default_value": { + "description": "The default value for the argument. This is typically used in user interfaces.", + "type": [ + "string", "number", "boolean", "null" + ] + } + }, + "required": [ + "display_name", "name", "value_type" + ], + "additionalProperties": false + }, + "uncertainty_def": { + "description": "Container for holding the uncertainty description.", + "type": "object", + "properties": { + "type": { + "description": "Type of uncertainty description.", + "type": "string", + "enum": [ + "uniform", "discrete", "triangle", "lognormal", "normal" + ] + }, + "attributes": { + "description": "Attributes of the uncertainty.", + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "description": "Name of the uncertainty attribute such as lower bound, mean, standard deviation, etc.", + "type": "string", + "enum": [ + "lower_bounds", "upper_bounds", "modes", "delta_x", "stddev", "discrete" + ] + }, + "value": { + "description": "Value of the uncertainty attribute (name).", + "type": [ + "string", "number", "boolean", "null" + ] + }, + "values_and_weights": { + "description": "If the variable is discrete, then the list of values and weights for each option.", + "type": "array", + "items": { + "type": "object", + "properties": { + "value": { + "description": "Value of the discrete variable.", + "type": [ + "string", "number", "boolean" + ] + }, + "weight": { + "description": "Weight of the discrete value when being sampled.", + "type": "number" + } + }, + "required": [ + "value", "weight" + ], + "additionalProperties": false + } + } + }, + "required": [ + "name" + ], + "additionalProperties": false + } + } + }, + "additionalProperties": false + }, + "variable_def": { + "title": "variables", + "description": "List of variables for the problem.", + "type": "array", + "items": { + "type": "object", + "properties": { + "argument": { + "$ref": "#/definitions/argument_base_def" + }, + "display_name": { + "description": "Display name of the variable. This is user-defined.", + "type": "string" + }, + "display_name_short": { + "description": "A shorter display name for the variable. This is typically used for graphs and table exports.", + "type": "string" + }, + "units": { + "type": [ + "string", "null" + ] + }, + "variable": { + "description": "Is the variable a variable? This should always be true.", + "type": "boolean" + }, + "variable_type": { + "description": "The type of variable. Can be pivot or variable. If pivot, then the pivot variable is applied to all algorithm values.", + "type": "string", + "enum": [ + "variable", "pivot" + ] + }, + "minimum": { + "description": "The minimum value of the variable. This can be a string, double, or integer.", + "type": [ + "string", "number", "boolean" + ] + }, + "maximum": { + "description": "The maximum value of the variable. This can be a string, double, or integer.", + "type": [ + "string", "number", "boolean", "null" + ] + }, + "relation_to_output": { + "description": "The minimum value of the variable. This can be a string, double, or integer.", + "type": [ + "string", "null" + ], + "enum": [ + "positive", "negative", null + ] + }, + "static_value": { + "description": "The static value of the variable when it is not set by the algorithm. ", + "type": [ + "string", "number", "boolean" + ] + }, + "uuid": { + "description": "UUID of the variable.", + "type": [ + "string", "null" + ] + }, + "version_uuid": { + "description": "UUID of the version of the variable.", + "type": [ + "string", "null" + ] + }, + "workflow_index": { + "description": "Integer index of the workflow step.", + "type": "number" + }, + "uncertainty_description": { + "$ref": "#/definitions/uncertainty_def" + } + }, + "required": [ + "argument", "display_name", "display_name_short", "variable", "variable_type", "minimum", "maximum", "static_value", "workflow_index", "uncertainty_description" + ], + "additionalProperties": false + } + }, + "seed_file_def": { + "description": "Seed model definition.", + "type": "object", + "properties": { + "file_type": { + "type": "string", + "enum": [ + "OSW", "OSM" + ] + }, + "path": { + "type": "string" + } + }, + "required": [ + "file_type", "path" + ], + "additionalProperties": false + } + } +} \ No newline at end of file diff --git a/server/spec/files/jsons/copy_of_root_da_measures.json b/server/spec/files/jsons/copy_of_root_da_measures.json new file mode 100644 index 000000000..755f71708 --- /dev/null +++ b/server/spec/files/jsons/copy_of_root_da_measures.json @@ -0,0 +1,440 @@ +{ + "analysis": { + "display_name": "the_project", + "name": "the_project", + "output_variables": [], + "problem": { + "analysis_type": null, + "algorithm": { + "objective_functions": [] + }, + "workflow": [ + { + "name": "rotate_building", + "display_name": "Rotate Building", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "RotateBuilding", + "measure_definition_directory": "./measures/Rotate Building Relative to Current Orientation", + "measure_definition_directory_local": "/Users/kflemin/OpenStudio/PAT/the_project/measures/Rotate Building Relative to Current Orientation", + "measure_definition_display_name": "Rotate Building", + "measure_definition_name": "rotate_building", + "measure_definition_name_xml": null, + "measure_definition_uuid": "a5be6c96-4ecc-47fa-8d32-f4216ebc2e7d", + "measure_definition_version_uuid": "212f9705-e0e3-43d4-b5eb-f17e56dd3af8", + "uuid": "a5be6c96-4ecc-47fa-8d32-f4216ebc2e7d", + "version_uuid": "212f9705-e0e3-43d4-b5eb-f17e56dd3af8", + "description": "Rotate your building relative to its current orientation. This will not rotate site shading objects.", + "taxonomy": "Envelope.Form", + "arguments": [], + "variables": [ + { + "argument": { + "display_name": "Number of Degrees to Rotate Building (positive value is clockwise).", + "display_name_short": "Number of Degrees to Rotate Building (positive value is clockwise).", + "name": "relative_building_rotation", + "value_type": "double", + "default_value": 90, + "value": 90 + }, + "display_name": "Number of Degrees to Rotate Building (positive value is clockwise).", + "display_name_short": "Number of Degrees to Rotate Building (positive value is clockwise).", + "variable_type": "variable", + "units": "", + "minimum": 90, + "maximum": 270, + "relation_to_output": null, + "static_value": 90, + "uuid": "", + "version_uuid": "", + "variable": true, + "uncertainty_description": { + "type": "discrete", + "attributes": [ + { + "name": "discrete", + "values_and_weights": [ + { + "value": 90, + "weight": 0.3333333333333333 + }, + { + "value": 180, + "weight": 0.3333333333333333 + }, + { + "value": 270, + "weight": 0.3333333333333333 + } + ] + }, + { + "name": "lower_bounds", + "value": 90 + }, + { + "name": "upper_bounds", + "value": 270 + }, + { + "name": "modes", + "value": 90 + }, + { + "name": "delta_x", + "value": null + }, + { + "name": "stddev", + "value": null + } + ] + }, + "workflow_index": 0 + } + ], + "workflow_index": 0 + }, + { + "name": "open_studio_results", + "display_name": "OpenStudio Results", + "measure_type": "ReportingMeasure", + "measure_definition_class_name": "OpenStudioResults", + "measure_definition_directory": "./measures/OpenStudio Results", + "measure_definition_directory_local": "/Users/kflemin/OpenStudio/LocalBCL/OpenStudio Results", + "measure_definition_display_name": "OpenStudio Results", + "measure_definition_name": "open_studio_results", + "measure_definition_name_xml": null, + "measure_definition_uuid": "a25386cd-60e4-46bc-8b11-c755f379d916", + "measure_definition_version_uuid": "15556a61-81fb-4114-8465-1d3987d4bcb2", + "uuid": "a25386cd-60e4-46bc-8b11-c755f379d916", + "version_uuid": "15556a61-81fb-4114-8465-1d3987d4bcb2", + "description": "This measure creates high level tables and charts pulling both from model inputs and EnergyPlus results. It has building level information as well as detail on space types, thermal zones, HVAC systems, envelope characteristics, and economics. Click the heading above a chart to view a table of the chart data.", + "taxonomy": "Reporting.QAQC", + "arguments": [ + { + "display_name": "Model Summary", + "display_name_short": "Model Summary", + "name": "building_summary_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Annual Overview", + "display_name_short": "Annual Overview", + "name": "annual_overview_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Monthly Overview", + "display_name_short": "Monthly Overview", + "name": "monthly_overview_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Utility Bills/Rates", + "display_name_short": "Utility Bills/Rates", + "name": "utility_bills_rates_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Envelope", + "display_name_short": "Envelope", + "name": "envelope_section_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Space Type Breakdown", + "display_name_short": "Space Type Breakdown", + "name": "space_type_breakdown_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Space Type Summary", + "display_name_short": "Space Type Summary", + "name": "space_type_details_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Interior Lighting Summary", + "display_name_short": "Interior Lighting Summary", + "name": "interior_lighting_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Plug Loads Summary", + "display_name_short": "Plug Loads Summary", + "name": "plug_loads_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Exterior Lighting", + "display_name_short": "Exterior Lighting", + "name": "exterior_light_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Water Use Equipment", + "display_name_short": "Water Use Equipment", + "name": "water_use_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "HVAC Load Profiles", + "display_name_short": "HVAC Load Profiles", + "name": "hvac_load_profile", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Zone Conditions", + "display_name_short": "Zone Conditions", + "name": "zone_condition_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Zone Overview", + "display_name_short": "Zone Overview", + "name": "zone_summary_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Zone Equipment Detail", + "display_name_short": "Zone Equipment Detail", + "name": "zone_equipment_detail_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Air Loops Detail", + "display_name_short": "Air Loops Detail", + "name": "air_loops_detail_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Plant Loops Detail", + "display_name_short": "Plant Loops Detail", + "name": "plant_loops_detail_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Outdoor Air", + "display_name_short": "Outdoor Air", + "name": "outdoor_air_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Cash Flow", + "display_name_short": "Cash Flow", + "name": "cost_summary_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Site and Source Summary", + "display_name_short": "Site and Source Summary", + "name": "source_energy_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Schedule Overview", + "display_name_short": "Schedule Overview", + "name": "schedules_overview_section", + "value_type": "boolean", + "default_value": true, + "value": true + } + ], + "variables": [ + { + "argument": { + "display_name": "Skip OpenStudio Results", + "display_name_short": "Skip entire measure", + "name": "__SKIP__", + "value_type": "bool", + "default_value": false, + "value": false + }, + "display_name": "Skip OpenStudio Results", + "display_name_short": "Skip entire measure", + "variable_type": "variable", + "units": null, + "minimum": false, + "maximum": true, + "relation_to_output": null, + "static_value": false, + "variable": true, + "uncertainty_description": { + "attributes": [ + { + "name": "discrete", + "values_and_weights": [ + { + "value": false, + "weight": 0.3333333333333333 + }, + { + "value": false, + "weight": 0.3333333333333333 + }, + { + "value": true, + "weight": 0.3333333333333333 + } + ] + }, + { + "name": "lower_bounds", + "value": false + }, + { + "name": "upper_bounds", + "value": false + }, + { + "name": "modes", + "value": false + }, + { + "name": "delta_x", + "value": null + }, + { + "name": "stddev", + "value": null + } + ], + "type": "discrete" + }, + "workflow_index": 0 + } + ], + "workflow_index": 1 + } + ], + "design_alternatives": [ + { + "name": "Alternative 1", + "options": [ + { + "measure_name": "rotate_building", + "workflow_index": 0, + "name": "Option 1 yeah", + "description": "Option 1 Description" + }, + { + "measure_name": "open_studio_results", + "workflow_index": 1, + "name": "Option 1 Name", + "description": "Option 1 Description" + }, + { + "measure_name": "xcel_eda_reportingand_qaqc", + "workflow_index": 2, + "name": "xcel_eda_reportingand_qaqc", + "description": "This measure extracts key simulation results and performs basic model QAQC checks necessary for the Xcel EDA Program." + } + ] + }, + { + "name": "Alternative 2", + "seed": { + "file_type": "OSM", + "path": "./seeds/Office2.osm" + }, + "options": [ + { + "measure_name": "rotate_building", + "workflow_index": 0, + "name": "Option 2 hi", + "description": "Option 2 Description" + }, + { + "measure_name": "open_studio_results", + "workflow_index": 1, + "name": "Option 1 Name", + "description": "Option 1 Description" + }, + { + "measure_name": "xcel_eda_reportingand_qaqc", + "workflow_index": 2, + "name": "xcel_eda_reportingand_qaqc", + "description": "This measure extracts key simulation results and performs basic model QAQC checks necessary for the Xcel EDA Program." + } + ] + }, + { + "name": "Alternative 3", + "seed": { + "file_type": "OSM", + "path": "./seeds/Office2.osm" + }, + "options": [ + { + "measure_name": "rotate_building", + "workflow_index": 0, + "name": "Option 3 hello", + "description": "Option 3 Description" + }, + { + "measure_name": "open_studio_results", + "workflow_index": 1, + "name": "open_studio_results", + "description": "This measure creates high level tables and charts pulling both from model inputs and EnergyPlus results. It has building level information as well as detail on space types, thermal zones, HVAC systems, envelope characteristics, and economics. Click the heading above a chart to view a table of the chart data." + }, + { + "measure_name": "xcel_eda_reportingand_qaqc", + "workflow_index": 2, + "name": "xcel_eda_reportingand_qaqc", + "description": "This measure extracts key simulation results and performs basic model QAQC checks necessary for the Xcel EDA Program." + } + ] + } + ] + }, + "seed": { + "file_type": "OSM", + "path": "./seeds/Office.osm" + }, + "weather_file": { + "file_type": "EPW", + "path": "./weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw" + }, + "file_format_version": 1 + } +} \ No newline at end of file diff --git a/server/spec/files/jsons/copy_of_root_example_csv.json b/server/spec/files/jsons/copy_of_root_example_csv.json new file mode 100644 index 000000000..da4be788b --- /dev/null +++ b/server/spec/files/jsons/copy_of_root_example_csv.json @@ -0,0 +1,202 @@ +{ + "analysis":{ + "uuid":"5b7d47ca-9cb5-4173-b80b-baa07f60ab42", + "display_name":"Example Batch Datapoints Small", + "name":"example_batch_datapoints_small", + "output_variables":[ + + ], + "problem":{ + "analysis_type":null, + "algorithm":{ + "objective_functions":[ + + ] + }, + "design_alternatives":[ + { + "name":"datapoint_1", + "description":"Datapoint 1", + "options": [ + { + "measure_name": "adjust_thermostat_setpoints_by_degrees", + "workflow_index": 0, + "name": "Option 1", + "description": "Option 1 Description" + } + ] + }, { + "name":"datapoint_2", + "description":"Datapoint 2", + "options":[ + { + "measure_name": "adjust_thermostat_setpoints_by_degrees", + "workflow_index": 0, + "name": "Option 2", + "description": "Option 2 Description" + } + ] + } + ], + "workflow":[ + { + "name":"adjust_thermostat_setpoints_by_degrees", + "display_name":"Adjust Thermostat Setpoints by Degrees", + "description":"This Measure will adjust Thermostat Setpoints by degrees", + "taxonomy":"HVAC.HVAC Controls", + "measure_type":"RubyMeasure", + "measure_definition_class_name":"AdjustThermostatSetpointsByDegrees", + "measure_definition_directory":"./measures/AdjustThermostatSetpointsByDegrees", + "measure_definition_directory_local":"E:/openstudio-analysis-spreadsheet/measures/AdjustThermostatSetpointsByDegrees", + "measure_definition_display_name":"Adjust Thermostat Setpoints by Degrees", + "measure_definition_name":"adjust_thermostat_setpoints_by_degrees", + "measure_definition_name_xml":null, + "measure_definition_uuid":"6e1f34f9-92e1-44ea-9279-de0b9b64f6a1", + "measure_definition_version_uuid":"c9e7c1e3-7b0e-48d7-86d1-8cff0a97d4f5", + "arguments":[ + { + "display_name":"alter design day thermostats?", + "display_name_short":"alter design day thermostats?", + "name":"alter_design_days", + "value_type":"boolean", + "default_value":"false", + "value":"false" + } + ], + "variables":[ + { + "argument":{ + "display_name":"degrees fahrenheit to adjust cooling setpoint by.", + "display_name_short":"degrees fahrenheit to adjust cooling setpoint by.", + "name":"cooling_adjustment", + "value_type":"double", + "default_value":"1", + "value":"1" + }, + "display_name":"Cooling Setpoint", + "display_name_short":"Cooling Setpoint", + "variable_type":"variable", + "units":"", + "minimum":1, + "maximum":2, + "relation_to_output":null, + "static_value":1, + "uuid":"f6ad6c30-c6bf-4af8-8c9f-496a6b3837e5", + "version_uuid":"2e000689-6778-4a9e-b205-df1f6ff6ff29", + "variable":true, + "uncertainty_description":{ + "type":"discrete", + "attributes":[ + { + "name":"discrete", + "values_and_weights":[ + { + "value":1, + "weight":0.25 + }, + { + "value":1.1, + "weight":0.25 + } + ] + }, + { + "name":"lower_bounds", + "value":1 + }, + { + "name":"upper_bounds", + "value":2 + }, + { + "name":"modes", + "value":1 + }, + { + "name":"delta_x", + "value":null + }, + { + "name":"stddev", + "value":null + } + ] + }, + "workflow_index":0 + }, + { + "argument":{ + "display_name":"degrees fahrenheit to adjust heating setpoint by.", + "display_name_short":"degrees fahrenheit to adjust heating setpoint by.", + "name":"heating_adjustment", + "value_type":"double", + "default_value":"-1", + "value":"-1" + }, + "display_name":"Heating Setpoint", + "display_name_short":"Heating Setpoint", + "variable_type":"variable", + "units":"", + "minimum":1, + "maximum":2, + "relation_to_output":null, + "static_value":1, + "uuid":"342a4cb1-72b7-45b3-8edf-288d4a62ac6d", + "version_uuid":"01afa5ca-2eb1-4323-a87b-5510d4124a58", + "variable":true, + "uncertainty_description":{ + "type":"discrete", + "attributes":[ + { + "name":"discrete", + "values_and_weights":[ + { + "value":1, + "weight":0.25 + }, + { + "value":1.1, + "weight":0.25 + } + ] + }, + { + "name":"lower_bounds", + "value":1 + }, + { + "name":"upper_bounds", + "value":2 + }, + { + "name":"modes", + "value":1 + }, + { + "name":"delta_x", + "value":null + }, + { + "name":"stddev", + "value":null + } + ] + }, + "workflow_index":1 + } + ], + "workflow_index":0 + } + ] + }, + "seed":{ + "file_type":"OSM", + "path":"./seed/Office.osm" + }, + "weather_file":{ + "file_type":"EPW", + "path":"./weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw" + }, + "file_format_version":1 + } +} \ No newline at end of file diff --git a/server/spec/files/jsons/data_point_result.json b/server/spec/files/jsons/data_point_result.json deleted file mode 100644 index bb4ae91e7..000000000 --- a/server/spec/files/jsons/data_point_result.json +++ /dev/null @@ -1,1617 +0,0 @@ -{ - "data_point": { - "analysis_uuid": "a8feca85-dab9-4510-8610-651ef847781d", - "complete": true, - "data_point_type": "DataPoint", - "display_name": "Rotate Building 270 degrees Only", - "failed": false, - "idf_input_data": { - "checksum_create": "AF20F2DE", - "checksum_last": "AF20F2DE", - "display_name": "out.idf", - "file_type": "IDF", - "name": "/mnt/openstudio/analysis/data_point_94134184-a026-42d5-9c6d-dd802e935e37/5-EnergyPlusPreProcess-0/out.idf", - "path": "/mnt/openstudio/analysis/data_point_94134184-a026-42d5-9c6d-dd802e935e37/5-EnergyPlusPreProcess-0/out.idf", - "timestamp_create": "20131005T204942", - "timestamp_last": "20131005T204942", - "uuid": "01d16aa6-2ad8-45fd-804e-507e7bfea3c2", - "version_uuid": "da630f68-d1a4-4807-8ec8-fcfe0f02df92" - }, - "name": "Rotate Building 270 degrees Only", - "osm_input_data": { - "checksum_create": "E2493A5B", - "checksum_last": "E2493A5B", - "display_name": "out.osm", - "file_type": "OSM", - "name": "/mnt/openstudio/analysis/data_point_94134184-a026-42d5-9c6d-dd802e935e37/1-UserScript-0/out.osm", - "path": "/mnt/openstudio/analysis/data_point_94134184-a026-42d5-9c6d-dd802e935e37/1-UserScript-0/out.osm", - "timestamp_create": "20131005T204940", - "timestamp_last": "20131005T204940", - "uuid": "fa3201f3-f4b7-498d-999a-0f79f7c1b5e2", - "version_uuid": "f2f74373-eca6-452b-8fb8-dbffbce75d2d" - }, - "output_attributes": [ - { - "name": "Total Site Energy", - "units": "GJ", - "uuid": "6522bb31-e02d-487c-869a-adf1276931db", - "value": 73.84, - "value_type": "Double", - "version_uuid": "7afe278b-bb0e-4a51-a88b-a63a19714367" - }, - { - "name": "Net Site Energy", - "units": "GJ", - "uuid": "73de34f6-c75c-4847-a071-0b18f7e6d3f8", - "value": 73.84, - "value_type": "Double", - "version_uuid": "3e698ebf-0acc-44c7-9999-6335076468d1" - }, - { - "name": "Total Source Energy", - "units": "GJ", - "uuid": "123631c2-95a9-4daa-8192-77875aa36b21", - "value": 216.7, - "value_type": "Double", - "version_uuid": "e4de48c4-7048-45e0-8758-16edad90b2f0" - }, - { - "name": "Net Source Energy", - "units": "GJ", - "uuid": "153e72dc-e02b-4b3a-8de4-9fbb7d7fda9b", - "value": 216.7, - "value_type": "Double", - "version_uuid": "f09ced7a-53e1-4421-8db8-47cd5e283238" - }, - { - "name": "Annual Total Utility Cost", - "units": "$", - "uuid": "9ece8854-0ab3-4143-841d-26c25b15e4c3", - "value": 1166.84, - "value_type": "Double", - "version_uuid": "89c05451-9a8c-4072-a87b-31ee268bdc13" - }, - { - "name": "Annual Electric Total Cost", - "units": "$", - "uuid": "4860fb4a-0950-46fc-8239-a13116477a38", - "value": 1166.84, - "value_type": "Double", - "version_uuid": "57feeca5-c84f-4c44-9f5e-494c044344e6" - }, - { - "name": "Annual Gas Total Cost", - "units": "$", - "uuid": "9e1078df-b974-4197-93ed-950cc795b89f", - "value": 0.0, - "value_type": "Double", - "version_uuid": "1506ea4c-179a-42bd-87f6-e517b2b11897" - }, - { - "name": "Net Site Energy Use Intentsity", - "units": "MJ/m^2", - "uuid": "cb40c04c-ea97-4860-b3a7-dd785604f530", - "value": 330.24, - "value_type": "Double", - "version_uuid": "b7ab8ea8-3927-4f33-8138-a1a1eb988926" - }, - { - "name": "Instantaneous Peak Electricity Demand", - "units": "kW", - "uuid": "cbde9cf5-0c2b-4f89-8036-78e3566f8f6c", - "value": 3118.98, - "value_type": "Double", - "version_uuid": "3c42fe0c-6f87-4bfc-879f-13170b9067e9" - }, - { - "name": "Electricity Total End Uses", - "units": "GJ", - "uuid": "9d79648c-c434-49ae-8745-218176d58ea6", - "value": 47.42, - "value_type": "Double", - "version_uuid": "c8059080-bc07-4fa9-95f0-8129921fc620" - }, - { - "name": "Natural Gas Total End Uses", - "units": "GJ", - "uuid": "71d0f8ab-91d1-4323-b01d-31ffc542e02b", - "value": 0.0, - "value_type": "Double", - "version_uuid": "323fa24e-3110-4876-bf78-53f2382938e0" - }, - { - "name": "District Cooling Total End Uses", - "units": "GJ", - "uuid": "5ba00a9d-d8b8-489e-8589-7bc4afb3896a", - "value": 11.31, - "value_type": "Double", - "version_uuid": "69960225-9454-4fd7-80c4-9d08d5e5ca08" - }, - { - "name": "District Heating Total End Uses", - "units": "GJ", - "uuid": "95262d19-7dd3-419b-9989-70513cf31607", - "value": 15.1, - "value_type": "Double", - "version_uuid": "c352af86-d955-412a-8807-4c35404439de" - }, - { - "name": "EndUses.Electricity.InteriorLights.General", - "units": "GJ", - "uuid": "bb24b6bf-1372-46e1-af9e-25b584abc88f", - "value": 25.23, - "value_type": "Double", - "version_uuid": "cd97aacf-dac2-46ec-9d1f-5ba3b7d08c8f" - }, - { - "name": "EndUses.Electricity.InteriorEquipment.General", - "units": "GJ", - "uuid": "0f28bb53-2273-4879-8898-0b90b8146f98", - "value": 22.2, - "value_type": "Double", - "version_uuid": "e251f812-46c6-4e90-9e9f-76fababb571e" - }, - { - "name": "EndUses.DistrictCooling.Cooling.General", - "units": "GJ", - "uuid": "e4e374b3-ea8a-486f-a361-8c4abcaebaf9", - "value": 11.31, - "value_type": "Double", - "version_uuid": "2962d4c9-cbcb-4d75-9b64-76f18543c281" - }, - { - "name": "EndUses.DistrictHeating.Heating.General", - "units": "GJ", - "uuid": "baa869fb-11c2-4c93-9149-00e78a89d45e", - "value": 15.1, - "value_type": "Double", - "version_uuid": "031423e7-f420-463f-8963-563100cf3a9f" - }, - { - "name": "First Year Capital Costs", - "units": "$", - "uuid": "918e561c-69a9-43e2-9006-47b2cf08b1b4", - "value": 0.0, - "value_type": "Double", - "version_uuid": "d298a9a7-c902-44fd-a4db-1345b573d3e3" - }, - { - "name": "Total Life Cycle Cost", - "units": "$", - "uuid": "a9be9698-92f4-4daf-ba48-87d18d729046", - "value": 20318.4, - "value_type": "Double", - "version_uuid": "1bd966f6-57f9-4b41-91b8-415f822c5116" - }, - { - "display_name": "Floor Area", - "name": "floorArea", - "units": "m^2", - "uuid": "44c67d30-e3c8-4b00-8bae-d02e33160e82", - "value": 223.582, - "value_type": "Double", - "version_uuid": "9d4d5070-0e34-4e48-befb-18af408df5a2" - }, - { - "display_name": "Conditioned Floor Area", - "name": "conditionedFloorArea", - "units": "m^2", - "uuid": "e26c13bd-af36-466a-9fcc-7ebe5e19cca4", - "value": 223.582, - "value_type": "Double", - "version_uuid": "740886bf-0872-483c-91ba-973e5dfbb75d" - }, - { - "name": "EndUses", - "uuid": "7e14a6c7-8a05-4e4c-acc3-67cda34713f3", - "value": [ - { - "name": "Electricity", - "uuid": "67803a68-658c-43fb-9e4d-156b4b204471", - "value": [ - { - "name": "InteriorLights", - "uuid": "835cf503-cf90-4d51-be83-1a46326eb16e", - "value": [ - { - "name": "General", - "units": "GJ", - "uuid": "00f0e2e8-9e0b-4c11-86d5-38da014bc5c7", - "value": 25.23, - "value_type": "Double", - "version_uuid": "a1723370-5ff7-4c61-962d-1b44c6499418" - } - ], - "value_type": "AttributeVector", - "version_uuid": "326dcbc7-48f7-4084-92a7-ff31d5a7640c" - }, - { - "name": "InteriorEquipment", - "uuid": "0deb1cab-2359-47a2-bf3f-3bf5fb65f29f", - "value": [ - { - "name": "General", - "units": "GJ", - "uuid": "aa969e2e-2963-4570-a0ce-b94e3f28f69b", - "value": 22.2, - "value_type": "Double", - "version_uuid": "5b71d4b6-208b-4921-a558-cddfaf5ca019" - } - ], - "value_type": "AttributeVector", - "version_uuid": "4a7906a1-53f2-466b-a2be-2ab0850d4239" - } - ], - "value_type": "AttributeVector", - "version_uuid": "bc1d4b86-5661-4ef4-86bc-f22e256ee1d5" - }, - { - "name": "DistrictCooling", - "uuid": "eedbface-733e-4d51-ae2e-46a82770d420", - "value": [ - { - "name": "Cooling", - "uuid": "c62296a0-2865-48e3-8cb8-f642124d807f", - "value": [ - { - "name": "General", - "units": "GJ", - "uuid": "64335b42-e15e-4b48-aafe-df43a49e828c", - "value": 11.31, - "value_type": "Double", - "version_uuid": "0e3d6891-c9d3-4b41-8682-342ea8aa5ee0" - } - ], - "value_type": "AttributeVector", - "version_uuid": "d75dc310-50ca-4db8-a390-0d0edc04ac60" - } - ], - "value_type": "AttributeVector", - "version_uuid": "5ac05c80-b88e-4541-b971-6951ad61725d" - }, - { - "name": "DistrictHeating", - "uuid": "e4feda95-ea04-47bf-973e-ac57bbe3a2f7", - "value": [ - { - "name": "Heating", - "uuid": "dd4ec3bc-36ba-4ae3-8f76-3983bf20a95b", - "value": [ - { - "name": "General", - "units": "GJ", - "uuid": "3f8b35ac-a7d6-48fe-94f9-bf0d11aa5de7", - "value": 15.1, - "value_type": "Double", - "version_uuid": "c0f17c60-e6cd-401d-bcbb-9cf81dd51c10" - } - ], - "value_type": "AttributeVector", - "version_uuid": "3e9426f9-41e7-4526-8830-c9de9f55689f" - } - ], - "value_type": "AttributeVector", - "version_uuid": "b79533f5-f5e7-4379-ac49-c914711abfc0" - } - ], - "value_type": "AttributeVector", - "version_uuid": "92a7f035-6822-4e01-845a-678857a8aa36" - }, - { - "name": "CalibrationResult", - "uuid": "ad6a17d8-a1ee-4e42-b8e0-255f8c4dbb89", - "value": [ - { - "name": "utilityBills", - "uuid": "d6f6d112-038f-4d73-94da-5706be191cf8", - "value": [ - - ], - "value_type": "AttributeVector", - "version_uuid": "c3e6c486-4756-4dfd-940f-ee53b83b9f37" - } - ], - "value_type": "AttributeVector", - "version_uuid": "a9b8b8c8-79f5-4acd-9e68-86dc22f20af7" - } - ], - "problem_uuid": "412b1879-f0ee-4919-ab90-6ab642fd39ee", - "run_type": "Local", - "selected": true, - "sql_output_data": { - "checksum_create": "3CEE0E3D", - "checksum_last": "3CEE0E3D", - "display_name": "eplusout.sql", - "file_type": "SQL", - "name": "/mnt/openstudio/analysis/data_point_94134184-a026-42d5-9c6d-dd802e935e37/6-EnergyPlus-0/eplusout.sql", - "path": "/mnt/openstudio/analysis/data_point_94134184-a026-42d5-9c6d-dd802e935e37/6-EnergyPlus-0/eplusout.sql", - "timestamp_create": "20131005T204954", - "timestamp_last": "20131005T204954", - "uuid": "c84b7cf9-a6bb-46a0-9303-174670943fc5", - "version_uuid": "da13a7df-4590-46c9-8a82-49fbd20fa786" - }, - "top_level_job": { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "children": [ - { - "errors": { - "all_errors": [ - - ], - "result": "Success" - }, - "job_type": "OpenStudioPostProcess", - "last_run": "20131005T204954", - "outdir": "7-OpenStudioPostProcess-0", - "output_files": [ - { - "exists": true, - "file_name": "report.xml", - "full_path": "report.xml", - "key": "xml", - "last_modified": "20131005T204954" - } - ], - "params": [ - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 0 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 1 - } - ], - "status": { - "status": "Idle" - }, - "uuid": "b0dbdbc6-656b-42d5-85dc-3c515d9e4936" - } - ], - "errors": { - "all_errors": [ - { - "description": "ProcessScheduleInput: Schedule:Compact=\"HVACTEMPLATE-ALWAYS 4\", Blank Schedule Type Limits Name input -- will not be validated.", - "error_type": "Warning" - }, - { - "description": "ProcessScheduleInput: Schedule:Compact=\"TWOSEASONSCHEDULE\", Blank Schedule Type Limits Name input -- will not be validated.", - "error_type": "Warning" - }, - { - "description": "ProcessScheduleInput: Schedule:Compact=\"TIMEOFDAYSCHEDULE\", Blank Schedule Type Limits Name input -- will not be validated.", - "error_type": "Warning" - }, - { - "description": "GetSurfaces: Surfaces with interface to Ground found but no \"Ground Temperatures\" were input. Found first in surface=SURFACE 1 Defaults, constant throughout the year of (18.0) will be used.", - "error_type": "Warning" - }, - { - "description": "CheckUsedConstructions: There are 9 nominally unused constructions in input. For explicit details on each unused construction, use Output:Diagnostics,DisplayExtraWarnings;", - "error_type": "Warning" - }, - { - "description": "Output:Meter: invalid Name=\"GAS:FACILITY\" - not found.", - "error_type": "Warning" - }, - { - "description": "LifeCycleCost:Parameters: The input field Depreciation Methodis blank. \"None\" will be used.", - "error_type": "Warning" - }, - { - "description": "GetInputEconomicsTariff: UtilityCost:Tariff=\"LARGE CG\" missing meter Meter referenced is not present due to a lack of equipment that uses that energy source/meter:\"GAS:FACILITY \".", - "error_type": "Warning" - }, - { - "description": "UtilityCost: Spaces were removed from the variable=\"SECONDARY GENERALSUMMERONPEAKENERGYCHARGE\". ...Resultant variable=\"SECONDARYGENERALSUMMERONPEAKENERGYCHARGE\".", - "error_type": "Warning" - }, - { - "description": "UtilityCost: Spaces were removed from the variable=\"SECONDARY GENERALSUMMEROFFPEAKENERGYCHARGE\". ...Resultant variable=\"SECONDARYGENERALSUMMEROFFPEAKENERGYCHARGE\".", - "error_type": "Warning" - }, - { - "description": "UtilityCost: Spaces were removed from the variable=\"SECONDARY GENERALWINTERONPEAKENERGYCHARGE\". ...Resultant variable=\"SECONDARYGENERALWINTERONPEAKENERGYCHARGE\".", - "error_type": "Warning" - }, - { - "description": "UtilityCost: Spaces were removed from the variable=\"SECONDARY GENERALWINTEROFFPEAKENERGYCHARGE\". ...Resultant variable=\"SECONDARYGENERALWINTEROFFPEAKENERGYCHARGE\".", - "error_type": "Warning" - }, - { - "description": "UtilityCost: Spaces were removed from the variable=\"SECONDARY GENERALSUMMERDEMANDCHARGE\". ...Resultant variable=\"SECONDARYGENERALSUMMERDEMANDCHARGE\".", - "error_type": "Warning" - }, - { - "description": "UtilityCost: Spaces were removed from the variable=\"SECONDARY GENERALWINTERDEMANDCHARGE\". ...Resultant variable=\"SECONDARYGENERALWINTERDEMANDCHARGE\".", - "error_type": "Warning" - }, - { - "description": "The following Report Variables were requested but not generated because IDF did not contain these elements or misspelled variable name -- check .rdd file", - "error_type": "Warning" - } - ], - "result": "Success" - }, - "job_type": "EnergyPlus", - "last_run": "20131005T204942", - "outdir": "6-EnergyPlus-0", - "output_files": [ - { - "exists": true, - "file_name": "Energy+.ini", - "full_path": "Energy+.ini", - "key": "Energy+.ini", - "last_modified": "20131005T204942" - }, - { - "exists": true, - "file_name": "eplusout.audit", - "full_path": "eplusout.audit", - "key": "eplusout.audit", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "eplusout.bnd", - "full_path": "eplusout.bnd", - "key": "eplusout.bnd", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "eplusout.eio", - "full_path": "eplusout.eio", - "key": "eplusout.eio", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "eplusout.end", - "full_path": "eplusout.end", - "key": "eplusout.end", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "eplusout.err", - "full_path": "eplusout.err", - "key": "eplusout.err", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "eplusout.eso", - "full_path": "eplusout.eso", - "key": "eplusout.eso", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "eplusout.mdd", - "full_path": "eplusout.mdd", - "key": "eplusout.mdd", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "eplusout.mtd", - "full_path": "eplusout.mtd", - "key": "eplusout.mtd", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "eplusout.mtr", - "full_path": "eplusout.mtr", - "key": "eplusout.mtr", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "eplusout.rdd", - "full_path": "eplusout.rdd", - "key": "eplusout.rdd", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "eplusout.shd", - "full_path": "eplusout.shd", - "key": "eplusout.shd", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "eplusout.sql", - "full_path": "eplusout.sql", - "key": "eplusout.sql", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "eplustbl.htm", - "full_path": "eplustbl.htm", - "key": "eplustbl.htm", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "epluszsz.csv", - "full_path": "epluszsz.csv", - "key": "epluszsz.csv", - "last_modified": "20131005T204943" - }, - { - "exists": true, - "file_name": "sqlite.err", - "full_path": "sqlite.err", - "key": "sqlite.err", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "stderr", - "full_path": "stderr", - "key": "stderr", - "last_modified": "20131005T204954" - }, - { - "exists": true, - "file_name": "stdout", - "full_path": "stdout", - "key": "stdout", - "last_modified": "20131005T204954" - } - ], - "params": [ - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 0 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 1 - } - ], - "status": { - "status": "Idle" - }, - "uuid": "fa37e396-8f89-4c78-818f-9258a3815fba" - } - ], - "errors": { - "all_errors": [ - - ], - "result": "Success" - }, - "job_type": "EnergyPlusPreProcess", - "last_run": "20131005T204942", - "outdir": "5-EnergyPlusPreProcess-0", - "output_files": [ - { - "exists": true, - "file_name": "out.idf", - "full_path": "out.idf", - "key": "idf", - "last_modified": "20131005T204942", - "required_files": [ - { - "path": "in.epw", - "url": "file:///mnt/openstudio/analysis/data_point_94134184-a026-42d5-9c6d-dd802e935e37/1-UserScript-0/files/USA_CO_Golden-NREL.724666_TMY3.epw" - } - ] - } - ], - "params": [ - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 0 - }, - { - "param": { - "children": [ - { - "param": { - "value": "d70bd3cbf4894eb54cf62b51bb88c560" - }, - "param_index": 0 - } - ], - "value": "workflowkey" - }, - "param_index": 1 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 2 - } - ], - "status": { - "status": "Idle" - }, - "uuid": "0132ccf2-fca7-424f-909c-7a8d3e9902ea" - } - ], - "errors": { - "all_errors": [ - { - "description": "added a tariff named Secondary General", - "error_type": "Info" - }, - { - "description": "added a tariff named Large CG", - "error_type": "Info" - }, - { - "description": "set the simulation timestep to 15 min to match the demand window of the tariffs", - "error_type": "Info" - }, - { - "description": "removed existing lifecycle parameters named {eff0a196-e73d-4a0b-b20d-1a5d11e315b7}", - "error_type": "Info" - }, - { - "description": "added lifecycle cost parameters named FEMP LifeCycle Cost Parameters", - "error_type": "Info" - }, - { - "description": "removed existing fuel escalation rates named U.S. Avg Commercial-Distillate Oil", - "error_type": "Info" - }, - { - "description": "removed existing fuel escalation rates named U.S. Avg Commercial-Natural gas", - "error_type": "Info" - }, - { - "description": "removed existing fuel escalation rates named U.S. Avg Commercial-Residual Oil", - "error_type": "Info" - }, - { - "description": "removed existing fuel escalation rates named U.S. Avg Commercial-Coal", - "error_type": "Info" - }, - { - "description": "removed existing fuel escalation rates named U.S. Avg Commercial-Electricity", - "error_type": "Info" - }, - { - "description": "added fuel escalation rates named U.S. Avg Commercial-Electricity", - "error_type": "Info" - }, - { - "description": "added fuel escalation rates named U.S. Avg Commercial-Distillate Oil", - "error_type": "Info" - }, - { - "description": "added fuel escalation rates named U.S. Avg Commercial-Residual Oil", - "error_type": "Info" - }, - { - "description": "added fuel escalation rates named U.S. Avg Commercial-Natural gas", - "error_type": "Info" - }, - { - "description": "added fuel escalation rates named U.S. Avg Commercial-Coal", - "error_type": "Info" - } - ], - "result": "Success" - }, - "files": [ - { - "exists": true, - "file_name": "UserScriptAdapter.rb", - "full_path": "/usr/local/share/openstudio/Ruby/openstudio/runmanager/rubyscripts/UserScriptAdapter.rb", - "key": "rb", - "last_modified": "20130922T043104", - "required_files": [ - { - "path": "user_script.rb", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/measure.rb" - }, - { - "path": "Interruptible Industrial G.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Interruptible Industrial G.idf" - }, - { - "path": "Commercial.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Commercial.idf" - }, - { - "path": "Non-Xcel Commercial.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Non-Xcel Commercial.idf" - }, - { - "path": "Non-Xcel Primary General.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Non-Xcel Primary General.idf" - }, - { - "path": "Non-Xcel Secondary General Low Load Factor.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Non-Xcel Secondary General Low Load Factor.idf" - }, - { - "path": "Non-Xcel Secondary General.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Non-Xcel Secondary General.idf" - }, - { - "path": "Non-Xcel Transmission General.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Non-Xcel Transmission General.idf" - }, - { - "path": "Primary General.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Primary General.idf" - }, - { - "path": "Residential General.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Residential General.idf" - }, - { - "path": "Secondary General Low Load Factor.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Secondary General Low Load Factor.idf" - }, - { - "path": "Secondary General.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Secondary General.idf" - }, - { - "path": "Transmission General.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Transmission General.idf" - }, - { - "path": "Large CG.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Large CG.idf" - }, - { - "path": "Residential Gas.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Residential Gas.idf" - }, - { - "path": "Small CG.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Small CG.idf" - }, - { - "path": "Secondary Photovoltaic Time-of-Use.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Secondary Photovoltaic Time-of-Use.idf" - }, - { - "path": "Non-Xcel Gas Firm.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Non-Xcel Gas Firm.idf" - }, - { - "path": "Non-Xcel Gas Interruptible.idf", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/resources/Non-Xcel Gas Interruptible.idf" - }, - { - "path": "XcelEDATariffSelectionandModelSetup_Test.rb", - "url": "file:///mnt/openstudio/scripts/XcelEDATariffSelectionandModelSetup/tests/XcelEDATariffSelectionandModelSetup_Test.rb" - } - ] - } - ], - "job_type": "UserScript", - "last_run": "20131005T204941", - "outdir": "4-UserScript-0", - "output_files": [ - { - "exists": true, - "file_name": "out.idf", - "full_path": "out.idf", - "key": "out.idf", - "last_modified": "20131005T204942", - "required_files": [ - { - "path": "in.epw", - "url": "file:///mnt/openstudio/analysis/data_point_94134184-a026-42d5-9c6d-dd802e935e37/1-UserScript-0/files/USA_CO_Golden-NREL.724666_TMY3.epw" - } - ] - }, - { - "exists": true, - "file_name": "result.ossr", - "full_path": "result.ossr", - "key": "result.ossr", - "last_modified": "20131005T204942" - }, - { - "exists": true, - "file_name": "stdout", - "full_path": "stdout", - "key": "stdout", - "last_modified": "20131005T204942" - } - ], - "params": [ - { - "param": { - "children": [ - { - "param": { - "value": "--argumentName=elec_tar" - }, - "param_index": 0 - }, - { - "param": { - "value": "--argumentValue=Secondary General" - }, - "param_index": 1 - }, - { - "param": { - "value": "--argumentName=gas_tar" - }, - "param_index": 2 - }, - { - "param": { - "value": "--argumentValue=Large CG" - }, - "param_index": 3 - } - ], - "value": "ruby_scriptparameters" - }, - "param_index": 0 - }, - { - "param": { - "children": [ - { - "param": { - "children": [ - { - "param": { - "children": [ - { - "param": { - "children": [ - { - "param": { - "value": "in.idf" - }, - "param_index": 0 - } - ], - "value": ".*\\.idf" - }, - "param_index": 0 - } - ], - "value": "All" - }, - "param_index": 0 - } - ], - "value": "Last" - }, - "param_index": 0 - } - ], - "value": "ruby_inputfiles" - }, - "param_index": 1 - }, - { - "param": { - "children": [ - { - "param": { - "value": "-I" - }, - "param_index": 0 - }, - { - "param": { - "value": "/usr/local/lib/ruby/site_ruby/2.0.0/" - }, - "param_index": 1 - } - ], - "value": "ruby_toolparameters" - }, - "param_index": 2 - }, - { - "param": { - "children": [ - { - "param": { - "children": [ - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "idf" - }, - "param_index": 0 - } - ], - "value": "idf" - }, - "param_index": 0 - } - ], - "value": "ruby_copyrequired" - }, - "param_index": 3 - }, - { - "param": { - "children": [ - { - "param": { - "value": "true" - }, - "param_index": 0 - } - ], - "value": "ruby_isuserscriptjob" - }, - "param_index": 4 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 5 - } - ], - "status": { - "status": "Idle" - }, - "uuid": "e579a98d-dec2-4d4a-a265-04dddcb79a31" - } - ], - "errors": { - "all_errors": [ - - ], - "result": "Success" - }, - "job_type": "ExpandObjects", - "last_run": "20131005T204941", - "outdir": "3-ExpandObjects-0", - "output_files": [ - { - "exists": true, - "file_name": "expanded.idf", - "full_path": "expanded.idf", - "key": "expanded.idf", - "last_modified": "20131005T204941", - "required_files": [ - { - "path": "in.epw", - "url": "file:///mnt/openstudio/analysis/data_point_94134184-a026-42d5-9c6d-dd802e935e37/1-UserScript-0/files/USA_CO_Golden-NREL.724666_TMY3.epw" - } - ] - }, - { - "exists": true, - "file_name": "stdout", - "full_path": "stdout", - "key": "stdout", - "last_modified": "20131005T204941" - } - ], - "params": [ - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 0 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 1 - } - ], - "status": { - "status": "Idle" - }, - "uuid": "1ba530ee-b709-48cd-bf0f-56ecbf1072b7" - } - ], - "errors": { - "all_errors": [ - - ], - "result": "Success" - }, - "job_type": "ModelToIdf", - "last_run": "20131005T204940", - "outdir": "2-ModelToIdf-0", - "output_files": [ - { - "exists": true, - "file_name": "in.idf", - "full_path": "in.idf", - "key": "idf", - "last_modified": "20131005T204941", - "required_files": [ - { - "path": "in.epw", - "url": "file:///mnt/openstudio/analysis/data_point_94134184-a026-42d5-9c6d-dd802e935e37/1-UserScript-0/files/USA_CO_Golden-NREL.724666_TMY3.epw" - } - ] - } - ], - "params": [ - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 0 - }, - { - "param": { - "children": [ - { - "param": { - "value": "9d4864298980faebecd100777216acb2" - }, - "param_index": 0 - } - ], - "value": "workflowkey" - }, - "param_index": 1 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 2 - } - ], - "status": { - "status": "Idle" - }, - "uuid": "63049dcf-5eb7-4c15-b17c-7839c7900886" - } - ], - "errors": { - "all_errors": [ - { - "description": "The building has been rotated by 270.0 degrees.", - "error_type": "Info" - }, - { - "description": "The building's initial rotation was -0.0 degrees.", - "error_type": "InitialCondition" - }, - { - "description": "The building's final rotation is 270.0 degrees.", - "error_type": "FinalCondition" - } - ], - "result": "Success" - }, - "files": [ - { - "exists": true, - "file_name": "UserScriptAdapter.rb", - "full_path": "/usr/local/share/openstudio/Ruby/openstudio/runmanager/rubyscripts/UserScriptAdapter.rb", - "key": "rb", - "last_modified": "20130922T043104", - "required_files": [ - { - "path": "user_script.rb", - "url": "file:///mnt/openstudio/scripts/RotateBuilding/measure.rb" - }, - { - "path": "RotateBuilding_TestModel_01.osm", - "url": "file:///mnt/openstudio/scripts/RotateBuilding/tests/RotateBuilding_TestModel_01.osm" - }, - { - "path": "RotateBuilding_Test.rb", - "url": "file:///mnt/openstudio/scripts/RotateBuilding/tests/RotateBuilding_Test.rb" - } - ] - } - ], - "job_type": "UserScript", - "last_run": "20131005T204940", - "outdir": "1-UserScript-0", - "output_files": [ - { - "exists": true, - "file_name": "out.osm", - "full_path": "out.osm", - "key": "out.osm", - "last_modified": "20131005T204940", - "required_files": [ - { - "path": "files/USA_CO_Golden-NREL.724666_TMY3.epw", - "url": "file:///mnt/openstudio/seed/seed/files/USA_CO_Golden-NREL.724666_TMY3.epw" - }, - { - "path": "in.epw", - "url": "file:///mnt/openstudio/seed/seed/files/USA_CO_Golden-NREL.724666_TMY3.epw" - } - ] - }, - { - "exists": true, - "file_name": "result.ossr", - "full_path": "result.ossr", - "key": "result.ossr", - "last_modified": "20131005T204940" - }, - { - "exists": true, - "file_name": "stdout", - "full_path": "stdout", - "key": "stdout", - "last_modified": "20131005T204940" - } - ], - "params": [ - { - "param": { - "children": [ - { - "param": { - "value": "--argumentName=relative_building_rotation" - }, - "param_index": 0 - }, - { - "param": { - "value": "--argumentValue=270" - }, - "param_index": 1 - } - ], - "value": "ruby_scriptparameters" - }, - "param_index": 0 - }, - { - "param": { - "children": [ - { - "param": { - "children": [ - { - "param": { - "children": [ - { - "param": { - "children": [ - { - "param": { - "value": "in.osm" - }, - "param_index": 0 - } - ], - "value": ".*\\.osm" - }, - "param_index": 0 - } - ], - "value": "All" - }, - "param_index": 0 - } - ], - "value": "Last" - }, - "param_index": 0 - } - ], - "value": "ruby_inputfiles" - }, - "param_index": 1 - }, - { - "param": { - "children": [ - { - "param": { - "value": "-I" - }, - "param_index": 0 - }, - { - "param": { - "value": "/usr/local/lib/ruby/site_ruby/2.0.0/" - }, - "param_index": 1 - } - ], - "value": "ruby_toolparameters" - }, - "param_index": 2 - }, - { - "param": { - "children": [ - { - "param": { - "children": [ - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "osm" - }, - "param_index": 0 - } - ], - "value": "osm" - }, - "param_index": 0 - } - ], - "value": "ruby_copyrequired" - }, - "param_index": 3 - }, - { - "param": { - "children": [ - { - "param": { - "value": "true" - }, - "param_index": 0 - } - ], - "value": "ruby_isuserscriptjob" - }, - "param_index": 4 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 5 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 6 - } - ], - "status": { - "status": "Idle" - }, - "uuid": "f6ce6b4d-5c72-4c66-9807-668aa343ef68" - } - ], - "errors": { - "all_errors": [ - - ], - "result": "Success" - }, - "files": [ - { - "exists": true, - "file_name": "seed.osm", - "full_path": "/mnt/openstudio/seed/seed.osm", - "key": "osm", - "last_modified": "20130917T170345", - "required_files": [ - { - "path": "in.epw", - "url": "file:///mnt/openstudio/seed/seed/files/USA_CO_Golden-NREL.724666_TMY3.epw" - } - ] - } - ], - "job_type": "Null", - "last_run": "20131005T204940", - "outdir": "0-Null", - "params": [ - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 0 - }, - { - "param": { - "value": "flatoutdir" - }, - "param_index": 1 - }, - { - "param": { - "children": [ - { - "param": { - "value": "standard" - }, - "param_index": 0 - } - ], - "value": "cleanoutfiles" - }, - "param_index": 2 - }, - { - "param": { - "children": [ - { - "param": { - "value": "4f17cf62ad4928be6c00a41e83abe931" - }, - "param_index": 0 - } - ], - "value": "workflowkey" - }, - "param_index": 3 - } - ], - "status": { - "status": "Idle" - }, - "tools": [ - { - "local_bin_path": "/usr/local/EnergyPlus-8-0-0/ExpandObjects", - "name": "expandobjects", - "out_file_filter": "expanded\\.idf", - "remote_archive": "", - "remote_exe": "ExpandObjects", - "version": "8.0.0" - }, - { - "local_bin_path": "/usr/local/EnergyPlus-8-0-0/EnergyPlus", - "name": "energyplus", - "out_file_filter": "eplus.*", - "remote_archive": "", - "remote_exe": "EnergyPlus", - "version": "8.0.0" - }, - { - "local_bin_path": "/usr/local/EnergyPlus-8-0-0/PreProcess/GrndTempCalc/Slab", - "name": "slab", - "out_file_filter": ".*\\.TXT", - "remote_archive": "", - "remote_exe": "slab", - "version": "8.0.0" - }, - { - "local_bin_path": "/usr/local/EnergyPlus-8-0-0/PreProcess/GrndTempCalc/Basement", - "name": "basement", - "out_file_filter": ".*\\.TXT", - "remote_archive": "", - "remote_exe": "basement", - "version": "8.0.0" - }, - { - "local_bin_path": "/opt/rbenv/shims/ruby", - "name": "ruby", - "out_file_filter": ".*", - "remote_archive": "", - "remote_exe": "ruby", - "version": "2.0.0" - } - ], - "uuid": "9bca4417-7bb3-4eed-830f-4ccc890b622c" - }, - "uuid": "94134184-a026-42d5-9c6d-dd802e935e37", - "variable_values": [ - { - "value": 0, - "value_type": "int", - "variable_value_index": 0 - }, - { - "value": 3, - "value_type": "int", - "variable_value_index": 1 - }, - { - "value": 0, - "value_type": "int", - "variable_value_index": 2 - }, - { - "value": 0, - "value_type": "int", - "variable_value_index": 3 - } - ], - "version_uuid": "9228d922-5bcc-4980-8d07-d177f0a07fff", - "xml_output_data": [ - { - "checksum_create": "EC92DBE7", - "checksum_last": "EC92DBE7", - "display_name": "report.xml", - "file_type": "XML", - "name": "/mnt/openstudio/analysis/data_point_94134184-a026-42d5-9c6d-dd802e935e37/7-OpenStudioPostProcess-0/report.xml", - "path": "/mnt/openstudio/analysis/data_point_94134184-a026-42d5-9c6d-dd802e935e37/7-OpenStudioPostProcess-0/report.xml", - "timestamp_create": "20131005T204954", - "timestamp_last": "20131005T204954", - "uuid": "1dd4a77c-edd1-4a17-b288-c522e52cd48a", - "version_uuid": "b22764f3-73d2-45a5-a8d7-0e3d09d0e11f" - } - ] - }, - "metadata": { - "display_name": "Rotate Building 270 degrees Only", - "name": "Rotate Building 270 degrees Only", - "openstudio_version": "1.1.0", - "project_dir": "/mnt/openstudio/analysis", - "uuid": "94134184-a026-42d5-9c6d-dd802e935e37", - "values": [ - { - "value": 0, - "variable_index": 0, - "variable_uuid": "ae13cbfd-1be2-4185-aff3-8903f977fbd9" - }, - { - "value": 3, - "variable_index": 1, - "variable_uuid": "05505496-bba2-49fc-9f86-5633ecafe0e5" - }, - { - "value": 0, - "variable_index": 2, - "variable_uuid": "5ba3c9b4-2f5d-4792-9ef7-569108649aa2" - }, - { - "value": 0, - "variable_index": 3, - "variable_uuid": "e0fe48c7-d80b-4e5f-83a8-c1e9d69e8ce7" - } - ], - "version_uuid": "94134184-a026-42d5-9c6d-dd802e935e37" - } -} \ No newline at end of file diff --git a/server/spec/files/jsons/formulation.json b/server/spec/files/jsons/formulation.json deleted file mode 100644 index b5809db99..000000000 --- a/server/spec/files/jsons/formulation.json +++ /dev/null @@ -1,19886 +0,0 @@ -{ - "analysis": { - "data_points_are_invalid": false, - "display_name": "Simple Project Analysis", - "name": "Simple Project Analysis", - "problem": { - "display_name": "Simple Project Problem", - "name": "Simple Project Problem", - "problem_type": "Problem", - "uuid": "8b8410a5-9f54-4036-8676-a3c314f6f57e", - "version_uuid": "3fa39e12-3ce9-44aa-968d-be1da2cc1d2c", - "workflow": [ - { - "display_name": "Alternative Model", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "34afe502-8169-47a8-bb86-9a4df02ffdb6", - "version_uuid": "4fb95bfa-b3be-463c-b26d-d7390c1a258e" - } - ], - "name": "Alternative Model", - "uuid": "b87a835d-7c42-4866-8350-3148bd8baa29", - "version_uuid": "3eaee69e-d5ba-4dd1-8c97-a5fbcdbc4712", - "workflow_index": 0, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Rotate Building Relative to Current Orientation Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "e63a9387-4877-4ae0-930f-5caaf3876a56", - "version_uuid": "2effd786-27f6-45cd-bfbe-b81648a2fd9c" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 90.0, - "display_name": "Number of Degrees to Rotate Building (positive value is clockwise).", - "domain_type": "Interval", - "name": "relative_building_rotation", - "required": true, - "type": "Double", - "uuid": "ca8e826a-66dd-4c11-9b74-5c672c0986ee", - "value": 5.0, - "version_uuid": "c49fbbc7-53f4-4666-9234-bbe247e1b758" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/RotateBuilding", - "bcl_measure_uuid": "a5be6c96-4ecc-47fa-8d32-f4216ebc2e7d", - "bcl_measure_version_uuid": "5756671e-48ed-4bf3-a403-bbc4d708a3d8", - "description": "Rotate your building relative to its current orientation. This will not rotate site shading objects.", - "display_name": "Rotate Building Relative to Current Orientation 5", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Rotate Building Relative to Current Orientation 5", - "output_file_type": "OSM", - "uuid": "c41d5978-bf21-45ab-a03e-0de36dc817db", - "version_uuid": "b5bac7ec-ef96-4cda-9c11-841a76b74ac7" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 90.0, - "display_name": "Number of Degrees to Rotate Building (positive value is clockwise).", - "domain_type": "Interval", - "name": "relative_building_rotation", - "required": true, - "type": "Double", - "uuid": "83c3fa34-b414-483d-bcf2-223ff8f92aa9", - "value": 10.0, - "version_uuid": "dd44c9b6-c3a6-4fd3-ac3b-28aba0b320d7" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/RotateBuilding", - "bcl_measure_uuid": "a5be6c96-4ecc-47fa-8d32-f4216ebc2e7d", - "bcl_measure_version_uuid": "5756671e-48ed-4bf3-a403-bbc4d708a3d8", - "description": "Rotate your building relative to its current orientation. This will not rotate site shading objects.", - "display_name": "Rotate Building Relative to Current Orientation 10", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Rotate Building Relative to Current Orientation 10", - "output_file_type": "OSM", - "uuid": "1cfd8850-3f3a-46dd-a2d7-1fbb0a791999", - "version_uuid": "07244e17-2c7b-433d-90d5-96d9cadb52dc" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 90.0, - "display_name": "Number of Degrees to Rotate Building (positive value is clockwise).", - "domain_type": "Interval", - "name": "relative_building_rotation", - "required": true, - "type": "Double", - "uuid": "41ed40e7-fef7-4f4c-81d5-5dcf672cc864", - "value": 15.0, - "version_uuid": "22c5d91b-44a6-46db-9a6a-63ed6aec6298" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/RotateBuilding", - "bcl_measure_uuid": "a5be6c96-4ecc-47fa-8d32-f4216ebc2e7d", - "bcl_measure_version_uuid": "5756671e-48ed-4bf3-a403-bbc4d708a3d8", - "description": "Rotate your building relative to its current orientation. This will not rotate site shading objects.", - "display_name": "Rotate Building Relative to Current Orientation 15", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Rotate Building Relative to Current Orientation 15", - "output_file_type": "OSM", - "uuid": "032ec59b-52c2-4acb-8c6d-9fa95f7c6be4", - "version_uuid": "73eb4c3d-b74b-43d6-b62f-edb75b6c0094" - } - ], - "name": "Rotate Building Relative to Current Orientation Group", - "uuid": "1b178f13-8dc5-4ee3-86cf-4476bbbce770", - "version_uuid": "3e713d05-86bc-40b2-bace-4857c7c6b8bc", - "workflow_index": 1, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Set Ext Wall To Ground Boundary Condition By Story Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "0a9a3e59-5faf-41ec-8daf-85e9de6e0aae", - "version_uuid": "d8ee8cea-d7ac-45f9-afd2-55cf83be24a3" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Building Story 1", - "value": "{78912b12-8805-43f7-b5dd-f03bf3a96a78}" - }, - { - "choice_index": 1, - "display_name": "Building Story 2", - "value": "{31a52ce3-c163-41fd-bd94-222c889634a9}" - }, - { - "choice_index": 2, - "display_name": "Building Story 3", - "value": "{969759f2-329a-4a74-9fe3-2baf09d5ce36}" - }, - { - "choice_index": 3, - "display_name": "Building Story 4", - "value": "{e37bc327-f54f-4ae4-9f7b-aadb4bf9187c}" - }, - { - "choice_index": 4, - "display_name": "Building Story 5", - "value": "{aecc3b07-e43b-4511-ae88-1d8246020f8f}" - } - ], - "display_name": "Choose a Story to Change Wall Boundary Conditions For.", - "domain_type": "Enumeration", - "name": "storyBasement", - "required": true, - "type": "Choice", - "uuid": "60fe36b5-32e1-4182-b554-842dae67d411", - "value": "{78912b12-8805-43f7-b5dd-f03bf3a96a78}", - "version_uuid": "6e22b845-40ee-406b-9c1c-365dd99942dc" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/SetExtWallToGroundBoundaryConditionByStory", - "bcl_measure_uuid": "be9023ea-fefe-4074-ac03-718ccfb6d25f", - "bcl_measure_version_uuid": "4ba5853d-785e-4908-8f4c-291245439a7e", - "description": "Exterior walls can't have sub surfaces", - "display_name": "Set Ext Wall To Ground Boundary Condition By Story (E+ should fail)", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Set Ext Wall To Ground Boundary Condition By Story (E+ should fail)", - "output_file_type": "OSM", - "uuid": "80644c7b-9dce-4acb-805d-a6f1ef41df89", - "version_uuid": "8aee56fa-493b-463a-ba13-bb3d3b5fbea9" - } - ], - "name": "Set Ext Wall To Ground Boundary Condition By Story Group", - "uuid": "c39a3ee0-3c8d-4c2d-9d91-f1daa71445ff", - "version_uuid": "89510d22-01e1-4264-b28a-0b048c729a84", - "workflow_index": 2, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Set Interior Walls to Adiabatic Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "1b5430ff-ddf4-4ca8-9b5b-080fa0d5e1b8", - "version_uuid": "4e6af500-cc7b-47ad-ac86-efd891010fac" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "000 AtticRoof ClimateZone 1-8", - "value": "{cf81dd0b-fee6-4952-8177-441f534451c5}" - }, - { - "choice_index": 1, - "display_name": "000 ExtSlab 4in ClimateZone 1-8", - "value": "{214c9f82-e34e-4143-bacd-dd958ef63823}" - }, - { - "choice_index": 2, - "display_name": "000 ExtSlab 8in ClimateZone 1-8", - "value": "{57781d80-14d1-470a-82ca-90a031bce305}" - }, - { - "choice_index": 3, - "display_name": "000 ExtSlabCarpet 4in ClimateZone 1-8", - "value": "{b88691a7-e9b0-4ff0-87e4-858b5b50b56c}" - }, - { - "choice_index": 4, - "display_name": "000 ExtSlabCarpet 8in ClimateZone 1-8", - "value": "{a8bade1f-a519-47be-813c-f8b2d74acf22}" - }, - { - "choice_index": 5, - "display_name": "000 Exterior Door", - "value": "{fb30531d-9266-4c91-885f-0ec2fb5482e6}" - }, - { - "choice_index": 6, - "display_name": "000 Exterior Floor", - "value": "{0709dfa1-4397-40ff-af32-b9dd823630b7}" - }, - { - "choice_index": 7, - "display_name": "000 Exterior Roof", - "value": "{9d0a3f5f-8569-4993-a529-4019d04d875f}" - }, - { - "choice_index": 8, - "display_name": "000 Exterior Wall", - "value": "{0963de92-4b23-49d3-a415-68cb0a85069a}" - }, - { - "choice_index": 9, - "display_name": "000 Exterior Window", - "value": "{a618bef4-afe5-4dde-bcf5-8057338cba27}" - }, - { - "choice_index": 10, - "display_name": "000 Interior Ceiling", - "value": "{224cc0f9-077e-428d-bc7c-ac2fb3dd8241}" - }, - { - "choice_index": 11, - "display_name": "000 Interior Door", - "value": "{8a7ba072-82ca-4f77-af03-922fb4e52b19}" - }, - { - "choice_index": 12, - "display_name": "000 Interior Floor", - "value": "{128499cd-b542-41a5-9306-748b7a658703}" - }, - { - "choice_index": 13, - "display_name": "000 Interior Partition", - "value": "{7637dc40-61ee-48cd-b120-3672a87ad41e}" - }, - { - "choice_index": 14, - "display_name": "000 Interior Wall", - "value": "{bebe4adc-f849-444f-9b2f-fed9b735e166}" - }, - { - "choice_index": 15, - "display_name": "000 Interior Window", - "value": "{84ce7365-ed93-4f6e-bb34-aea6faca9c6e}" - }, - { - "choice_index": 16, - "display_name": "ASHRAE 189.1-2009 AtticFloor ClimateZone 1-8", - "value": "{9c7fa3f3-0827-4f81-a2c1-adf85b6f7816}" - }, - { - "choice_index": 17, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 1", - "value": "{6dc53208-9c99-464e-bf88-a1383ffdef91}" - }, - { - "choice_index": 18, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 2-5", - "value": "{5cb0b684-57aa-4edc-abf4-f11bf072de56}" - }, - { - "choice_index": 19, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 6", - "value": "{a9a155dc-5d71-44eb-af43-f433f38004ee}" - }, - { - "choice_index": 20, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 7-8", - "value": "{e8d6a9b2-bcba-49bd-a499-dea295fd2abf}" - }, - { - "choice_index": 21, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 1", - "value": "{4c4ebd4c-3777-4760-a008-a9bbc8b6dcd2}" - }, - { - "choice_index": 22, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 2-5", - "value": "{e7f18c66-d8e7-4381-ba79-7532aeae2bab}" - }, - { - "choice_index": 23, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 6", - "value": "{75e10288-a996-4d56-901a-43b000538ac5}" - }, - { - "choice_index": 24, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 7-8", - "value": "{f8bb3ee5-2e3e-4a03-b2c4-b66e613f118e}" - }, - { - "choice_index": 25, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 1", - "value": "{8bd7b35f-5189-44c4-a6af-04ab5ad43768}" - }, - { - "choice_index": 26, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 2", - "value": "{4f514d75-d8fc-4639-a52f-1305c2dc5562}" - }, - { - "choice_index": 27, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 3", - "value": "{c9d0905b-1ab4-4f91-9133-f936899e28e7}" - }, - { - "choice_index": 28, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 4", - "value": "{e7facf61-7232-450f-b723-46441eb9963a}" - }, - { - "choice_index": 29, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 5", - "value": "{897c0610-358a-4a46-ab03-75e0f772739d}" - }, - { - "choice_index": 30, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 6", - "value": "{ef598e5b-f520-4f97-8815-2430b14e227e}" - }, - { - "choice_index": 31, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 7-8", - "value": "{b8f00d24-7eb9-4651-b152-c3455a2fb940}" - }, - { - "choice_index": 32, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 1", - "value": "{8f731aa0-e04f-43a6-a6b5-032fe6ab3ce9}" - }, - { - "choice_index": 33, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 2", - "value": "{457eaf48-60ff-4336-a4a8-e7c9fc015126}" - }, - { - "choice_index": 34, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 3", - "value": "{d567d3f3-aa8b-4bc7-9ec9-ce45bf024c6b}" - }, - { - "choice_index": 35, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 4", - "value": "{18ed919b-8b6d-42ae-9090-768f6f72461d}" - }, - { - "choice_index": 36, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 5", - "value": "{87ba0f94-f9de-4ddc-b838-651981028955}" - }, - { - "choice_index": 37, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 6", - "value": "{5b611904-f48b-4afd-b228-d51b5220b3ce}" - }, - { - "choice_index": 38, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 7", - "value": "{5b1576da-4167-41d8-bfd4-4ed1bb517164}" - }, - { - "choice_index": 39, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 8", - "value": "{3eb0a79d-db20-46fa-869b-b2b192799378}" - }, - { - "choice_index": 40, - "display_name": "ASHRAE 189.1-2009 ExtWall Metal ClimateZone 1-3", - "value": "{20339495-9c02-4aed-98b8-38e46dd40704}" - }, - { - "choice_index": 41, - "display_name": "ASHRAE 189.1-2009 ExtWall Metal ClimateZone 4-8", - "value": "{45deceb6-8440-4c0a-b270-4399110a749c}" - }, - { - "choice_index": 42, - "display_name": "ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 1-3", - "value": "{1e9b4d22-f8b7-4c67-b97c-fc2b4da763aa}" - }, - { - "choice_index": 43, - "display_name": "ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 4-8", - "value": "{d650a640-1cc5-4828-a810-50f737f1f667}" - }, - { - "choice_index": 44, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 1-4", - "value": "{4110bc94-a9f5-4d0a-9d8a-869ceb63b4e1}" - }, - { - "choice_index": 45, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 5", - "value": "{8f670027-3ed4-4b2a-95d8-974d5ca3ae3f}" - }, - { - "choice_index": 46, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 6-8", - "value": "{303d0a81-6b01-43fd-b01d-f1c78f98ba9d}" - }, - { - "choice_index": 47, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 1", - "value": "{8cebe71e-55d2-4231-8224-0f7fbb4c7501}" - }, - { - "choice_index": 48, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 2", - "value": "{3103b2a2-5aa6-4fe5-aaa6-3510a2354292}" - }, - { - "choice_index": 49, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 3", - "value": "{0102c141-2a45-4a6f-8ab7-0aadb64e7475}" - }, - { - "choice_index": 50, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 4-5", - "value": "{476bda26-7e4a-4312-8e54-ac3e4cfadab0}" - }, - { - "choice_index": 51, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 6", - "value": "{2512851a-42b0-4909-9158-cc20b02c49b7}" - }, - { - "choice_index": 52, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 7-8", - "value": "{171622be-5e2c-475c-a2d0-934941a4722f}" - }, - { - "choice_index": 53, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone alt-res 4-5", - "value": "{6c574b52-b8e1-4d5a-bb06-1a4e6ef44eac}" - }, - { - "choice_index": 54, - "display_name": "ASHRAE 90.1-2004 AtticFloor ClimateZone 1-5", - "value": "{cd678e6b-694b-4e0c-b553-6a4b6c6078b7}" - }, - { - "choice_index": 55, - "display_name": "ASHRAE 90.1-2004 AtticFloor ClimateZone 6-8", - "value": "{989760b3-91a7-4184-84c6-e3dc761ca005}" - }, - { - "choice_index": 56, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 1-4", - "value": "{0fa50520-3c17-41b6-b726-52a1146c3c99}" - }, - { - "choice_index": 57, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 5-6", - "value": "{3c24cdd6-28fd-436e-b764-c500e6fc8ce3}" - }, - { - "choice_index": 58, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 7", - "value": "{759086c3-59fa-4ca1-b2ff-3509fd89d1bb}" - }, - { - "choice_index": 59, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 8", - "value": "{e5760002-826e-4c81-b6fd-4a88104e8f61}" - }, - { - "choice_index": 60, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 1", - "value": "{165ebc4a-0c25-4b6e-91cc-51bb5cf737a5}" - }, - { - "choice_index": 61, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 2", - "value": "{114ca435-35f8-4ded-9af9-032a74dc39a6}" - }, - { - "choice_index": 62, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 3-4", - "value": "{19258a75-ff0e-4498-97ec-4c3bd54b1461}" - }, - { - "choice_index": 63, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 5-6", - "value": "{ab4424a7-79cc-45a3-add5-e747b45bf5d5}" - }, - { - "choice_index": 64, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 7", - "value": "{5285e3f9-d922-43e1-8acc-c2c533d4af0f}" - }, - { - "choice_index": 65, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 8", - "value": "{8bb0ff28-1fd4-4a74-91e6-deafc6615039}" - }, - { - "choice_index": 66, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 1-2", - "value": "{693432ff-0f46-45e3-8055-1be58ddc7b77}" - }, - { - "choice_index": 67, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 3-4", - "value": "{c14c4fbc-5bda-483f-b283-fce1eca3a0f0}" - }, - { - "choice_index": 68, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 5", - "value": "{743db2d4-f8c6-42d7-86ab-ed334ce6d11d}" - }, - { - "choice_index": 69, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 6", - "value": "{9aa95e7e-e938-4ee2-9627-037c1c05717c}" - }, - { - "choice_index": 70, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 7", - "value": "{fae8bf90-b4c0-4f73-8467-dc3f72661bf1}" - }, - { - "choice_index": 71, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 8", - "value": "{8f901525-a835-48cb-b3ac-30394a2190eb}" - }, - { - "choice_index": 72, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 1-2", - "value": "{25e2b5b1-dde3-4875-bf4d-d85069dbc826}" - }, - { - "choice_index": 73, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 3", - "value": "{8564f337-21ff-414c-911c-c6d7b4aed473}" - }, - { - "choice_index": 74, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 4", - "value": "{7975e2a4-ce13-4d7f-bdab-9f43a937c765}" - }, - { - "choice_index": 75, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 5-6", - "value": "{1e61fbb2-1d87-4d2a-a40b-b53b7bae77df}" - }, - { - "choice_index": 76, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 7", - "value": "{ae403f70-80c6-424a-bf28-6d1519620264}" - }, - { - "choice_index": 77, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 8", - "value": "{f00f5516-036d-4fed-a958-44d9152cfff8}" - }, - { - "choice_index": 78, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 1", - "value": "{7e8c8909-869e-4787-a454-b022a4615835}" - }, - { - "choice_index": 79, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 2-3", - "value": "{5703b32d-d629-49f3-a312-a6f01194941c}" - }, - { - "choice_index": 80, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 4", - "value": "{9889a8bc-b9f4-446b-9f30-c6c051494f35}" - }, - { - "choice_index": 81, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 5", - "value": "{74589afa-ab24-45eb-aa34-bfe8702995c5}" - }, - { - "choice_index": 82, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 6-8", - "value": "{e1e27d31-4a45-455b-a57b-7dca408ab9ca}" - }, - { - "choice_index": 83, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 1-4", - "value": "{f393b6ee-4ba2-4ede-a275-8533ddc3800e}" - }, - { - "choice_index": 84, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 5-6", - "value": "{9daf37fd-5766-465c-b3a2-80b125b4d3a2}" - }, - { - "choice_index": 85, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 7-8", - "value": "{07ee1c98-49c3-4473-ba13-9c9c30df39fa}" - }, - { - "choice_index": 86, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 3", - "value": "{47fe76c4-d26e-4660-93e2-b03f56c9a678}" - }, - { - "choice_index": 87, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 4-6", - "value": "{aa53823c-b6d9-4808-8453-85e1fc1640d7}" - }, - { - "choice_index": 88, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 8", - "value": "{1d418520-72cc-4b45-a62c-52c570c31a86}" - }, - { - "choice_index": 89, - "display_name": "ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 1-7", - "value": "{ddf48347-e5f1-4b39-a4b5-1529a914b797}" - }, - { - "choice_index": 90, - "display_name": "ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 8", - "value": "{b095b2e2-94eb-40d0-8569-a77051670924}" - }, - { - "choice_index": 91, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 1-2", - "value": "{a6256a2d-73b3-4f4c-a692-eca1300dec04}" - }, - { - "choice_index": 92, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 3a-3b", - "value": "{89421b16-f941-4603-97c7-6482f3de5fea}" - }, - { - "choice_index": 93, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 3c", - "value": "{dca7baae-1750-4ccf-9342-82abc19bfb58}" - }, - { - "choice_index": 94, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 4-6", - "value": "{19c0c7b0-cc51-4778-9f5b-b0b87dcf7be2}" - }, - { - "choice_index": 95, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 7", - "value": "{219c6bd5-b48b-43ed-9a11-8bf83fb461ac}" - }, - { - "choice_index": 96, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 8", - "value": "{e7ea7385-bf19-4249-aa48-2df099e1c504}" - }, - { - "choice_index": 97, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 3c", - "value": "{81541225-745b-4509-947e-84e9b0bdf9b8}" - }, - { - "choice_index": 98, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 4-6", - "value": "{8880ad7c-de07-4987-99eb-18ce2d0bdc41}" - }, - { - "choice_index": 99, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 7", - "value": "{45972d1a-6ff6-4734-82ec-4ba4e2ce50db}" - }, - { - "choice_index": 100, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 8", - "value": "{9ea847f5-94ba-4907-9cbb-955226ee73e4}" - }, - { - "choice_index": 101, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resA 3a-3b", - "value": "{4bf3b597-ab60-47be-87c7-3e54b05cc44c}" - }, - { - "choice_index": 102, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resH 3a-3b", - "value": "{2c59da49-c229-4f1c-b19f-1a857b0ce5a7}" - }, - { - "choice_index": 103, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-ware 1-8", - "value": "{27836075-697d-499f-96e7-6cc381f26699}" - }, - { - "choice_index": 104, - "display_name": "Air Wall", - "value": "{41e90204-8ddc-4958-aafa-afebcfff7a36}" - }, - { - "choice_index": 105, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 1", - "value": "{6746aa80-5225-40da-9a77-13e2b4194be6}" - }, - { - "choice_index": 106, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2a", - "value": "{67de0ced-c984-47a9-92fc-24fb61fcbdfa}" - }, - { - "choice_index": 107, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2b", - "value": "{8a5b107b-96a5-4c05-90bb-9b2bb5f0ef65}" - }, - { - "choice_index": 108, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3a", - "value": "{f4727994-ac73-4466-a009-21b9d3ab4139}" - }, - { - "choice_index": 109, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAS", - "value": "{ce7a1e48-e6d6-4dda-8680-bcd7423c2e5e}" - }, - { - "choice_index": 110, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAX", - "value": "{2b9ad167-3cb9-4945-a5c8-a9313fcaf170}" - }, - { - "choice_index": 111, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3c", - "value": "{ed09534d-8a29-43a5-8da2-54c048337381}" - }, - { - "choice_index": 112, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4a", - "value": "{ec817670-9cd5-4f35-8c9e-fcc6176a8585}" - }, - { - "choice_index": 113, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4b", - "value": "{aa514c9e-e060-4a65-919a-5d815038e0dd}" - }, - { - "choice_index": 114, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4c", - "value": "{0e4f384c-1100-47b3-8a53-5c798aad6154}" - }, - { - "choice_index": 115, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5a", - "value": "{9db9bca5-8737-4f22-95ad-12c8b3f552f8}" - }, - { - "choice_index": 116, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5b", - "value": "{6a59185f-3513-4391-88c6-dcc56ed8368c}" - }, - { - "choice_index": 117, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6a", - "value": "{2f20ebc3-b630-4900-9af1-6c7a0693fa10}" - }, - { - "choice_index": 118, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6b", - "value": "{b719f186-aab6-499e-a66a-809b2165c93c}" - }, - { - "choice_index": 119, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 7", - "value": "{d7e81209-6472-4f2f-8526-6d5be298721a}" - }, - { - "choice_index": 120, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 8", - "value": "{c804c4cd-309a-4f0a-84e4-c9668ca255ef}" - }, - { - "choice_index": 121, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 1", - "value": "{e44fdced-5361-4f65-bf18-3b2e0a61fdeb}" - }, - { - "choice_index": 122, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 2a", - "value": "{21d08ce3-2619-42b2-a66e-49d69db131df}" - }, - { - "choice_index": 123, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 2b", - "value": "{0c079479-b0e4-4406-bb4a-82037a757660}" - }, - { - "choice_index": 124, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3a", - "value": "{99d1add8-3054-4f81-ab6d-7f871cccd091}" - }, - { - "choice_index": 125, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAS", - "value": "{8624534a-307e-4c1b-b355-ce831e50a47c}" - }, - { - "choice_index": 126, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAX", - "value": "{6d442e01-ddc7-4965-8033-b7470a7f42fc}" - }, - { - "choice_index": 127, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3c", - "value": "{19b05f1b-19f4-404c-9015-0795af73dc4e}" - }, - { - "choice_index": 128, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4a", - "value": "{b1efc8ad-52f8-44fc-9ff2-32fe8091784b}" - }, - { - "choice_index": 129, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4b", - "value": "{88fbc67b-f8d9-416c-9a75-4f425f038914}" - }, - { - "choice_index": 130, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4c", - "value": "{d0057c0a-a9fb-41ac-a981-f54367b3b63c}" - }, - { - "choice_index": 131, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 5a", - "value": "{39008a65-a85d-4c44-ba66-1c02375ed93d}" - }, - { - "choice_index": 132, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 5b", - "value": "{3cdb8067-edd7-4ce2-b585-002e162c6550}" - }, - { - "choice_index": 133, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 6a", - "value": "{a9817b30-15bf-4ddc-bc8e-b850a65a3070}" - }, - { - "choice_index": 134, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 6b", - "value": "{24d42982-8445-4d5f-b78f-92cc3c953005}" - }, - { - "choice_index": 135, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 7", - "value": "{6cd3fce7-f6a7-4521-9701-d37a843b2342}" - }, - { - "choice_index": 136, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 8", - "value": "{2cd34f80-65b3-449a-b146-eca1ec0ff57d}" - }, - { - "choice_index": 137, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 1", - "value": "{0eaaf3ab-7389-45f7-a23c-0834161d3fb0}" - }, - { - "choice_index": 138, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 2a", - "value": "{9050c860-ccfe-4073-92ce-06521d1598c9}" - }, - { - "choice_index": 139, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 2b", - "value": "{b7df3f6f-8db7-4901-ba73-5fb897468587}" - }, - { - "choice_index": 140, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3a", - "value": "{8277a688-2a06-46fb-a8c0-f571fa1c371c}" - }, - { - "choice_index": 141, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAS", - "value": "{4d3a990b-f472-4098-9db8-452f0d5591ec}" - }, - { - "choice_index": 142, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAX", - "value": "{8aa397c8-aaa2-4d79-9733-7cc01d8ce81f}" - }, - { - "choice_index": 143, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3c", - "value": "{63bc5e5a-1783-4997-92cc-11432dd9ea97}" - }, - { - "choice_index": 144, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4a", - "value": "{2bff44b5-75d1-4af4-ab00-c5c0711cb912}" - }, - { - "choice_index": 145, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4b", - "value": "{10e4275d-80d3-4757-bfa6-1bc8e0da0350}" - }, - { - "choice_index": 146, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4c", - "value": "{f393a212-8bfa-43f0-820e-163878adeced}" - }, - { - "choice_index": 147, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 5a", - "value": "{a3c2dfd9-ce3f-4384-9e51-a3d7a76a5d3f}" - }, - { - "choice_index": 148, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 5b", - "value": "{909f9c4c-3fec-4706-b955-579b781ae14e}" - }, - { - "choice_index": 149, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 6a", - "value": "{46c58699-3cfd-4472-b18c-e0127de8426c}" - }, - { - "choice_index": 150, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 6b", - "value": "{ccea3e85-7437-4102-9334-c1a71c399e4f}" - }, - { - "choice_index": 151, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 7", - "value": "{c1a95633-7a44-4b7c-9edb-9dddc0fb8425}" - }, - { - "choice_index": 152, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 8", - "value": "{8349efd9-b5d5-43b5-a247-8c53be3151c6}" - }, - { - "choice_index": 153, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 1", - "value": "{c4bcceea-479f-4a47-81ef-9e5e09f3374b}" - }, - { - "choice_index": 154, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 2a", - "value": "{9f190b47-7b6b-471c-ad18-5c0d64f83d34}" - }, - { - "choice_index": 155, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 2b", - "value": "{69340ca0-44c3-45a1-9b0c-b6ebcf64a730}" - }, - { - "choice_index": 156, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3a", - "value": "{a836bf82-ecf0-4c83-be16-8c520578ea53}" - }, - { - "choice_index": 157, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAS", - "value": "{adea5e6c-d15c-40bd-91a2-cf972f2c5bf6}" - }, - { - "choice_index": 158, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAX", - "value": "{7f05787b-4dd1-4b87-aa25-f25b6b8d19cb}" - }, - { - "choice_index": 159, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3c", - "value": "{a5835a61-4d06-4b07-a718-1c563dc6d3b7}" - }, - { - "choice_index": 160, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4a", - "value": "{b7f6ba6e-da07-4207-a32d-3919cd253da6}" - }, - { - "choice_index": 161, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4b", - "value": "{bee8ddc2-7c4c-49b8-b37f-e75a1c810396}" - }, - { - "choice_index": 162, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4c-5a", - "value": "{f57fb29e-6921-47e1-b7c1-2caca82642e3}" - }, - { - "choice_index": 163, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 5b", - "value": "{ad51ccbb-ca21-4460-8bd1-87ccc5458ee4}" - }, - { - "choice_index": 164, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 6a", - "value": "{76e68b8b-4834-45b0-a037-56f08336119a}" - }, - { - "choice_index": 165, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 6b", - "value": "{559763bb-3d1b-4463-9ac1-caaa6d0736e9}" - }, - { - "choice_index": 166, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 7", - "value": "{d0f44314-4750-4f01-a4dd-4a88035de3d5}" - }, - { - "choice_index": 167, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 8", - "value": "{e4c46517-d200-4a5a-94ea-84adf49cf08f}" - }, - { - "choice_index": 168, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 1", - "value": "{4e0862ac-492a-4fb3-8ee0-c77deee231d5}" - }, - { - "choice_index": 169, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 2a", - "value": "{1409e128-9504-4aaf-9806-0dd68e479299}" - }, - { - "choice_index": 170, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 2b", - "value": "{93cb971b-7ce2-45ec-a87f-ddb079b66665}" - }, - { - "choice_index": 171, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3a", - "value": "{b7e0dd8b-cd7f-4a05-84ce-65db621ea63f}" - }, - { - "choice_index": 172, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAS", - "value": "{9e2628a0-4805-402f-aabd-0cf3ee109465}" - }, - { - "choice_index": 173, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAX", - "value": "{ad1e452d-be49-4049-9efa-12e254092751}" - }, - { - "choice_index": 174, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3c", - "value": "{36d0363a-4295-4967-9003-564c24bf7bf3}" - }, - { - "choice_index": 175, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4a", - "value": "{222f1712-c952-4743-8fb4-a46b3a9d2bc8}" - }, - { - "choice_index": 176, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4b", - "value": "{c86c6541-c4ac-4fc4-901f-dada76a36122}" - }, - { - "choice_index": 177, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4c", - "value": "{9900caf8-b244-4b1d-8bd3-9708592a7bd1}" - }, - { - "choice_index": 178, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 5", - "value": "{4e7bc486-3d83-4bc0-aed0-c39c35df9024}" - }, - { - "choice_index": 179, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 6a", - "value": "{c2cd5e12-df10-4764-b600-034d049360fb}" - }, - { - "choice_index": 180, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 6b", - "value": "{fa626a46-e626-4aeb-b080-21a22121908d}" - }, - { - "choice_index": 181, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 7", - "value": "{d8f3e463-1102-4bae-8275-d56fd7b7f4dc}" - }, - { - "choice_index": 182, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 8", - "value": "{8075ca6b-0308-4406-b4ab-05f0ab1b2cf2}" - }, - { - "choice_index": 183, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 1", - "value": "{ef809b35-2a9d-4982-b8f3-62fc12f6582e}" - }, - { - "choice_index": 184, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2a", - "value": "{ff1ef0ae-2bf1-4c1f-968d-e7f96eafa8cb}" - }, - { - "choice_index": 185, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2b", - "value": "{0731e402-1c43-429a-af11-6d80dde43970}" - }, - { - "choice_index": 186, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3a", - "value": "{133a4042-c42b-46de-bfb8-794dff10d61a}" - }, - { - "choice_index": 187, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAS", - "value": "{1ef3457a-356d-495b-97f2-020b7f5588e7}" - }, - { - "choice_index": 188, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAX", - "value": "{05480032-7251-418b-b5f9-9c81dd080a2c}" - }, - { - "choice_index": 189, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3c", - "value": "{add75a0d-d383-4bf6-850a-dc38e00d6e61}" - }, - { - "choice_index": 190, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4a", - "value": "{aa1ca496-2daa-4f09-8a52-386e66022c2d}" - }, - { - "choice_index": 191, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4b", - "value": "{6510e780-bed0-4da2-b2af-2f7b97aac0cc}" - }, - { - "choice_index": 192, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4c", - "value": "{f3879aa7-8389-40b9-9365-b8c6792e856f}" - }, - { - "choice_index": 193, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 5", - "value": "{f10eb590-a0a7-4b40-851c-0ec1415c4ac9}" - }, - { - "choice_index": 194, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6a", - "value": "{a5665523-873f-4992-8423-0fbc7dc062ee}" - }, - { - "choice_index": 195, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6b", - "value": "{aae388a0-d135-4dd6-ba0f-aa443c4ca8ba}" - }, - { - "choice_index": 196, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 7", - "value": "{82975882-7278-4f6f-afc9-98f1641db383}" - }, - { - "choice_index": 197, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 8", - "value": "{79a528b6-93f8-4eee-9da6-38dec1fd035b}" - }, - { - "choice_index": 198, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 1", - "value": "{eb2189d5-9a56-4f58-92b3-d2541c10dce8}" - }, - { - "choice_index": 199, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2a", - "value": "{0246ced9-4980-4812-96fd-9a44d2d7a48d}" - }, - { - "choice_index": 200, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2b", - "value": "{c2a848b1-6daa-47f8-a07e-d52b61c372da}" - }, - { - "choice_index": 201, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3a", - "value": "{092d2b5a-d21e-4ff5-9804-e5139507611b}" - }, - { - "choice_index": 202, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAS", - "value": "{46b91df6-0dfe-4807-8e0f-5432140cc796}" - }, - { - "choice_index": 203, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAX", - "value": "{11e7cdad-a5ad-474a-9ea4-ab03e5dee103}" - }, - { - "choice_index": 204, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3c", - "value": "{40c5c71d-f7a5-47c5-817d-60bf0ad4e2b4}" - }, - { - "choice_index": 205, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4a", - "value": "{bdeb08a7-42ff-4959-b44f-05dda43eee5a}" - }, - { - "choice_index": 206, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4b", - "value": "{b9ac9f75-4f8c-484f-9f0b-f91f3df44f5f}" - }, - { - "choice_index": 207, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4c", - "value": "{e53e480f-58a9-422f-b7ae-15ce3c37e9dc}" - }, - { - "choice_index": 208, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 5", - "value": "{b85f7456-c87f-4c4c-b967-09678adc0f79}" - }, - { - "choice_index": 209, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6a", - "value": "{d3dfd27a-7896-499b-a15e-542f9cd9e2a3}" - }, - { - "choice_index": 210, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6b", - "value": "{0f36580e-cac0-43cc-8c52-deff07cd1d32}" - }, - { - "choice_index": 211, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 7", - "value": "{7744de9e-3063-4510-ac21-62c542e77cd5}" - }, - { - "choice_index": 212, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 8", - "value": "{27ce314f-ce79-4436-8e21-a79e529361e9}" - }, - { - "choice_index": 213, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 1-2", - "value": "{2202a2a1-83a5-48fd-9c7e-7f578b892e8e}" - }, - { - "choice_index": 214, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3a", - "value": "{60e9f478-0fa9-4b75-9581-7b479e7f6050}" - }, - { - "choice_index": 215, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3b LAS", - "value": "{710f681a-9b4c-4719-a2f8-39c013cdbd8b}" - }, - { - "choice_index": 216, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3b LAX", - "value": "{32a78fbc-c00d-4b84-b9ba-8ee3c497750f}" - }, - { - "choice_index": 217, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3c", - "value": "{3614120e-0f0d-48d8-b9c8-7cfe2990a19b}" - }, - { - "choice_index": 218, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4a", - "value": "{30811454-499d-4fa3-96e8-21149c926e61}" - }, - { - "choice_index": 219, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4b", - "value": "{752467df-bbf8-4b1d-8e5c-1780ec1166e1}" - }, - { - "choice_index": 220, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4c", - "value": "{49a76252-bd61-4f47-9cff-abed8329b885}" - }, - { - "choice_index": 221, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 5", - "value": "{edf897b5-b137-45ae-ab5a-5c2154785bcb}" - }, - { - "choice_index": 222, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 6", - "value": "{0b49d858-5e96-417b-952a-9744e03bcd4a}" - }, - { - "choice_index": 223, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 7", - "value": "{b2ce332f-594e-4860-ba5f-92cbd516dfda}" - }, - { - "choice_index": 224, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 8", - "value": "{f3666b49-59b0-452c-b1bd-705f501985bc}" - }, - { - "choice_index": 225, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone alt-lrgoff hosp 1-8", - "value": "{df9e360a-1f9d-4a5e-ad1b-ce3ecd5deef4}" - }, - { - "choice_index": 226, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 1-3", - "value": "{142e4347-8739-4f16-82dd-8971df6ff0ee}" - }, - { - "choice_index": 227, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4a", - "value": "{540be8db-f63a-48a0-80bf-316ed7bb19df}" - }, - { - "choice_index": 228, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4b", - "value": "{eb8472fe-f574-4bbd-bd1d-90a261597c36}" - }, - { - "choice_index": 229, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4c", - "value": "{5a1f761d-4a54-406a-ac93-865f3f7365d2}" - }, - { - "choice_index": 230, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5a", - "value": "{d6ef5895-b6ad-4a07-b1f3-141b43c07eef}" - }, - { - "choice_index": 231, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5b", - "value": "{f03d8060-7c06-4214-b63f-a29e4897094c}" - }, - { - "choice_index": 232, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 6", - "value": "{07905031-5d9d-4fc0-804e-118b93a54369}" - }, - { - "choice_index": 233, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 7", - "value": "{ad130c26-4100-4e95-b4f4-a3d4d4394063}" - }, - { - "choice_index": 234, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 8", - "value": "{36dc01e7-443b-4b46-a46b-5b576ec585bf}" - }, - { - "choice_index": 235, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 1-3", - "value": "{b58dbdc6-719f-42ca-bcaa-e8a6675a82ef}" - }, - { - "choice_index": 236, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4a", - "value": "{60f147c0-65bd-4463-972b-4a7ecfd275cd}" - }, - { - "choice_index": 237, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4b", - "value": "{e0797daa-8faf-4c75-9ea0-51a1c7294f16}" - }, - { - "choice_index": 238, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4c", - "value": "{2af00d1c-686f-45a5-910f-e2db6cf5df40}" - }, - { - "choice_index": 239, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 5a", - "value": "{d0f9a9ad-125e-4224-a12c-3cbaa48ad8de}" - }, - { - "choice_index": 240, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 5b", - "value": "{4340ebc4-ce3f-459e-93de-70a1b3f25258}" - }, - { - "choice_index": 241, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 6", - "value": "{2b550db8-333f-4844-b421-a86dca37b73d}" - }, - { - "choice_index": 242, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 7", - "value": "{897beb5c-d546-4ee9-8ab1-ad416c9c6f8e}" - }, - { - "choice_index": 243, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 8", - "value": "{8a3262cd-f1fa-41eb-bbaa-7b1ba0cf2f60}" - }, - { - "choice_index": 244, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 1-2", - "value": "{d353edf7-fc83-4ac2-b098-046fdd385761}" - }, - { - "choice_index": 245, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3a", - "value": "{dc7b0ce7-12c4-4b8e-a41e-18807392eff2}" - }, - { - "choice_index": 246, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3b", - "value": "{4dd9b36f-834a-4f15-98c4-6e3492c0aeea}" - }, - { - "choice_index": 247, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3c", - "value": "{6c7defac-af05-4830-bd27-f4eeed4d72bc}" - }, - { - "choice_index": 248, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4a", - "value": "{6dbc7b5a-e6ba-4b9b-a2e7-5b58a997affe}" - }, - { - "choice_index": 249, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4b", - "value": "{d732dd77-0b9e-45a4-b9ac-94487278419d}" - }, - { - "choice_index": 250, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4c", - "value": "{e2e549cb-fe98-4ce4-a52b-644f2c5a48bf}" - }, - { - "choice_index": 251, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 5a", - "value": "{a9fcbbc5-2705-4093-9863-d0d9d699831c}" - }, - { - "choice_index": 252, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 5b", - "value": "{aaddbe00-3c02-4b8c-ac10-adf0179fe422}" - }, - { - "choice_index": 253, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 6", - "value": "{112679d0-e9fb-4e4f-b6d8-b0a86c219191}" - }, - { - "choice_index": 254, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 7", - "value": "{ee3d224e-2c00-4f77-b096-0183ec1f60c2}" - }, - { - "choice_index": 255, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 8", - "value": "{d9ab5698-4d97-463a-bcad-0000700b812a}" - }, - { - "choice_index": 256, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 1-2", - "value": "{a00b1f61-42c4-4f33-96ae-c7a5f21e32d6}" - }, - { - "choice_index": 257, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3a", - "value": "{3a3f1c02-95b0-49c9-b9a1-e38eeb4151dc}" - }, - { - "choice_index": 258, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3b", - "value": "{4258cb62-b70f-451b-9d5d-c5894feb0e6d}" - }, - { - "choice_index": 259, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3c", - "value": "{9924e9d6-8e2e-4823-9a12-1a29007ddfd7}" - }, - { - "choice_index": 260, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4a", - "value": "{031e217b-706a-4775-b021-aa731bf251e7}" - }, - { - "choice_index": 261, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4b", - "value": "{8ff192e6-e5f3-4416-9aae-090511a04bdd}" - }, - { - "choice_index": 262, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4c", - "value": "{04d02889-c852-401c-ad55-bf61702b90df}" - }, - { - "choice_index": 263, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 5a", - "value": "{cdb6130c-283d-4621-92fe-b58204908e56}" - }, - { - "choice_index": 264, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 5b", - "value": "{b41d64a3-6a55-4dbd-adfb-8970462589f8}" - }, - { - "choice_index": 265, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 6", - "value": "{1b537b5f-00e2-4175-a586-19da3ec15ff1}" - }, - { - "choice_index": 266, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 7", - "value": "{974d2587-f08d-4ab3-a29f-742bd9ac9b1c}" - }, - { - "choice_index": 267, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 8", - "value": "{4880caca-2177-4a4e-9e95-32258fb9b7de}" - }, - { - "choice_index": 268, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 1-3b", - "value": "{6325222d-79d8-4734-82c0-598663f7f2c6}" - }, - { - "choice_index": 269, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 3c", - "value": "{f2bec73e-53a4-409b-aef1-e9e453b1036a}" - }, - { - "choice_index": 270, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4a", - "value": "{73d7211a-cf12-41cb-bf92-8f0a0739ac94}" - }, - { - "choice_index": 271, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4b", - "value": "{e53b2675-50ad-441a-8b79-6902d7ba81fb}" - }, - { - "choice_index": 272, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4c", - "value": "{39644664-a9a1-417a-b9db-7b2c2b5f2148}" - }, - { - "choice_index": 273, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 5a", - "value": "{1dd9ad93-06e4-4ed2-9d44-f0681f05c85e}" - }, - { - "choice_index": 274, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 5b", - "value": "{846f380c-b562-459d-a818-bf79ff3c9383}" - }, - { - "choice_index": 275, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 6", - "value": "{94142431-4727-4ea4-88d6-f506930e4db4}" - }, - { - "choice_index": 276, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 7", - "value": "{397278fe-cd4f-4ea2-afe1-58b6156944e6}" - }, - { - "choice_index": 277, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 8", - "value": "{95c2c635-30ae-4fa7-b404-31a8b478c154}" - }, - { - "choice_index": 278, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone 1-4", - "value": "{494e1a96-f997-454a-96d3-a822b2e68b10}" - }, - { - "choice_index": 279, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone 5-8", - "value": "{16368ebb-16f4-4021-942f-280dc2b41494}" - }, - { - "choice_index": 280, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone alt-lrgoff hosp 1-8", - "value": "{90a464bf-6b24-455a-be33-4b4170e892f3}" - } - ], - "display_name": "Select New Construction.", - "domain_type": "Enumeration", - "name": "construction", - "required": true, - "type": "Choice", - "uuid": "7686d0d8-5ba2-4a6d-a071-a09c44d9f1c8", - "value": "{bebe4adc-f849-444f-9b2f-fed9b735e166}", - "version_uuid": "63e0ab4d-4436-4e72-93d9-6c40363a52f3" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/SetInteriorWallsAndFloorsToAdiabatic", - "bcl_measure_uuid": "7e440f88-1b2d-444e-8586-9a8d1ac84b8d", - "bcl_measure_version_uuid": "2c493741-04fa-4333-b265-bef6ef769b8c", - "description": "Set exterior walls to Adiabatic and assign a hard construction.", - "display_name": "Set Interior Walls to Adiabatic Alternative", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Set Interior Walls to Adiabatic Alternative", - "output_file_type": "OSM", - "uuid": "f1b06ea5-6779-412f-b00c-ac22f86d6146", - "version_uuid": "24d5e7d5-c613-4b90-aca2-79856b771936" - } - ], - "name": "Set Interior Walls to Adiabatic Group", - "uuid": "5093638d-6b6b-4727-8f9e-24c7edd25de5", - "version_uuid": "19533f6b-a094-49c5-a567-91645562bb23", - "workflow_index": 3, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Set R-value of Insulation for Exterior Walls to a Specific Value Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "46f22a82-e6c9-4e5c-8ebb-33d6d9630d59", - "version_uuid": "8cd943db-dad9-4a5b-86a0-71d78c0271d2" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 13.0, - "display_name": "Insulation R-value (ft^2*h*R/Btu).", - "domain_type": "Interval", - "name": "r_value", - "required": true, - "type": "Double", - "uuid": "bc9ae383-3068-4761-b105-8074cad436f4", - "value": 15.0, - "version_uuid": "40fb8cc4-d6c0-4ca3-939f-9e88b9a11208" - }, - { - "argument_index": 1, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_increase_ip", - "required": true, - "type": "Double", - "uuid": "f9eb043a-6215-477b-a766-9772026e37c6", - "value": 1.0, - "version_uuid": "886bd4d7-6972-4cac-b9a3-b2630316e4d3" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).", - "domain_type": "Interval", - "name": "one_time_retrofit_cost_ip", - "required": true, - "type": "Double", - "uuid": "c37f8315-0da7-4eef-85a3-e2db35a19ec1", - "version_uuid": "03878d67-7eb5-4b46-9243-904084c854c8" - }, - { - "argument_index": 3, - "default_value": 0, - "display_name": "Year to Incur One Time Retrofit Cost (whole years).", - "domain_type": "Interval", - "name": "years_until_retrofit_cost", - "required": true, - "type": "Integer", - "uuid": "59bc9f24-d301-4a03-9bba-dc8863be8dc3", - "version_uuid": "3a893189-ec22-4c09-a221-d807e0df3ddd" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/IncreaseInsulationRValueForExteriorWalls", - "bcl_measure_uuid": "34877255-5bb5-45db-ad45-abd9ca80960c", - "bcl_measure_version_uuid": "16aae883-e2bc-4121-a995-4bfc4c437561", - "description": "Set the R-Value of exterior wall insulation to a specified value. Higher R-Values provide better insulation, lowering heat loss and heat gain through the exterior walls. If a wall?s insulation matches or exceeds the requested value then it will not be altered. Costs for a construction can be adjusted", - "display_name": "Set R-value of Insulation for Exterior Walls to a Specific Value R-15", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Set R-value of Insulation for Exterior Walls to a Specific Value R-15", - "output_file_type": "OSM", - "uuid": "cecb8717-ad65-4644-a04f-56afeb5a09f3", - "version_uuid": "8e9056d5-2435-45c4-a9f9-d57b9456c6ec" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 13.0, - "display_name": "Insulation R-value (ft^2*h*R/Btu).", - "domain_type": "Interval", - "name": "r_value", - "required": true, - "type": "Double", - "uuid": "b3b94f6a-4901-4c23-bbce-736003e5946e", - "value": 17.5, - "version_uuid": "7b72bb77-b2bb-4616-baac-9c47c07734a2" - }, - { - "argument_index": 1, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_increase_ip", - "required": true, - "type": "Double", - "uuid": "4da82528-475b-4fec-a3a2-0d820e1ff24b", - "value": 2.0, - "version_uuid": "4108abb2-cf9e-4bc6-8df2-3a6590986374" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).", - "domain_type": "Interval", - "name": "one_time_retrofit_cost_ip", - "required": true, - "type": "Double", - "uuid": "c9f3bc84-e9af-47e7-9ca8-db6aea4d2c3f", - "version_uuid": "63d2e910-b168-4bdf-98eb-6abfe9d424d2" - }, - { - "argument_index": 3, - "default_value": 0, - "display_name": "Year to Incur One Time Retrofit Cost (whole years).", - "domain_type": "Interval", - "name": "years_until_retrofit_cost", - "required": true, - "type": "Integer", - "uuid": "70f3b40b-bc82-4267-ab7a-0e60cadcce17", - "version_uuid": "a1a37e61-cbb1-4fbd-aa77-a33c9f505f11" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/IncreaseInsulationRValueForExteriorWalls", - "bcl_measure_uuid": "34877255-5bb5-45db-ad45-abd9ca80960c", - "bcl_measure_version_uuid": "16aae883-e2bc-4121-a995-4bfc4c437561", - "description": "Set the R-Value of exterior wall insulation to a specified value. Higher R-Values provide better insulation, lowering heat loss and heat gain through the exterior walls. If a wall?s insulation matches or exceeds the requested value then it will not be altered. Costs for a construction can be adjusted", - "display_name": "Set R-value of Insulation for Exterior Walls to a Specific Value R-17.5", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Set R-value of Insulation for Exterior Walls to a Specific Value R-17.5", - "output_file_type": "OSM", - "uuid": "149f3f91-155b-400d-b803-b0c100e726da", - "version_uuid": "5af31d5b-538c-4ce9-b588-1ccedcb32748" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 13.0, - "display_name": "Insulation R-value (ft^2*h*R/Btu).", - "domain_type": "Interval", - "name": "r_value", - "required": true, - "type": "Double", - "uuid": "149367ff-8411-43ed-ae77-6a35295f6a1c", - "value": 20.0, - "version_uuid": "6acc0e43-c6ee-40f6-95ef-7aef740007ee" - }, - { - "argument_index": 1, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_increase_ip", - "required": true, - "type": "Double", - "uuid": "1eaced2c-734c-4748-b672-5affa0c89651", - "value": 3.0, - "version_uuid": "a7d9a9d0-596e-4bd2-aa76-7f3f5dcd4337" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).", - "domain_type": "Interval", - "name": "one_time_retrofit_cost_ip", - "required": true, - "type": "Double", - "uuid": "8b2d2d93-992d-47c2-abb6-31746d7e1f53", - "version_uuid": "c68b7572-fb05-4a37-84b0-066b60d56dae" - }, - { - "argument_index": 3, - "default_value": 0, - "display_name": "Year to Incur One Time Retrofit Cost (whole years).", - "domain_type": "Interval", - "name": "years_until_retrofit_cost", - "required": true, - "type": "Integer", - "uuid": "b09c389a-084e-4e49-bd97-988afba313cb", - "version_uuid": "b824e924-fc3d-474e-b6bf-0e04a486a9ff" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/IncreaseInsulationRValueForExteriorWalls", - "bcl_measure_uuid": "34877255-5bb5-45db-ad45-abd9ca80960c", - "bcl_measure_version_uuid": "16aae883-e2bc-4121-a995-4bfc4c437561", - "description": "Set the R-Value of exterior wall insulation to a specified value. Higher R-Values provide better insulation, lowering heat loss and heat gain through the exterior walls. If a wall?s insulation matches or exceeds the requested value then it will not be altered. Costs for a construction can be adjusted", - "display_name": "Set R-value of Insulation for Exterior Walls to a Specific Value R-20", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Set R-value of Insulation for Exterior Walls to a Specific Value R-20", - "output_file_type": "OSM", - "uuid": "59dc15a6-1fb1-48ae-be78-516d8930356b", - "version_uuid": "89c5c909-0c46-45c2-a5f8-028bc4c26d91" - } - ], - "name": "Set R-value of Insulation for Exterior Walls to a Specific Value Group", - "uuid": "cc60b9cb-e4b2-4494-86c1-a6afe0a60b89", - "version_uuid": "b8e71830-700b-4802-9a89-18eda523d4c2", - "workflow_index": 4, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Set R-value of Insulation for Roofs to a Specific Value Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "ec4faa1e-857c-4528-ae17-01b653d5f092", - "version_uuid": "df89f6b5-dd27-4d0a-a7ae-62069a84c345" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 30.0, - "display_name": "Insulation R-value (ft^2*h*R/Btu).", - "domain_type": "Interval", - "name": "r_value", - "required": true, - "type": "Double", - "uuid": "5b8ce8a1-d8cc-4d87-aee8-047b63b1fc0e", - "version_uuid": "d2c87655-3daf-4401-9c13-b747ca97fae6" - }, - { - "argument_index": 1, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_increase_ip", - "required": true, - "type": "Double", - "uuid": "c89e6f7a-995e-498d-bec5-8409d4dd1122", - "value": 2.0, - "version_uuid": "8123d970-7816-4d25-9afe-55076a300c7a" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).", - "domain_type": "Interval", - "name": "one_time_retrofit_cost_ip", - "required": true, - "type": "Double", - "uuid": "f57f8ec2-fe36-41d1-b833-6be34c6e6afa", - "version_uuid": "d26edc7c-62f0-4337-b636-74428dc64283" - }, - { - "argument_index": 3, - "default_value": 0, - "display_name": "Year to Incur One Time Retrofit Cost (whole years).", - "domain_type": "Interval", - "name": "years_until_retrofit_cost", - "required": true, - "type": "Integer", - "uuid": "009b3fa8-b1f7-4f98-88f7-56cd133e2dce", - "version_uuid": "36e8f8f6-b387-4abf-b061-30829339e6bf" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/IncreaseInsulationRValueForRoofs", - "bcl_measure_uuid": "c6b78646-be8e-425b-af79-fdbbcd0d58d5", - "bcl_measure_version_uuid": "019cc5e3-aec7-417e-8b89-b47c0644c880", - "description": "Set the R-Value of roof insulation to a specified value. Higher R-Values provide better insulation, lowering heat loss and heat gain through the roof.", - "display_name": "Set R-value of Insulation for Roofs to a Specific Value R30", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Set R-value of Insulation for Roofs to a Specific Value R30", - "output_file_type": "OSM", - "uuid": "65463eba-6517-4842-9744-ee4a770044ba", - "version_uuid": "14e264e0-4921-481c-8b7c-7e5dff50d7db" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 30.0, - "display_name": "Insulation R-value (ft^2*h*R/Btu).", - "domain_type": "Interval", - "name": "r_value", - "required": true, - "type": "Double", - "uuid": "f2ddcd60-0942-4e20-856b-a0412e1205fa", - "value": 40.0, - "version_uuid": "3763d2c8-656e-4605-9df5-9b0f7c32c491" - }, - { - "argument_index": 1, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_increase_ip", - "required": true, - "type": "Double", - "uuid": "c79f208b-885a-4449-9887-80c0d395a83e", - "value": 5.0, - "version_uuid": "7463293b-ef62-41b9-8c70-4e1eb9034256" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).", - "domain_type": "Interval", - "name": "one_time_retrofit_cost_ip", - "required": true, - "type": "Double", - "uuid": "575fa819-cca2-46ab-ac85-ab5f6c6926b7", - "version_uuid": "64826587-29ea-4cf4-ac1d-bbd860b4eaed" - }, - { - "argument_index": 3, - "default_value": 0, - "display_name": "Year to Incur One Time Retrofit Cost (whole years).", - "domain_type": "Interval", - "name": "years_until_retrofit_cost", - "required": true, - "type": "Integer", - "uuid": "61681631-69d5-47bd-9b98-87486ef62f39", - "version_uuid": "ef2d201b-3d76-48bb-9567-dce108c97a6c" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/IncreaseInsulationRValueForRoofs", - "bcl_measure_uuid": "c6b78646-be8e-425b-af79-fdbbcd0d58d5", - "bcl_measure_version_uuid": "019cc5e3-aec7-417e-8b89-b47c0644c880", - "description": "Set the R-Value of roof insulation to a specified value. Higher R-Values provide better insulation, lowering heat loss and heat gain through the roof.", - "display_name": "Set R-value of Insulation for Roofs to a Specific Value R40", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Set R-value of Insulation for Roofs to a Specific Value R40", - "output_file_type": "OSM", - "uuid": "2e90a004-5b28-4aca-a80f-297ba822f5eb", - "version_uuid": "856850e4-36fa-4fb5-aba2-bdd4efe0898d" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 30.0, - "display_name": "Insulation R-value (ft^2*h*R/Btu).", - "domain_type": "Interval", - "name": "r_value", - "required": true, - "type": "Double", - "uuid": "a30a86d4-a332-446c-bc15-6aaf3e89c6bc", - "value": 50.0, - "version_uuid": "33ce8517-038e-42b0-96f8-64da5bbee58b" - }, - { - "argument_index": 1, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_increase_ip", - "required": true, - "type": "Double", - "uuid": "4e1f8e23-932a-48b8-998e-01d6bda6c367", - "value": 7.0, - "version_uuid": "b29845ab-02c5-4acf-a762-58575fbe9c29" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "One Time Retrofit Cost to Add Insulation to Construction ($/ft^2).", - "domain_type": "Interval", - "name": "one_time_retrofit_cost_ip", - "required": true, - "type": "Double", - "uuid": "217b4285-9c37-4867-a00f-c3f0bf9f067a", - "version_uuid": "2216effe-7f47-406f-b97f-8fe850a2a348" - }, - { - "argument_index": 3, - "default_value": 0, - "display_name": "Year to Incur One Time Retrofit Cost (whole years).", - "domain_type": "Interval", - "name": "years_until_retrofit_cost", - "required": true, - "type": "Integer", - "uuid": "8f69fa1c-7a9a-4243-a21f-b801af7b6ea9", - "version_uuid": "7f1acd8c-0118-48db-a3c3-f3a014ccedb2" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/IncreaseInsulationRValueForRoofs", - "bcl_measure_uuid": "c6b78646-be8e-425b-af79-fdbbcd0d58d5", - "bcl_measure_version_uuid": "019cc5e3-aec7-417e-8b89-b47c0644c880", - "description": "Set the R-Value of roof insulation to a specified value. Higher R-Values provide better insulation, lowering heat loss and heat gain through the roof.", - "display_name": "Set R-value of Insulation for Roofs to a Specific Value R-50", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Set R-value of Insulation for Roofs to a Specific Value R-50", - "output_file_type": "OSM", - "uuid": "86709af6-93d0-4c75-a7db-488df0075cf6", - "version_uuid": "ddfe271e-8ddb-4b54-9b01-7763d05e4e3b" - } - ], - "name": "Set R-value of Insulation for Roofs to a Specific Value Group", - "uuid": "5fefacc8-9af7-4d8d-947f-e8ec678480f8", - "version_uuid": "7ee0bdb9-80c2-400c-a407-c58c7ecd5d59", - "workflow_index": 5, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Add Cost per Area to Construction Group", - "measures": [ - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "000 ExtSlabCarpet 4in ClimateZone 1-8", - "value": "{b88691a7-e9b0-4ff0-87e4-858b5b50b56c}" - }, - { - "choice_index": 1, - "display_name": "000 Interior Ceiling", - "value": "{224cc0f9-077e-428d-bc7c-ac2fb3dd8241}" - }, - { - "choice_index": 2, - "display_name": "000 Interior Floor", - "value": "{128499cd-b542-41a5-9306-748b7a658703}" - }, - { - "choice_index": 3, - "display_name": "000 Interior Wall", - "value": "{bebe4adc-f849-444f-9b2f-fed9b735e166}" - }, - { - "choice_index": 4, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 5b", - "value": "{3cdb8067-edd7-4ce2-b585-002e162c6550}" - }, - { - "choice_index": 5, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 5b", - "value": "{ad51ccbb-ca21-4460-8bd1-87ccc5458ee4}" - }, - { - "choice_index": 6, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone alt-lrgoff hosp 1-8", - "value": "{df9e360a-1f9d-4a5e-ad1b-ce3ecd5deef4}" - } - ], - "display_name": "Choose a Construction to Add Costs to.", - "domain_type": "Enumeration", - "name": "construction", - "required": true, - "type": "Choice", - "uuid": "f62cf5f2-1d7b-43e6-bb57-bad10c1ce787", - "value": "{df9e360a-1f9d-4a5e-ad1b-ce3ecd5deef4}", - "version_uuid": "5d164ae4-d092-4032-9811-c96f7a3ed7aa" - }, - { - "argument_index": 1, - "default_value": "true", - "display_name": "Remove Existing Costs?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "3fe033e5-571f-4222-afea-0d1e282f6ea3", - "version_uuid": "651f8223-7fab-4958-befd-d6ce9ba84140" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Material and Installation Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_ip", - "required": true, - "type": "Double", - "uuid": "576e2719-3d28-4819-9220-34d71806bb93", - "value": 20.0, - "version_uuid": "f162010d-26c8-47d3-8509-b888dd5003e9" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Demolition Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "demolition_cost_ip", - "required": true, - "type": "Double", - "uuid": "d1a0bba3-af89-47ae-9305-ec68b30664b8", - "version_uuid": "86711cf2-9094-4f67-9da4-873fa4691af8" - }, - { - "argument_index": 4, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "0e38a753-93e4-4122-acc4-849db247d6ff", - "version_uuid": "f7b22017-8d3c-4117-81fe-96c84b75f967" - }, - { - "argument_index": 5, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "ac46d82d-34af-4d07-912c-30f42b4bf9d2", - "version_uuid": "05d51f91-b207-4073-8377-0373fbcdf07a" - }, - { - "argument_index": 6, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "d02da88e-bbf9-4d4f-97b1-4f6919a55254", - "version_uuid": "c971128d-4464-439f-a047-94b978e6abfb" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "O & M Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost_ip", - "required": true, - "type": "Double", - "uuid": "9e0db67b-1e01-4756-bf57-039cdf8878c7", - "version_uuid": "0d28f04b-c2aa-4391-befd-5566f03a6890" - }, - { - "argument_index": 8, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "b9c58664-54ac-4734-9534-180a46f1ee69", - "version_uuid": "46cfa3e3-83fa-44c5-8c22-28414f26e0b3" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddCostPerAreaToConstruction", - "bcl_measure_uuid": "bf6ac5d5-6348-4012-b7b4-1200a672e377", - "bcl_measure_version_uuid": "7ecbd095-b669-478a-b2cd-d748a495582c", - "description": "This measure will create life cycle cost objects associated with a the building. You can set a material & installation cost, demolition cost, and O&M costs. Optionally existing cost objects already associated with building can be deleted. This measure will not affect energy use of the building.", - "display_name": "Add Cost per Area to Construction", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 0, - "measure_type": "RubyMeasure", - "name": "Add Cost per Area to Construction", - "output_file_type": "OSM", - "uuid": "14916f72-6732-4e4f-b80b-af6f397c729e", - "version_uuid": "690c1d1e-6778-40b9-8c0a-23cb18b182de" - } - ], - "name": "Add Cost per Area to Construction Group", - "uuid": "b048de81-9bc7-4118-854b-c5e03cd87565", - "version_uuid": "b2766232-37fd-4296-ab77-002118f99b94", - "workflow_index": 6, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Add Cost per Area to Unused Construction Group", - "measures": [ - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "000 AtticRoof ClimateZone 1-8", - "value": "{cf81dd0b-fee6-4952-8177-441f534451c5}" - }, - { - "choice_index": 1, - "display_name": "000 ExtSlab 4in ClimateZone 1-8", - "value": "{214c9f82-e34e-4143-bacd-dd958ef63823}" - }, - { - "choice_index": 2, - "display_name": "000 ExtSlab 8in ClimateZone 1-8", - "value": "{57781d80-14d1-470a-82ca-90a031bce305}" - }, - { - "choice_index": 3, - "display_name": "000 ExtSlabCarpet 8in ClimateZone 1-8", - "value": "{a8bade1f-a519-47be-813c-f8b2d74acf22}" - }, - { - "choice_index": 4, - "display_name": "000 Exterior Door", - "value": "{fb30531d-9266-4c91-885f-0ec2fb5482e6}" - }, - { - "choice_index": 5, - "display_name": "000 Exterior Floor", - "value": "{0709dfa1-4397-40ff-af32-b9dd823630b7}" - }, - { - "choice_index": 6, - "display_name": "000 Exterior Roof", - "value": "{9d0a3f5f-8569-4993-a529-4019d04d875f}" - }, - { - "choice_index": 7, - "display_name": "000 Exterior Wall", - "value": "{0963de92-4b23-49d3-a415-68cb0a85069a}" - }, - { - "choice_index": 8, - "display_name": "000 Exterior Window", - "value": "{a618bef4-afe5-4dde-bcf5-8057338cba27}" - }, - { - "choice_index": 9, - "display_name": "000 Interior Door", - "value": "{8a7ba072-82ca-4f77-af03-922fb4e52b19}" - }, - { - "choice_index": 10, - "display_name": "000 Interior Partition", - "value": "{7637dc40-61ee-48cd-b120-3672a87ad41e}" - }, - { - "choice_index": 11, - "display_name": "000 Interior Window", - "value": "{84ce7365-ed93-4f6e-bb34-aea6faca9c6e}" - }, - { - "choice_index": 12, - "display_name": "ASHRAE 189.1-2009 AtticFloor ClimateZone 1-8", - "value": "{9c7fa3f3-0827-4f81-a2c1-adf85b6f7816}" - }, - { - "choice_index": 13, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 1", - "value": "{6dc53208-9c99-464e-bf88-a1383ffdef91}" - }, - { - "choice_index": 14, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 2-5", - "value": "{5cb0b684-57aa-4edc-abf4-f11bf072de56}" - }, - { - "choice_index": 15, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 6", - "value": "{a9a155dc-5d71-44eb-af43-f433f38004ee}" - }, - { - "choice_index": 16, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 7-8", - "value": "{e8d6a9b2-bcba-49bd-a499-dea295fd2abf}" - }, - { - "choice_index": 17, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 1", - "value": "{4c4ebd4c-3777-4760-a008-a9bbc8b6dcd2}" - }, - { - "choice_index": 18, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 2-5", - "value": "{e7f18c66-d8e7-4381-ba79-7532aeae2bab}" - }, - { - "choice_index": 19, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 6", - "value": "{75e10288-a996-4d56-901a-43b000538ac5}" - }, - { - "choice_index": 20, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 7-8", - "value": "{f8bb3ee5-2e3e-4a03-b2c4-b66e613f118e}" - }, - { - "choice_index": 21, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 1", - "value": "{8bd7b35f-5189-44c4-a6af-04ab5ad43768}" - }, - { - "choice_index": 22, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 2", - "value": "{4f514d75-d8fc-4639-a52f-1305c2dc5562}" - }, - { - "choice_index": 23, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 3", - "value": "{c9d0905b-1ab4-4f91-9133-f936899e28e7}" - }, - { - "choice_index": 24, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 4", - "value": "{e7facf61-7232-450f-b723-46441eb9963a}" - }, - { - "choice_index": 25, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 5", - "value": "{897c0610-358a-4a46-ab03-75e0f772739d}" - }, - { - "choice_index": 26, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 6", - "value": "{ef598e5b-f520-4f97-8815-2430b14e227e}" - }, - { - "choice_index": 27, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 7-8", - "value": "{b8f00d24-7eb9-4651-b152-c3455a2fb940}" - }, - { - "choice_index": 28, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 1", - "value": "{8f731aa0-e04f-43a6-a6b5-032fe6ab3ce9}" - }, - { - "choice_index": 29, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 2", - "value": "{457eaf48-60ff-4336-a4a8-e7c9fc015126}" - }, - { - "choice_index": 30, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 3", - "value": "{d567d3f3-aa8b-4bc7-9ec9-ce45bf024c6b}" - }, - { - "choice_index": 31, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 4", - "value": "{18ed919b-8b6d-42ae-9090-768f6f72461d}" - }, - { - "choice_index": 32, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 5", - "value": "{87ba0f94-f9de-4ddc-b838-651981028955}" - }, - { - "choice_index": 33, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 6", - "value": "{5b611904-f48b-4afd-b228-d51b5220b3ce}" - }, - { - "choice_index": 34, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 7", - "value": "{5b1576da-4167-41d8-bfd4-4ed1bb517164}" - }, - { - "choice_index": 35, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 8", - "value": "{3eb0a79d-db20-46fa-869b-b2b192799378}" - }, - { - "choice_index": 36, - "display_name": "ASHRAE 189.1-2009 ExtWall Metal ClimateZone 1-3", - "value": "{20339495-9c02-4aed-98b8-38e46dd40704}" - }, - { - "choice_index": 37, - "display_name": "ASHRAE 189.1-2009 ExtWall Metal ClimateZone 4-8", - "value": "{45deceb6-8440-4c0a-b270-4399110a749c}" - }, - { - "choice_index": 38, - "display_name": "ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 1-3", - "value": "{1e9b4d22-f8b7-4c67-b97c-fc2b4da763aa}" - }, - { - "choice_index": 39, - "display_name": "ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 4-8", - "value": "{d650a640-1cc5-4828-a810-50f737f1f667}" - }, - { - "choice_index": 40, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 1-4", - "value": "{4110bc94-a9f5-4d0a-9d8a-869ceb63b4e1}" - }, - { - "choice_index": 41, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 5", - "value": "{8f670027-3ed4-4b2a-95d8-974d5ca3ae3f}" - }, - { - "choice_index": 42, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 6-8", - "value": "{303d0a81-6b01-43fd-b01d-f1c78f98ba9d}" - }, - { - "choice_index": 43, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 1", - "value": "{8cebe71e-55d2-4231-8224-0f7fbb4c7501}" - }, - { - "choice_index": 44, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 2", - "value": "{3103b2a2-5aa6-4fe5-aaa6-3510a2354292}" - }, - { - "choice_index": 45, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 3", - "value": "{0102c141-2a45-4a6f-8ab7-0aadb64e7475}" - }, - { - "choice_index": 46, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 4-5", - "value": "{476bda26-7e4a-4312-8e54-ac3e4cfadab0}" - }, - { - "choice_index": 47, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 6", - "value": "{2512851a-42b0-4909-9158-cc20b02c49b7}" - }, - { - "choice_index": 48, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 7-8", - "value": "{171622be-5e2c-475c-a2d0-934941a4722f}" - }, - { - "choice_index": 49, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone alt-res 4-5", - "value": "{6c574b52-b8e1-4d5a-bb06-1a4e6ef44eac}" - }, - { - "choice_index": 50, - "display_name": "ASHRAE 90.1-2004 AtticFloor ClimateZone 1-5", - "value": "{cd678e6b-694b-4e0c-b553-6a4b6c6078b7}" - }, - { - "choice_index": 51, - "display_name": "ASHRAE 90.1-2004 AtticFloor ClimateZone 6-8", - "value": "{989760b3-91a7-4184-84c6-e3dc761ca005}" - }, - { - "choice_index": 52, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 1-4", - "value": "{0fa50520-3c17-41b6-b726-52a1146c3c99}" - }, - { - "choice_index": 53, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 5-6", - "value": "{3c24cdd6-28fd-436e-b764-c500e6fc8ce3}" - }, - { - "choice_index": 54, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 7", - "value": "{759086c3-59fa-4ca1-b2ff-3509fd89d1bb}" - }, - { - "choice_index": 55, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 8", - "value": "{e5760002-826e-4c81-b6fd-4a88104e8f61}" - }, - { - "choice_index": 56, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 1", - "value": "{165ebc4a-0c25-4b6e-91cc-51bb5cf737a5}" - }, - { - "choice_index": 57, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 2", - "value": "{114ca435-35f8-4ded-9af9-032a74dc39a6}" - }, - { - "choice_index": 58, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 3-4", - "value": "{19258a75-ff0e-4498-97ec-4c3bd54b1461}" - }, - { - "choice_index": 59, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 5-6", - "value": "{ab4424a7-79cc-45a3-add5-e747b45bf5d5}" - }, - { - "choice_index": 60, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 7", - "value": "{5285e3f9-d922-43e1-8acc-c2c533d4af0f}" - }, - { - "choice_index": 61, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 8", - "value": "{8bb0ff28-1fd4-4a74-91e6-deafc6615039}" - }, - { - "choice_index": 62, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 1-2", - "value": "{693432ff-0f46-45e3-8055-1be58ddc7b77}" - }, - { - "choice_index": 63, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 3-4", - "value": "{c14c4fbc-5bda-483f-b283-fce1eca3a0f0}" - }, - { - "choice_index": 64, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 5", - "value": "{743db2d4-f8c6-42d7-86ab-ed334ce6d11d}" - }, - { - "choice_index": 65, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 6", - "value": "{9aa95e7e-e938-4ee2-9627-037c1c05717c}" - }, - { - "choice_index": 66, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 7", - "value": "{fae8bf90-b4c0-4f73-8467-dc3f72661bf1}" - }, - { - "choice_index": 67, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 8", - "value": "{8f901525-a835-48cb-b3ac-30394a2190eb}" - }, - { - "choice_index": 68, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 1-2", - "value": "{25e2b5b1-dde3-4875-bf4d-d85069dbc826}" - }, - { - "choice_index": 69, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 3", - "value": "{8564f337-21ff-414c-911c-c6d7b4aed473}" - }, - { - "choice_index": 70, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 4", - "value": "{7975e2a4-ce13-4d7f-bdab-9f43a937c765}" - }, - { - "choice_index": 71, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 5-6", - "value": "{1e61fbb2-1d87-4d2a-a40b-b53b7bae77df}" - }, - { - "choice_index": 72, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 7", - "value": "{ae403f70-80c6-424a-bf28-6d1519620264}" - }, - { - "choice_index": 73, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 8", - "value": "{f00f5516-036d-4fed-a958-44d9152cfff8}" - }, - { - "choice_index": 74, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 1", - "value": "{7e8c8909-869e-4787-a454-b022a4615835}" - }, - { - "choice_index": 75, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 2-3", - "value": "{5703b32d-d629-49f3-a312-a6f01194941c}" - }, - { - "choice_index": 76, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 4", - "value": "{9889a8bc-b9f4-446b-9f30-c6c051494f35}" - }, - { - "choice_index": 77, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 5", - "value": "{74589afa-ab24-45eb-aa34-bfe8702995c5}" - }, - { - "choice_index": 78, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 6-8", - "value": "{e1e27d31-4a45-455b-a57b-7dca408ab9ca}" - }, - { - "choice_index": 79, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 1-4", - "value": "{f393b6ee-4ba2-4ede-a275-8533ddc3800e}" - }, - { - "choice_index": 80, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 5-6", - "value": "{9daf37fd-5766-465c-b3a2-80b125b4d3a2}" - }, - { - "choice_index": 81, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 7-8", - "value": "{07ee1c98-49c3-4473-ba13-9c9c30df39fa}" - }, - { - "choice_index": 82, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 3", - "value": "{47fe76c4-d26e-4660-93e2-b03f56c9a678}" - }, - { - "choice_index": 83, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 4-6", - "value": "{aa53823c-b6d9-4808-8453-85e1fc1640d7}" - }, - { - "choice_index": 84, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 8", - "value": "{1d418520-72cc-4b45-a62c-52c570c31a86}" - }, - { - "choice_index": 85, - "display_name": "ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 1-7", - "value": "{ddf48347-e5f1-4b39-a4b5-1529a914b797}" - }, - { - "choice_index": 86, - "display_name": "ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 8", - "value": "{b095b2e2-94eb-40d0-8569-a77051670924}" - }, - { - "choice_index": 87, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 1-2", - "value": "{a6256a2d-73b3-4f4c-a692-eca1300dec04}" - }, - { - "choice_index": 88, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 3a-3b", - "value": "{89421b16-f941-4603-97c7-6482f3de5fea}" - }, - { - "choice_index": 89, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 3c", - "value": "{dca7baae-1750-4ccf-9342-82abc19bfb58}" - }, - { - "choice_index": 90, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 4-6", - "value": "{19c0c7b0-cc51-4778-9f5b-b0b87dcf7be2}" - }, - { - "choice_index": 91, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 7", - "value": "{219c6bd5-b48b-43ed-9a11-8bf83fb461ac}" - }, - { - "choice_index": 92, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 8", - "value": "{e7ea7385-bf19-4249-aa48-2df099e1c504}" - }, - { - "choice_index": 93, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 3c", - "value": "{81541225-745b-4509-947e-84e9b0bdf9b8}" - }, - { - "choice_index": 94, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 4-6", - "value": "{8880ad7c-de07-4987-99eb-18ce2d0bdc41}" - }, - { - "choice_index": 95, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 7", - "value": "{45972d1a-6ff6-4734-82ec-4ba4e2ce50db}" - }, - { - "choice_index": 96, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 8", - "value": "{9ea847f5-94ba-4907-9cbb-955226ee73e4}" - }, - { - "choice_index": 97, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resA 3a-3b", - "value": "{4bf3b597-ab60-47be-87c7-3e54b05cc44c}" - }, - { - "choice_index": 98, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resH 3a-3b", - "value": "{2c59da49-c229-4f1c-b19f-1a857b0ce5a7}" - }, - { - "choice_index": 99, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-ware 1-8", - "value": "{27836075-697d-499f-96e7-6cc381f26699}" - }, - { - "choice_index": 100, - "display_name": "Air Wall", - "value": "{41e90204-8ddc-4958-aafa-afebcfff7a36}" - }, - { - "choice_index": 101, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 1", - "value": "{6746aa80-5225-40da-9a77-13e2b4194be6}" - }, - { - "choice_index": 102, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2a", - "value": "{67de0ced-c984-47a9-92fc-24fb61fcbdfa}" - }, - { - "choice_index": 103, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2b", - "value": "{8a5b107b-96a5-4c05-90bb-9b2bb5f0ef65}" - }, - { - "choice_index": 104, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3a", - "value": "{f4727994-ac73-4466-a009-21b9d3ab4139}" - }, - { - "choice_index": 105, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAS", - "value": "{ce7a1e48-e6d6-4dda-8680-bcd7423c2e5e}" - }, - { - "choice_index": 106, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAX", - "value": "{2b9ad167-3cb9-4945-a5c8-a9313fcaf170}" - }, - { - "choice_index": 107, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3c", - "value": "{ed09534d-8a29-43a5-8da2-54c048337381}" - }, - { - "choice_index": 108, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4a", - "value": "{ec817670-9cd5-4f35-8c9e-fcc6176a8585}" - }, - { - "choice_index": 109, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4b", - "value": "{aa514c9e-e060-4a65-919a-5d815038e0dd}" - }, - { - "choice_index": 110, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4c", - "value": "{0e4f384c-1100-47b3-8a53-5c798aad6154}" - }, - { - "choice_index": 111, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5a", - "value": "{9db9bca5-8737-4f22-95ad-12c8b3f552f8}" - }, - { - "choice_index": 112, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5b", - "value": "{6a59185f-3513-4391-88c6-dcc56ed8368c}" - }, - { - "choice_index": 113, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6a", - "value": "{2f20ebc3-b630-4900-9af1-6c7a0693fa10}" - }, - { - "choice_index": 114, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6b", - "value": "{b719f186-aab6-499e-a66a-809b2165c93c}" - }, - { - "choice_index": 115, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 7", - "value": "{d7e81209-6472-4f2f-8526-6d5be298721a}" - }, - { - "choice_index": 116, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 8", - "value": "{c804c4cd-309a-4f0a-84e4-c9668ca255ef}" - }, - { - "choice_index": 117, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 1", - "value": "{e44fdced-5361-4f65-bf18-3b2e0a61fdeb}" - }, - { - "choice_index": 118, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 2a", - "value": "{21d08ce3-2619-42b2-a66e-49d69db131df}" - }, - { - "choice_index": 119, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 2b", - "value": "{0c079479-b0e4-4406-bb4a-82037a757660}" - }, - { - "choice_index": 120, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3a", - "value": "{99d1add8-3054-4f81-ab6d-7f871cccd091}" - }, - { - "choice_index": 121, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAS", - "value": "{8624534a-307e-4c1b-b355-ce831e50a47c}" - }, - { - "choice_index": 122, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAX", - "value": "{6d442e01-ddc7-4965-8033-b7470a7f42fc}" - }, - { - "choice_index": 123, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3c", - "value": "{19b05f1b-19f4-404c-9015-0795af73dc4e}" - }, - { - "choice_index": 124, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4a", - "value": "{b1efc8ad-52f8-44fc-9ff2-32fe8091784b}" - }, - { - "choice_index": 125, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4b", - "value": "{88fbc67b-f8d9-416c-9a75-4f425f038914}" - }, - { - "choice_index": 126, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4c", - "value": "{d0057c0a-a9fb-41ac-a981-f54367b3b63c}" - }, - { - "choice_index": 127, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 5a", - "value": "{39008a65-a85d-4c44-ba66-1c02375ed93d}" - }, - { - "choice_index": 128, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 6a", - "value": "{a9817b30-15bf-4ddc-bc8e-b850a65a3070}" - }, - { - "choice_index": 129, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 6b", - "value": "{24d42982-8445-4d5f-b78f-92cc3c953005}" - }, - { - "choice_index": 130, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 7", - "value": "{6cd3fce7-f6a7-4521-9701-d37a843b2342}" - }, - { - "choice_index": 131, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 8", - "value": "{2cd34f80-65b3-449a-b146-eca1ec0ff57d}" - }, - { - "choice_index": 132, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 1", - "value": "{0eaaf3ab-7389-45f7-a23c-0834161d3fb0}" - }, - { - "choice_index": 133, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 2a", - "value": "{9050c860-ccfe-4073-92ce-06521d1598c9}" - }, - { - "choice_index": 134, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 2b", - "value": "{b7df3f6f-8db7-4901-ba73-5fb897468587}" - }, - { - "choice_index": 135, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3a", - "value": "{8277a688-2a06-46fb-a8c0-f571fa1c371c}" - }, - { - "choice_index": 136, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAS", - "value": "{4d3a990b-f472-4098-9db8-452f0d5591ec}" - }, - { - "choice_index": 137, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAX", - "value": "{8aa397c8-aaa2-4d79-9733-7cc01d8ce81f}" - }, - { - "choice_index": 138, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3c", - "value": "{63bc5e5a-1783-4997-92cc-11432dd9ea97}" - }, - { - "choice_index": 139, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4a", - "value": "{2bff44b5-75d1-4af4-ab00-c5c0711cb912}" - }, - { - "choice_index": 140, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4b", - "value": "{10e4275d-80d3-4757-bfa6-1bc8e0da0350}" - }, - { - "choice_index": 141, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4c", - "value": "{f393a212-8bfa-43f0-820e-163878adeced}" - }, - { - "choice_index": 142, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 5a", - "value": "{a3c2dfd9-ce3f-4384-9e51-a3d7a76a5d3f}" - }, - { - "choice_index": 143, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 5b", - "value": "{909f9c4c-3fec-4706-b955-579b781ae14e}" - }, - { - "choice_index": 144, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 6a", - "value": "{46c58699-3cfd-4472-b18c-e0127de8426c}" - }, - { - "choice_index": 145, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 6b", - "value": "{ccea3e85-7437-4102-9334-c1a71c399e4f}" - }, - { - "choice_index": 146, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 7", - "value": "{c1a95633-7a44-4b7c-9edb-9dddc0fb8425}" - }, - { - "choice_index": 147, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 8", - "value": "{8349efd9-b5d5-43b5-a247-8c53be3151c6}" - }, - { - "choice_index": 148, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 1", - "value": "{c4bcceea-479f-4a47-81ef-9e5e09f3374b}" - }, - { - "choice_index": 149, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 2a", - "value": "{9f190b47-7b6b-471c-ad18-5c0d64f83d34}" - }, - { - "choice_index": 150, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 2b", - "value": "{69340ca0-44c3-45a1-9b0c-b6ebcf64a730}" - }, - { - "choice_index": 151, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3a", - "value": "{a836bf82-ecf0-4c83-be16-8c520578ea53}" - }, - { - "choice_index": 152, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAS", - "value": "{adea5e6c-d15c-40bd-91a2-cf972f2c5bf6}" - }, - { - "choice_index": 153, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAX", - "value": "{7f05787b-4dd1-4b87-aa25-f25b6b8d19cb}" - }, - { - "choice_index": 154, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3c", - "value": "{a5835a61-4d06-4b07-a718-1c563dc6d3b7}" - }, - { - "choice_index": 155, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4a", - "value": "{b7f6ba6e-da07-4207-a32d-3919cd253da6}" - }, - { - "choice_index": 156, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4b", - "value": "{bee8ddc2-7c4c-49b8-b37f-e75a1c810396}" - }, - { - "choice_index": 157, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4c-5a", - "value": "{f57fb29e-6921-47e1-b7c1-2caca82642e3}" - }, - { - "choice_index": 158, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 6a", - "value": "{76e68b8b-4834-45b0-a037-56f08336119a}" - }, - { - "choice_index": 159, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 6b", - "value": "{559763bb-3d1b-4463-9ac1-caaa6d0736e9}" - }, - { - "choice_index": 160, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 7", - "value": "{d0f44314-4750-4f01-a4dd-4a88035de3d5}" - }, - { - "choice_index": 161, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 8", - "value": "{e4c46517-d200-4a5a-94ea-84adf49cf08f}" - }, - { - "choice_index": 162, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 1", - "value": "{4e0862ac-492a-4fb3-8ee0-c77deee231d5}" - }, - { - "choice_index": 163, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 2a", - "value": "{1409e128-9504-4aaf-9806-0dd68e479299}" - }, - { - "choice_index": 164, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 2b", - "value": "{93cb971b-7ce2-45ec-a87f-ddb079b66665}" - }, - { - "choice_index": 165, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3a", - "value": "{b7e0dd8b-cd7f-4a05-84ce-65db621ea63f}" - }, - { - "choice_index": 166, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAS", - "value": "{9e2628a0-4805-402f-aabd-0cf3ee109465}" - }, - { - "choice_index": 167, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAX", - "value": "{ad1e452d-be49-4049-9efa-12e254092751}" - }, - { - "choice_index": 168, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3c", - "value": "{36d0363a-4295-4967-9003-564c24bf7bf3}" - }, - { - "choice_index": 169, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4a", - "value": "{222f1712-c952-4743-8fb4-a46b3a9d2bc8}" - }, - { - "choice_index": 170, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4b", - "value": "{c86c6541-c4ac-4fc4-901f-dada76a36122}" - }, - { - "choice_index": 171, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4c", - "value": "{9900caf8-b244-4b1d-8bd3-9708592a7bd1}" - }, - { - "choice_index": 172, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 5", - "value": "{4e7bc486-3d83-4bc0-aed0-c39c35df9024}" - }, - { - "choice_index": 173, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 6a", - "value": "{c2cd5e12-df10-4764-b600-034d049360fb}" - }, - { - "choice_index": 174, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 6b", - "value": "{fa626a46-e626-4aeb-b080-21a22121908d}" - }, - { - "choice_index": 175, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 7", - "value": "{d8f3e463-1102-4bae-8275-d56fd7b7f4dc}" - }, - { - "choice_index": 176, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 8", - "value": "{8075ca6b-0308-4406-b4ab-05f0ab1b2cf2}" - }, - { - "choice_index": 177, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 1", - "value": "{ef809b35-2a9d-4982-b8f3-62fc12f6582e}" - }, - { - "choice_index": 178, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2a", - "value": "{ff1ef0ae-2bf1-4c1f-968d-e7f96eafa8cb}" - }, - { - "choice_index": 179, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2b", - "value": "{0731e402-1c43-429a-af11-6d80dde43970}" - }, - { - "choice_index": 180, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3a", - "value": "{133a4042-c42b-46de-bfb8-794dff10d61a}" - }, - { - "choice_index": 181, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAS", - "value": "{1ef3457a-356d-495b-97f2-020b7f5588e7}" - }, - { - "choice_index": 182, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAX", - "value": "{05480032-7251-418b-b5f9-9c81dd080a2c}" - }, - { - "choice_index": 183, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3c", - "value": "{add75a0d-d383-4bf6-850a-dc38e00d6e61}" - }, - { - "choice_index": 184, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4a", - "value": "{aa1ca496-2daa-4f09-8a52-386e66022c2d}" - }, - { - "choice_index": 185, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4b", - "value": "{6510e780-bed0-4da2-b2af-2f7b97aac0cc}" - }, - { - "choice_index": 186, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4c", - "value": "{f3879aa7-8389-40b9-9365-b8c6792e856f}" - }, - { - "choice_index": 187, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 5", - "value": "{f10eb590-a0a7-4b40-851c-0ec1415c4ac9}" - }, - { - "choice_index": 188, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6a", - "value": "{a5665523-873f-4992-8423-0fbc7dc062ee}" - }, - { - "choice_index": 189, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6b", - "value": "{aae388a0-d135-4dd6-ba0f-aa443c4ca8ba}" - }, - { - "choice_index": 190, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 7", - "value": "{82975882-7278-4f6f-afc9-98f1641db383}" - }, - { - "choice_index": 191, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 8", - "value": "{79a528b6-93f8-4eee-9da6-38dec1fd035b}" - }, - { - "choice_index": 192, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 1", - "value": "{eb2189d5-9a56-4f58-92b3-d2541c10dce8}" - }, - { - "choice_index": 193, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2a", - "value": "{0246ced9-4980-4812-96fd-9a44d2d7a48d}" - }, - { - "choice_index": 194, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2b", - "value": "{c2a848b1-6daa-47f8-a07e-d52b61c372da}" - }, - { - "choice_index": 195, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3a", - "value": "{092d2b5a-d21e-4ff5-9804-e5139507611b}" - }, - { - "choice_index": 196, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAS", - "value": "{46b91df6-0dfe-4807-8e0f-5432140cc796}" - }, - { - "choice_index": 197, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAX", - "value": "{11e7cdad-a5ad-474a-9ea4-ab03e5dee103}" - }, - { - "choice_index": 198, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3c", - "value": "{40c5c71d-f7a5-47c5-817d-60bf0ad4e2b4}" - }, - { - "choice_index": 199, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4a", - "value": "{bdeb08a7-42ff-4959-b44f-05dda43eee5a}" - }, - { - "choice_index": 200, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4b", - "value": "{b9ac9f75-4f8c-484f-9f0b-f91f3df44f5f}" - }, - { - "choice_index": 201, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4c", - "value": "{e53e480f-58a9-422f-b7ae-15ce3c37e9dc}" - }, - { - "choice_index": 202, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 5", - "value": "{b85f7456-c87f-4c4c-b967-09678adc0f79}" - }, - { - "choice_index": 203, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6a", - "value": "{d3dfd27a-7896-499b-a15e-542f9cd9e2a3}" - }, - { - "choice_index": 204, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6b", - "value": "{0f36580e-cac0-43cc-8c52-deff07cd1d32}" - }, - { - "choice_index": 205, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 7", - "value": "{7744de9e-3063-4510-ac21-62c542e77cd5}" - }, - { - "choice_index": 206, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 8", - "value": "{27ce314f-ce79-4436-8e21-a79e529361e9}" - }, - { - "choice_index": 207, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 1-2", - "value": "{2202a2a1-83a5-48fd-9c7e-7f578b892e8e}" - }, - { - "choice_index": 208, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3a", - "value": "{60e9f478-0fa9-4b75-9581-7b479e7f6050}" - }, - { - "choice_index": 209, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3b LAS", - "value": "{710f681a-9b4c-4719-a2f8-39c013cdbd8b}" - }, - { - "choice_index": 210, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3b LAX", - "value": "{32a78fbc-c00d-4b84-b9ba-8ee3c497750f}" - }, - { - "choice_index": 211, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3c", - "value": "{3614120e-0f0d-48d8-b9c8-7cfe2990a19b}" - }, - { - "choice_index": 212, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4a", - "value": "{30811454-499d-4fa3-96e8-21149c926e61}" - }, - { - "choice_index": 213, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4b", - "value": "{752467df-bbf8-4b1d-8e5c-1780ec1166e1}" - }, - { - "choice_index": 214, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4c", - "value": "{49a76252-bd61-4f47-9cff-abed8329b885}" - }, - { - "choice_index": 215, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 5", - "value": "{edf897b5-b137-45ae-ab5a-5c2154785bcb}" - }, - { - "choice_index": 216, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 6", - "value": "{0b49d858-5e96-417b-952a-9744e03bcd4a}" - }, - { - "choice_index": 217, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 7", - "value": "{b2ce332f-594e-4860-ba5f-92cbd516dfda}" - }, - { - "choice_index": 218, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 8", - "value": "{f3666b49-59b0-452c-b1bd-705f501985bc}" - }, - { - "choice_index": 219, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 1-3", - "value": "{142e4347-8739-4f16-82dd-8971df6ff0ee}" - }, - { - "choice_index": 220, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4a", - "value": "{540be8db-f63a-48a0-80bf-316ed7bb19df}" - }, - { - "choice_index": 221, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4b", - "value": "{eb8472fe-f574-4bbd-bd1d-90a261597c36}" - }, - { - "choice_index": 222, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4c", - "value": "{5a1f761d-4a54-406a-ac93-865f3f7365d2}" - }, - { - "choice_index": 223, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5a", - "value": "{d6ef5895-b6ad-4a07-b1f3-141b43c07eef}" - }, - { - "choice_index": 224, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5b", - "value": "{f03d8060-7c06-4214-b63f-a29e4897094c}" - }, - { - "choice_index": 225, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 6", - "value": "{07905031-5d9d-4fc0-804e-118b93a54369}" - }, - { - "choice_index": 226, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 7", - "value": "{ad130c26-4100-4e95-b4f4-a3d4d4394063}" - }, - { - "choice_index": 227, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 8", - "value": "{36dc01e7-443b-4b46-a46b-5b576ec585bf}" - }, - { - "choice_index": 228, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 1-3", - "value": "{b58dbdc6-719f-42ca-bcaa-e8a6675a82ef}" - }, - { - "choice_index": 229, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4a", - "value": "{60f147c0-65bd-4463-972b-4a7ecfd275cd}" - }, - { - "choice_index": 230, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4b", - "value": "{e0797daa-8faf-4c75-9ea0-51a1c7294f16}" - }, - { - "choice_index": 231, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4c", - "value": "{2af00d1c-686f-45a5-910f-e2db6cf5df40}" - }, - { - "choice_index": 232, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 5a", - "value": "{d0f9a9ad-125e-4224-a12c-3cbaa48ad8de}" - }, - { - "choice_index": 233, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 5b", - "value": "{4340ebc4-ce3f-459e-93de-70a1b3f25258}" - }, - { - "choice_index": 234, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 6", - "value": "{2b550db8-333f-4844-b421-a86dca37b73d}" - }, - { - "choice_index": 235, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 7", - "value": "{897beb5c-d546-4ee9-8ab1-ad416c9c6f8e}" - }, - { - "choice_index": 236, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 8", - "value": "{8a3262cd-f1fa-41eb-bbaa-7b1ba0cf2f60}" - }, - { - "choice_index": 237, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 1-2", - "value": "{d353edf7-fc83-4ac2-b098-046fdd385761}" - }, - { - "choice_index": 238, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3a", - "value": "{dc7b0ce7-12c4-4b8e-a41e-18807392eff2}" - }, - { - "choice_index": 239, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3b", - "value": "{4dd9b36f-834a-4f15-98c4-6e3492c0aeea}" - }, - { - "choice_index": 240, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3c", - "value": "{6c7defac-af05-4830-bd27-f4eeed4d72bc}" - }, - { - "choice_index": 241, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4a", - "value": "{6dbc7b5a-e6ba-4b9b-a2e7-5b58a997affe}" - }, - { - "choice_index": 242, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4b", - "value": "{d732dd77-0b9e-45a4-b9ac-94487278419d}" - }, - { - "choice_index": 243, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4c", - "value": "{e2e549cb-fe98-4ce4-a52b-644f2c5a48bf}" - }, - { - "choice_index": 244, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 5a", - "value": "{a9fcbbc5-2705-4093-9863-d0d9d699831c}" - }, - { - "choice_index": 245, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 5b", - "value": "{aaddbe00-3c02-4b8c-ac10-adf0179fe422}" - }, - { - "choice_index": 246, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 6", - "value": "{112679d0-e9fb-4e4f-b6d8-b0a86c219191}" - }, - { - "choice_index": 247, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 7", - "value": "{ee3d224e-2c00-4f77-b096-0183ec1f60c2}" - }, - { - "choice_index": 248, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 8", - "value": "{d9ab5698-4d97-463a-bcad-0000700b812a}" - }, - { - "choice_index": 249, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 1-2", - "value": "{a00b1f61-42c4-4f33-96ae-c7a5f21e32d6}" - }, - { - "choice_index": 250, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3a", - "value": "{3a3f1c02-95b0-49c9-b9a1-e38eeb4151dc}" - }, - { - "choice_index": 251, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3b", - "value": "{4258cb62-b70f-451b-9d5d-c5894feb0e6d}" - }, - { - "choice_index": 252, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3c", - "value": "{9924e9d6-8e2e-4823-9a12-1a29007ddfd7}" - }, - { - "choice_index": 253, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4a", - "value": "{031e217b-706a-4775-b021-aa731bf251e7}" - }, - { - "choice_index": 254, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4b", - "value": "{8ff192e6-e5f3-4416-9aae-090511a04bdd}" - }, - { - "choice_index": 255, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4c", - "value": "{04d02889-c852-401c-ad55-bf61702b90df}" - }, - { - "choice_index": 256, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 5a", - "value": "{cdb6130c-283d-4621-92fe-b58204908e56}" - }, - { - "choice_index": 257, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 5b", - "value": "{b41d64a3-6a55-4dbd-adfb-8970462589f8}" - }, - { - "choice_index": 258, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 6", - "value": "{1b537b5f-00e2-4175-a586-19da3ec15ff1}" - }, - { - "choice_index": 259, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 7", - "value": "{974d2587-f08d-4ab3-a29f-742bd9ac9b1c}" - }, - { - "choice_index": 260, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 8", - "value": "{4880caca-2177-4a4e-9e95-32258fb9b7de}" - }, - { - "choice_index": 261, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 1-3b", - "value": "{6325222d-79d8-4734-82c0-598663f7f2c6}" - }, - { - "choice_index": 262, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 3c", - "value": "{f2bec73e-53a4-409b-aef1-e9e453b1036a}" - }, - { - "choice_index": 263, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4a", - "value": "{73d7211a-cf12-41cb-bf92-8f0a0739ac94}" - }, - { - "choice_index": 264, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4b", - "value": "{e53b2675-50ad-441a-8b79-6902d7ba81fb}" - }, - { - "choice_index": 265, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4c", - "value": "{39644664-a9a1-417a-b9db-7b2c2b5f2148}" - }, - { - "choice_index": 266, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 5a", - "value": "{1dd9ad93-06e4-4ed2-9d44-f0681f05c85e}" - }, - { - "choice_index": 267, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 5b", - "value": "{846f380c-b562-459d-a818-bf79ff3c9383}" - }, - { - "choice_index": 268, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 6", - "value": "{94142431-4727-4ea4-88d6-f506930e4db4}" - }, - { - "choice_index": 269, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 7", - "value": "{397278fe-cd4f-4ea2-afe1-58b6156944e6}" - }, - { - "choice_index": 270, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 8", - "value": "{95c2c635-30ae-4fa7-b404-31a8b478c154}" - }, - { - "choice_index": 271, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone 1-4", - "value": "{494e1a96-f997-454a-96d3-a822b2e68b10}" - }, - { - "choice_index": 272, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone 5-8", - "value": "{16368ebb-16f4-4021-942f-280dc2b41494}" - }, - { - "choice_index": 273, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone alt-lrgoff hosp 1-8", - "value": "{90a464bf-6b24-455a-be33-4b4170e892f3}" - } - ], - "display_name": "Choose a Construction to Add Costs to.", - "domain_type": "Enumeration", - "name": "construction", - "required": true, - "type": "Choice", - "uuid": "38478968-61e2-4d4d-98f9-5424050ced41", - "value": "{19c0c7b0-cc51-4778-9f5b-b0b87dcf7be2}", - "version_uuid": "eb4cadb3-a7da-484c-ae04-3307b8337957" - }, - { - "argument_index": 1, - "default_value": "true", - "display_name": "Remove Existing Costs?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "d1766ae3-8fb3-4940-9d80-92fb3f48d907", - "version_uuid": "a8a4e403-4e1e-4362-9efe-d95f9cacd78f" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Material and Installation Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_ip", - "required": true, - "type": "Double", - "uuid": "91e37636-e07a-42e0-b893-d0f53d0e9b33", - "value": 25.0, - "version_uuid": "abe61f8a-3835-4bb5-b719-1c52f7abe86f" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Demolition Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "demolition_cost_ip", - "required": true, - "type": "Double", - "uuid": "e98ec270-c11c-4831-ab32-5606d57c9221", - "version_uuid": "bdfe26d0-71be-4510-890b-7b0ae87c9965" - }, - { - "argument_index": 4, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "83bc8d8d-8d01-4e81-bdff-56779e42b9c2", - "version_uuid": "75406fde-9a4a-4f64-80f3-d52d15a8a261" - }, - { - "argument_index": 5, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "da52c3b7-a0d0-4aa7-bf57-8f1b86721f2b", - "version_uuid": "a823203e-edbe-47c9-a9f1-3b6ac4a7b4ca" - }, - { - "argument_index": 6, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "dba4a2b9-83a2-44ef-a1b5-57623abf800a", - "version_uuid": "7e78cdc2-4d94-4430-b4aa-c71be20cf09e" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "O & M Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost_ip", - "required": true, - "type": "Double", - "uuid": "3f5953f0-888b-41ca-9734-46dd96673309", - "version_uuid": "d9e46b2c-2ab2-4e4c-b98b-fb78febde037" - }, - { - "argument_index": 8, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "1f9b6ec0-a90c-4a5b-8d3e-0b728b4d0a41", - "version_uuid": "143cdfd2-2b01-45b2-b2cb-8f0fb19bae22" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddCostperAreatoUnusedConstruction", - "bcl_measure_uuid": "ad632782-125f-45c8-a9cf-516e184b418a", - "bcl_measure_version_uuid": "405107e2-ce56-40fa-831e-5067adb7f185", - "description": "This measure is the same as \"Add Cost per Area to Construction\" except that it only offers constructions that are not used on any surfaces in the baseline construction.", - "display_name": "Add Cost per Area to Unused Construction", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 0, - "measure_type": "RubyMeasure", - "name": "Add Cost per Area to Unused Construction", - "output_file_type": "OSM", - "uuid": "50b6bef0-bc62-4afa-89cd-057e334029bb", - "version_uuid": "53fd10e1-d1b0-42fe-93fa-d90f2cffbc3b" - } - ], - "name": "Add Cost per Area to Unused Construction Group", - "uuid": "a3840fbe-efdf-4e52-b419-d89e7d762633", - "version_uuid": "2d392209-ece4-47d7-8142-5c5952d902fc", - "workflow_index": 7, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Replace Exterior Window Constructions with a Different Construction from the Model Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "c75a5b58-1f70-424b-8496-dd6d48030851", - "version_uuid": "f94d736b-fc34-45cc-8e55-e3180b36d701" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "000 Exterior Window", - "value": "{a618bef4-afe5-4dde-bcf5-8057338cba27}" - }, - { - "choice_index": 1, - "display_name": "000 Interior Window", - "value": "{84ce7365-ed93-4f6e-bb34-aea6faca9c6e}" - }, - { - "choice_index": 2, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 1", - "value": "{8cebe71e-55d2-4231-8224-0f7fbb4c7501}" - }, - { - "choice_index": 3, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 2", - "value": "{3103b2a2-5aa6-4fe5-aaa6-3510a2354292}" - }, - { - "choice_index": 4, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 3", - "value": "{0102c141-2a45-4a6f-8ab7-0aadb64e7475}" - }, - { - "choice_index": 5, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 4-5", - "value": "{476bda26-7e4a-4312-8e54-ac3e4cfadab0}" - }, - { - "choice_index": 6, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 6", - "value": "{2512851a-42b0-4909-9158-cc20b02c49b7}" - }, - { - "choice_index": 7, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 7-8", - "value": "{171622be-5e2c-475c-a2d0-934941a4722f}" - }, - { - "choice_index": 8, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone alt-res 4-5", - "value": "{6c574b52-b8e1-4d5a-bb06-1a4e6ef44eac}" - }, - { - "choice_index": 9, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 1-2", - "value": "{a6256a2d-73b3-4f4c-a692-eca1300dec04}" - }, - { - "choice_index": 10, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 3a-3b", - "value": "{89421b16-f941-4603-97c7-6482f3de5fea}" - }, - { - "choice_index": 11, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 3c", - "value": "{dca7baae-1750-4ccf-9342-82abc19bfb58}" - }, - { - "choice_index": 12, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 4-6", - "value": "{19c0c7b0-cc51-4778-9f5b-b0b87dcf7be2}" - }, - { - "choice_index": 13, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 7", - "value": "{219c6bd5-b48b-43ed-9a11-8bf83fb461ac}" - }, - { - "choice_index": 14, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 8", - "value": "{e7ea7385-bf19-4249-aa48-2df099e1c504}" - }, - { - "choice_index": 15, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 3c", - "value": "{81541225-745b-4509-947e-84e9b0bdf9b8}" - }, - { - "choice_index": 16, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 4-6", - "value": "{8880ad7c-de07-4987-99eb-18ce2d0bdc41}" - }, - { - "choice_index": 17, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 7", - "value": "{45972d1a-6ff6-4734-82ec-4ba4e2ce50db}" - }, - { - "choice_index": 18, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 8", - "value": "{9ea847f5-94ba-4907-9cbb-955226ee73e4}" - }, - { - "choice_index": 19, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resA 3a-3b", - "value": "{4bf3b597-ab60-47be-87c7-3e54b05cc44c}" - }, - { - "choice_index": 20, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resH 3a-3b", - "value": "{2c59da49-c229-4f1c-b19f-1a857b0ce5a7}" - }, - { - "choice_index": 21, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-ware 1-8", - "value": "{27836075-697d-499f-96e7-6cc381f26699}" - }, - { - "choice_index": 22, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 1-2", - "value": "{2202a2a1-83a5-48fd-9c7e-7f578b892e8e}" - }, - { - "choice_index": 23, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3a", - "value": "{60e9f478-0fa9-4b75-9581-7b479e7f6050}" - }, - { - "choice_index": 24, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3b LAS", - "value": "{710f681a-9b4c-4719-a2f8-39c013cdbd8b}" - }, - { - "choice_index": 25, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3b LAX", - "value": "{32a78fbc-c00d-4b84-b9ba-8ee3c497750f}" - }, - { - "choice_index": 26, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3c", - "value": "{3614120e-0f0d-48d8-b9c8-7cfe2990a19b}" - }, - { - "choice_index": 27, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4a", - "value": "{30811454-499d-4fa3-96e8-21149c926e61}" - }, - { - "choice_index": 28, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4b", - "value": "{752467df-bbf8-4b1d-8e5c-1780ec1166e1}" - }, - { - "choice_index": 29, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4c", - "value": "{49a76252-bd61-4f47-9cff-abed8329b885}" - }, - { - "choice_index": 30, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 5", - "value": "{edf897b5-b137-45ae-ab5a-5c2154785bcb}" - }, - { - "choice_index": 31, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 6", - "value": "{0b49d858-5e96-417b-952a-9744e03bcd4a}" - }, - { - "choice_index": 32, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 7", - "value": "{b2ce332f-594e-4860-ba5f-92cbd516dfda}" - }, - { - "choice_index": 33, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 8", - "value": "{f3666b49-59b0-452c-b1bd-705f501985bc}" - }, - { - "choice_index": 34, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone alt-lrgoff hosp 1-8", - "value": "{df9e360a-1f9d-4a5e-ad1b-ce3ecd5deef4}" - }, - { - "choice_index": 35, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone 1-4", - "value": "{494e1a96-f997-454a-96d3-a822b2e68b10}" - }, - { - "choice_index": 36, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone 5-8", - "value": "{16368ebb-16f4-4021-942f-280dc2b41494}" - }, - { - "choice_index": 37, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone alt-lrgoff hosp 1-8", - "value": "{90a464bf-6b24-455a-be33-4b4170e892f3}" - } - ], - "display_name": "Pick a Window Construction From the Model to Replace Existing Window Constructions.", - "domain_type": "Enumeration", - "name": "construction", - "required": true, - "type": "Choice", - "uuid": "21ca5df2-fcd8-4b95-bfc2-40259ac8e9b4", - "value": "{19c0c7b0-cc51-4778-9f5b-b0b87dcf7be2}", - "version_uuid": "92d283a4-a019-49ca-a475-690757e1f988" - }, - { - "argument_index": 1, - "default_value": "true", - "display_name": "Change Fixed Windows?", - "domain_type": "Enumeration", - "name": "change_fixed_windows", - "required": true, - "type": "Boolean", - "uuid": "b0d94fd2-4207-43b8-8779-e37453aa9fc6", - "version_uuid": "0eee6aaf-15b8-439c-8b3c-bc4a981752e2" - }, - { - "argument_index": 2, - "default_value": "true", - "display_name": "Change Operable Windows?", - "domain_type": "Enumeration", - "name": "change_operable_windows", - "required": true, - "type": "Boolean", - "uuid": "a2107f17-5fbb-4880-86d1-ddb3131911be", - "version_uuid": "c9ad384a-2a84-4385-8526-7453056d28a4" - }, - { - "argument_index": 3, - "default_value": "true", - "display_name": "Remove Existing Costs?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "062279e7-bcd7-4798-9688-a1242acc2067", - "value": "false", - "version_uuid": "dd15bb10-3322-47a5-a838-68ee3fca80ed" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Material and Installation Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_ip", - "required": true, - "type": "Double", - "uuid": "bd3335e3-9821-4fd2-a7a6-44e69023afc6", - "version_uuid": "319127ba-f59b-4e33-9bed-98613421e9dd" - }, - { - "argument_index": 5, - "default_value": 0.0, - "display_name": "Demolition Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "demolition_cost_ip", - "required": true, - "type": "Double", - "uuid": "88c49cdd-eee3-4584-8c1c-9d74e353be42", - "version_uuid": "32471978-70f1-403e-be12-81436bd4319b" - }, - { - "argument_index": 6, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "d02959d1-1e04-4bee-af88-ac74d9037c50", - "version_uuid": "de399809-debd-4eed-963b-bad94cb8ceef" - }, - { - "argument_index": 7, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "0f1062fc-e2a9-41de-8e55-53f2b15575ce", - "version_uuid": "7591ce31-191d-4a0b-94b6-9cc9bd58c17e" - }, - { - "argument_index": 8, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "c830cc18-1110-43af-9254-53caaeaa6245", - "version_uuid": "a2bd6c04-f89d-4c58-a493-400fc4c736ca" - }, - { - "argument_index": 9, - "default_value": 0.0, - "display_name": "O & M Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost_ip", - "required": true, - "type": "Double", - "uuid": "8b396b8e-efbc-450f-ba52-b8cef5d74e88", - "version_uuid": "802fa788-f318-4820-82d1-24594237d8ec" - }, - { - "argument_index": 10, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "7d67265d-6550-4067-b672-7bfc127bb580", - "version_uuid": "a8120a32-2fd2-4931-808e-f1ccb7bf66e8" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReplaceExteriorWindowConstruction", - "bcl_measure_uuid": "e9cc8132-fe83-4cd6-a168-8c7637b04e12", - "bcl_measure_version_uuid": "075fbca2-3150-4006-b4b8-1d4b88e49853", - "description": "Replace existing windows with different windows to change thermal or lighting performance. Window technology has improved drastically over the years, and double or triple-pane high performance windows currently on the market can cut down on envelope loads greatly. Window frames with thermal breaks reduce the considerable energy that can transfer through thermally unbroken frames. High performance windows typically also come with low-emissivity (low?e) glass to keep radiant heat on the same side of the glass from where the heat originated. This means that during the cooling months a low-e glass would tend to keep radiant heat from the sun on the outside of the window, which would keep the inside of a building cooler. Conversely, during heating months low-e glass helps keep radiant heat from inside the building on the inside, which would keep the inside of a building warmer. Life cycle cost values may be added for the new window applied by the measure.", - "display_name": "Replace Exterior Window Constructions with a Different Construction from the Model Alternative", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Replace Exterior Window Constructions with a Different Construction from the Model Alternative", - "output_file_type": "OSM", - "uuid": "5ac30959-e2d6-4389-a45a-d56321e7851a", - "version_uuid": "346f2cf7-935d-43eb-8ff9-fe6a9619684a" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "000 Exterior Window", - "value": "{a618bef4-afe5-4dde-bcf5-8057338cba27}" - }, - { - "choice_index": 1, - "display_name": "000 Interior Window", - "value": "{84ce7365-ed93-4f6e-bb34-aea6faca9c6e}" - }, - { - "choice_index": 2, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 1", - "value": "{8cebe71e-55d2-4231-8224-0f7fbb4c7501}" - }, - { - "choice_index": 3, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 2", - "value": "{3103b2a2-5aa6-4fe5-aaa6-3510a2354292}" - }, - { - "choice_index": 4, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 3", - "value": "{0102c141-2a45-4a6f-8ab7-0aadb64e7475}" - }, - { - "choice_index": 5, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 4-5", - "value": "{476bda26-7e4a-4312-8e54-ac3e4cfadab0}" - }, - { - "choice_index": 6, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 6", - "value": "{2512851a-42b0-4909-9158-cc20b02c49b7}" - }, - { - "choice_index": 7, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 7-8", - "value": "{171622be-5e2c-475c-a2d0-934941a4722f}" - }, - { - "choice_index": 8, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone alt-res 4-5", - "value": "{6c574b52-b8e1-4d5a-bb06-1a4e6ef44eac}" - }, - { - "choice_index": 9, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 1-2", - "value": "{a6256a2d-73b3-4f4c-a692-eca1300dec04}" - }, - { - "choice_index": 10, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 3a-3b", - "value": "{89421b16-f941-4603-97c7-6482f3de5fea}" - }, - { - "choice_index": 11, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 3c", - "value": "{dca7baae-1750-4ccf-9342-82abc19bfb58}" - }, - { - "choice_index": 12, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 4-6", - "value": "{19c0c7b0-cc51-4778-9f5b-b0b87dcf7be2}" - }, - { - "choice_index": 13, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 7", - "value": "{219c6bd5-b48b-43ed-9a11-8bf83fb461ac}" - }, - { - "choice_index": 14, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 8", - "value": "{e7ea7385-bf19-4249-aa48-2df099e1c504}" - }, - { - "choice_index": 15, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 3c", - "value": "{81541225-745b-4509-947e-84e9b0bdf9b8}" - }, - { - "choice_index": 16, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 4-6", - "value": "{8880ad7c-de07-4987-99eb-18ce2d0bdc41}" - }, - { - "choice_index": 17, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 7", - "value": "{45972d1a-6ff6-4734-82ec-4ba4e2ce50db}" - }, - { - "choice_index": 18, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 8", - "value": "{9ea847f5-94ba-4907-9cbb-955226ee73e4}" - }, - { - "choice_index": 19, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resA 3a-3b", - "value": "{4bf3b597-ab60-47be-87c7-3e54b05cc44c}" - }, - { - "choice_index": 20, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resH 3a-3b", - "value": "{2c59da49-c229-4f1c-b19f-1a857b0ce5a7}" - }, - { - "choice_index": 21, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-ware 1-8", - "value": "{27836075-697d-499f-96e7-6cc381f26699}" - }, - { - "choice_index": 22, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 1-2", - "value": "{2202a2a1-83a5-48fd-9c7e-7f578b892e8e}" - }, - { - "choice_index": 23, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3a", - "value": "{60e9f478-0fa9-4b75-9581-7b479e7f6050}" - }, - { - "choice_index": 24, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3b LAS", - "value": "{710f681a-9b4c-4719-a2f8-39c013cdbd8b}" - }, - { - "choice_index": 25, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3b LAX", - "value": "{32a78fbc-c00d-4b84-b9ba-8ee3c497750f}" - }, - { - "choice_index": 26, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3c", - "value": "{3614120e-0f0d-48d8-b9c8-7cfe2990a19b}" - }, - { - "choice_index": 27, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4a", - "value": "{30811454-499d-4fa3-96e8-21149c926e61}" - }, - { - "choice_index": 28, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4b", - "value": "{752467df-bbf8-4b1d-8e5c-1780ec1166e1}" - }, - { - "choice_index": 29, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4c", - "value": "{49a76252-bd61-4f47-9cff-abed8329b885}" - }, - { - "choice_index": 30, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 5", - "value": "{edf897b5-b137-45ae-ab5a-5c2154785bcb}" - }, - { - "choice_index": 31, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 6", - "value": "{0b49d858-5e96-417b-952a-9744e03bcd4a}" - }, - { - "choice_index": 32, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 7", - "value": "{b2ce332f-594e-4860-ba5f-92cbd516dfda}" - }, - { - "choice_index": 33, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 8", - "value": "{f3666b49-59b0-452c-b1bd-705f501985bc}" - }, - { - "choice_index": 34, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone alt-lrgoff hosp 1-8", - "value": "{df9e360a-1f9d-4a5e-ad1b-ce3ecd5deef4}" - }, - { - "choice_index": 35, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone 1-4", - "value": "{494e1a96-f997-454a-96d3-a822b2e68b10}" - }, - { - "choice_index": 36, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone 5-8", - "value": "{16368ebb-16f4-4021-942f-280dc2b41494}" - }, - { - "choice_index": 37, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone alt-lrgoff hosp 1-8", - "value": "{90a464bf-6b24-455a-be33-4b4170e892f3}" - } - ], - "display_name": "Pick a Window Construction From the Model to Replace Existing Window Constructions.", - "domain_type": "Enumeration", - "name": "construction", - "required": true, - "type": "Choice", - "uuid": "e0b15b92-260d-42d9-b5c6-7b8b629e4339", - "value": "{476bda26-7e4a-4312-8e54-ac3e4cfadab0}", - "version_uuid": "64658411-9fed-43b5-b115-8a4c89ceb8d8" - }, - { - "argument_index": 1, - "default_value": "true", - "display_name": "Change Fixed Windows?", - "domain_type": "Enumeration", - "name": "change_fixed_windows", - "required": true, - "type": "Boolean", - "uuid": "c007530a-2219-4e20-9d74-c4cdadc1f38c", - "version_uuid": "bd42c39e-f176-45ed-812f-2b6b08bdac28" - }, - { - "argument_index": 2, - "default_value": "true", - "display_name": "Change Operable Windows?", - "domain_type": "Enumeration", - "name": "change_operable_windows", - "required": true, - "type": "Boolean", - "uuid": "467027aa-bc34-4fbf-9dc0-71a65cb135c3", - "version_uuid": "1087ccce-e025-40d3-9365-deebb2b2827d" - }, - { - "argument_index": 3, - "default_value": "true", - "display_name": "Remove Existing Costs?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "b61acdb9-d045-4e23-a2b4-6f9d35b20018", - "version_uuid": "e3af97cf-c2b1-425a-9ef3-1daa3df1e563" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Material and Installation Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_ip", - "required": true, - "type": "Double", - "uuid": "55e8a916-4399-4089-bddd-74e1cb32a8da", - "value": 30.0, - "version_uuid": "bd0afc0d-9394-4b73-b634-0fab090c5bec" - }, - { - "argument_index": 5, - "default_value": 0.0, - "display_name": "Demolition Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "demolition_cost_ip", - "required": true, - "type": "Double", - "uuid": "1b017231-9eea-4670-8eb5-871150eb7b66", - "version_uuid": "1b4d7a14-8685-4456-952c-2198320f9f41" - }, - { - "argument_index": 6, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "afe87623-4923-4fe6-b69d-9ca281e9d474", - "version_uuid": "95c1d4e4-939f-4b86-8ff8-db97be597423" - }, - { - "argument_index": 7, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "db76935f-0d57-460b-83f7-0fb3c52790b5", - "version_uuid": "3c4726b8-b935-4a1c-b7db-0c70d7b1761b" - }, - { - "argument_index": 8, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "b252c889-0627-41b2-ac3c-55ef6b8a0454", - "version_uuid": "3ff65dc3-2914-423e-9da2-6605a47fecc6" - }, - { - "argument_index": 9, - "default_value": 0.0, - "display_name": "O & M Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost_ip", - "required": true, - "type": "Double", - "uuid": "af8ce449-c4b3-4b34-b722-4968ec947eff", - "version_uuid": "027d1bc2-f0ae-4ac5-9889-714d5137a851" - }, - { - "argument_index": 10, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "c86b2fcd-3c09-4bac-a1d8-a3dd2d1614c7", - "version_uuid": "1b7e5fa7-88c9-47a7-b07a-1b3d178f4992" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReplaceExteriorWindowConstruction", - "bcl_measure_uuid": "e9cc8132-fe83-4cd6-a168-8c7637b04e12", - "bcl_measure_version_uuid": "075fbca2-3150-4006-b4b8-1d4b88e49853", - "description": "Replace existing windows with different windows to change thermal or lighting performance. Window technology has improved drastically over the years, and double or triple-pane high performance windows currently on the market can cut down on envelope loads greatly. Window frames with thermal breaks reduce the considerable energy that can transfer through thermally unbroken frames. High performance windows typically also come with low-emissivity (low?e) glass to keep radiant heat on the same side of the glass from where the heat originated. This means that during the cooling months a low-e glass would tend to keep radiant heat from the sun on the outside of the window, which would keep the inside of a building cooler. Conversely, during heating months low-e glass helps keep radiant heat from inside the building on the inside, which would keep the inside of a building warmer. Life cycle cost values may be added for the new window applied by the measure.", - "display_name": "Replace Exterior Window Constructions with a Different Construction from the Model Alternative 1", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Replace Exterior Window Constructions with a Different Construction from the Model Alternative 1", - "output_file_type": "OSM", - "uuid": "80a61e9c-9d71-4e0b-b8eb-7a8f192236df", - "version_uuid": "83dccf22-a3b7-4c83-93ba-a67399925be0" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "000 Exterior Window", - "value": "{a618bef4-afe5-4dde-bcf5-8057338cba27}" - }, - { - "choice_index": 1, - "display_name": "000 Interior Window", - "value": "{84ce7365-ed93-4f6e-bb34-aea6faca9c6e}" - }, - { - "choice_index": 2, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 1", - "value": "{8cebe71e-55d2-4231-8224-0f7fbb4c7501}" - }, - { - "choice_index": 3, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 2", - "value": "{3103b2a2-5aa6-4fe5-aaa6-3510a2354292}" - }, - { - "choice_index": 4, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 3", - "value": "{0102c141-2a45-4a6f-8ab7-0aadb64e7475}" - }, - { - "choice_index": 5, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 4-5", - "value": "{476bda26-7e4a-4312-8e54-ac3e4cfadab0}" - }, - { - "choice_index": 6, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 6", - "value": "{2512851a-42b0-4909-9158-cc20b02c49b7}" - }, - { - "choice_index": 7, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone 7-8", - "value": "{171622be-5e2c-475c-a2d0-934941a4722f}" - }, - { - "choice_index": 8, - "display_name": "ASHRAE 189.1-2009 ExtWindow ClimateZone alt-res 4-5", - "value": "{6c574b52-b8e1-4d5a-bb06-1a4e6ef44eac}" - }, - { - "choice_index": 9, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 1-2", - "value": "{a6256a2d-73b3-4f4c-a692-eca1300dec04}" - }, - { - "choice_index": 10, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 3a-3b", - "value": "{89421b16-f941-4603-97c7-6482f3de5fea}" - }, - { - "choice_index": 11, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 3c", - "value": "{dca7baae-1750-4ccf-9342-82abc19bfb58}" - }, - { - "choice_index": 12, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 4-6", - "value": "{19c0c7b0-cc51-4778-9f5b-b0b87dcf7be2}" - }, - { - "choice_index": 13, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 7", - "value": "{219c6bd5-b48b-43ed-9a11-8bf83fb461ac}" - }, - { - "choice_index": 14, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone 8", - "value": "{e7ea7385-bf19-4249-aa48-2df099e1c504}" - }, - { - "choice_index": 15, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 3c", - "value": "{81541225-745b-4509-947e-84e9b0bdf9b8}" - }, - { - "choice_index": 16, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 4-6", - "value": "{8880ad7c-de07-4987-99eb-18ce2d0bdc41}" - }, - { - "choice_index": 17, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 7", - "value": "{45972d1a-6ff6-4734-82ec-4ba4e2ce50db}" - }, - { - "choice_index": 18, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-res 8", - "value": "{9ea847f5-94ba-4907-9cbb-955226ee73e4}" - }, - { - "choice_index": 19, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resA 3a-3b", - "value": "{4bf3b597-ab60-47be-87c7-3e54b05cc44c}" - }, - { - "choice_index": 20, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-resH 3a-3b", - "value": "{2c59da49-c229-4f1c-b19f-1a857b0ce5a7}" - }, - { - "choice_index": 21, - "display_name": "ASHRAE 90.1-2004 ExtWindow ClimateZone alt-ware 1-8", - "value": "{27836075-697d-499f-96e7-6cc381f26699}" - }, - { - "choice_index": 22, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 1-2", - "value": "{2202a2a1-83a5-48fd-9c7e-7f578b892e8e}" - }, - { - "choice_index": 23, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3a", - "value": "{60e9f478-0fa9-4b75-9581-7b479e7f6050}" - }, - { - "choice_index": 24, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3b LAS", - "value": "{710f681a-9b4c-4719-a2f8-39c013cdbd8b}" - }, - { - "choice_index": 25, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3b LAX", - "value": "{32a78fbc-c00d-4b84-b9ba-8ee3c497750f}" - }, - { - "choice_index": 26, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 3c", - "value": "{3614120e-0f0d-48d8-b9c8-7cfe2990a19b}" - }, - { - "choice_index": 27, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4a", - "value": "{30811454-499d-4fa3-96e8-21149c926e61}" - }, - { - "choice_index": 28, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4b", - "value": "{752467df-bbf8-4b1d-8e5c-1780ec1166e1}" - }, - { - "choice_index": 29, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 4c", - "value": "{49a76252-bd61-4f47-9cff-abed8329b885}" - }, - { - "choice_index": 30, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 5", - "value": "{edf897b5-b137-45ae-ab5a-5c2154785bcb}" - }, - { - "choice_index": 31, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 6", - "value": "{0b49d858-5e96-417b-952a-9744e03bcd4a}" - }, - { - "choice_index": 32, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 7", - "value": "{b2ce332f-594e-4860-ba5f-92cbd516dfda}" - }, - { - "choice_index": 33, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone 8", - "value": "{f3666b49-59b0-452c-b1bd-705f501985bc}" - }, - { - "choice_index": 34, - "display_name": "CBECS 1980-2004 ExtWindow ClimateZone alt-lrgoff hosp 1-8", - "value": "{df9e360a-1f9d-4a5e-ad1b-ce3ecd5deef4}" - }, - { - "choice_index": 35, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone 1-4", - "value": "{494e1a96-f997-454a-96d3-a822b2e68b10}" - }, - { - "choice_index": 36, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone 5-8", - "value": "{16368ebb-16f4-4021-942f-280dc2b41494}" - }, - { - "choice_index": 37, - "display_name": "CBECS Before-1980 ExtWindow ClimateZone alt-lrgoff hosp 1-8", - "value": "{90a464bf-6b24-455a-be33-4b4170e892f3}" - } - ], - "display_name": "Pick a Window Construction From the Model to Replace Existing Window Constructions.", - "domain_type": "Enumeration", - "name": "construction", - "required": true, - "type": "Choice", - "uuid": "650884be-2dec-456f-aaab-1f11a25cfb21", - "value": "{171622be-5e2c-475c-a2d0-934941a4722f}", - "version_uuid": "10246208-99b5-44ea-b5bc-48ceff4e0170" - }, - { - "argument_index": 1, - "default_value": "true", - "display_name": "Change Fixed Windows?", - "domain_type": "Enumeration", - "name": "change_fixed_windows", - "required": true, - "type": "Boolean", - "uuid": "62d6ab42-91f1-40cc-a09f-98d59d8591a3", - "version_uuid": "10807a45-38c1-4999-879d-d2026f1d2180" - }, - { - "argument_index": 2, - "default_value": "true", - "display_name": "Change Operable Windows?", - "domain_type": "Enumeration", - "name": "change_operable_windows", - "required": true, - "type": "Boolean", - "uuid": "829faf56-43e4-4073-b98f-caab0917c162", - "version_uuid": "fafd1f16-6d14-4313-b75f-5eac1814cad4" - }, - { - "argument_index": 3, - "default_value": "true", - "display_name": "Remove Existing Costs?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "f3a2acbe-998b-44b0-ae1d-3d0af34ebaa6", - "version_uuid": "e7ec5ce9-4104-441c-9182-0e185c81f08c" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Material and Installation Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_ip", - "required": true, - "type": "Double", - "uuid": "f5e5b892-9aeb-497b-8d6d-eb00b4f2c255", - "value": 35.0, - "version_uuid": "9aefa366-1a1d-49c9-b8a3-f6a1b72fa395" - }, - { - "argument_index": 5, - "default_value": 0.0, - "display_name": "Demolition Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "demolition_cost_ip", - "required": true, - "type": "Double", - "uuid": "53d93368-2dd8-4c38-bfce-a2baeac82eb0", - "version_uuid": "032f4187-6d30-4bb9-9070-83e8e283ac88" - }, - { - "argument_index": 6, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "bf447aac-a7a6-4e78-bff1-e22a37fc2f89", - "version_uuid": "cd6cfbaa-046f-493d-9e7a-1225d91ac1d2" - }, - { - "argument_index": 7, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "0914bffb-958e-4e82-a738-0b3535e057e7", - "version_uuid": "cdb1ee88-7039-4dc3-bcf8-f16385000fc1" - }, - { - "argument_index": 8, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "63284c24-e889-4e07-b6c0-420cad0576f7", - "version_uuid": "5955b041-45f3-4527-aac6-562e097c82f2" - }, - { - "argument_index": 9, - "default_value": 0.0, - "display_name": "O & M Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost_ip", - "required": true, - "type": "Double", - "uuid": "c9d04eef-4286-4a8a-88b2-08a922194aae", - "version_uuid": "729c7e41-75fe-47df-9059-685c0b0a8027" - }, - { - "argument_index": 10, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "60950077-0ac6-4291-9ba4-26dd661aa430", - "version_uuid": "281fa1b4-f333-4068-b2a8-5ed9d0778cc9" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReplaceExteriorWindowConstruction", - "bcl_measure_uuid": "e9cc8132-fe83-4cd6-a168-8c7637b04e12", - "bcl_measure_version_uuid": "075fbca2-3150-4006-b4b8-1d4b88e49853", - "description": "Replace existing windows with different windows to change thermal or lighting performance. Window technology has improved drastically over the years, and double or triple-pane high performance windows currently on the market can cut down on envelope loads greatly. Window frames with thermal breaks reduce the considerable energy that can transfer through thermally unbroken frames. High performance windows typically also come with low-emissivity (low?e) glass to keep radiant heat on the same side of the glass from where the heat originated. This means that during the cooling months a low-e glass would tend to keep radiant heat from the sun on the outside of the window, which would keep the inside of a building cooler. Conversely, during heating months low-e glass helps keep radiant heat from inside the building on the inside, which would keep the inside of a building warmer. Life cycle cost values may be added for the new window applied by the measure.", - "display_name": "Replace Exterior Window Constructions with a Different Construction from the Model Alternative 2", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Replace Exterior Window Constructions with a Different Construction from the Model Alternative 2", - "output_file_type": "OSM", - "uuid": "5ae4887f-8db7-4495-bda1-6e0736237389", - "version_uuid": "30bc9e7d-4ff7-408f-ade3-cbdf99d2ced8" - } - ], - "name": "Replace Exterior Window Constructions with a Different Construction from the Model Group", - "uuid": "a07b5885-f09e-4d0c-9088-367fd3690d62", - "version_uuid": "7ae99278-e7b9-4909-a39b-a8cf05f84249", - "workflow_index": 8, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Set Window to Wall Ratio by Facade Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "471fd7df-4da3-42da-a56f-0eec46c2cb36", - "version_uuid": "2edb0ff0-b9f9-4993-969e-8d16ac749f35" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 0.4, - "display_name": "Window to Wall Ratio (fraction).", - "domain_type": "Interval", - "name": "wwr", - "required": true, - "type": "Double", - "uuid": "4387bf65-15f7-4501-877c-ae8a0fe67aa8", - "value": 0.3, - "version_uuid": "4dd7916c-1318-4c64-9070-dcd5caf8b7bf" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Sill Height (in).", - "domain_type": "Interval", - "name": "sillHeight", - "required": true, - "type": "Double", - "uuid": "bb28df2c-8e06-4f59-a0c5-8e387b2f7da6", - "version_uuid": "b3e07916-d467-4b2b-a49f-c8e44f234e5b" - }, - { - "argument_index": 2, - "choices": [ - { - "choice_index": 0, - "display_name": "North", - "value": "North" - }, - { - "choice_index": 1, - "display_name": "East", - "value": "East" - }, - { - "choice_index": 2, - "display_name": "South", - "value": "South" - }, - { - "choice_index": 3, - "display_name": "West", - "value": "West" - } - ], - "default_value": "South", - "display_name": "Cardinal Direction.", - "domain_type": "Enumeration", - "name": "facade", - "required": true, - "type": "Choice", - "uuid": "50f4de7f-ba1e-4eaa-aa57-6edef7197312", - "version_uuid": "651a0c9b-d31f-4fa7-8541-d13d157ef6ff" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/SetWindowToWallRatioByFacade", - "bcl_measure_uuid": "f347ae80-48b4-4c40-bfd4-6c5139b38136", - "bcl_measure_version_uuid": "251c491c-1fc5-4d13-b713-546808b1a353", - "description": "This measure will set the window to wall ratio for exterior surfaces with a specified orientation. If one or more windows exist on an affected wall, they will be removed and replaced with a single ribbon window. Doors will not be removed. If the requested ratio can?t be achieved then the wall will remain un-touched.", - "display_name": "Set Window to Wall Ratio by Facade 0.3 South", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Set Window to Wall Ratio by Facade 0.3 South", - "output_file_type": "OSM", - "uuid": "86a58f68-dc9a-4c17-984b-7a6ca7493464", - "version_uuid": "f3c08c29-bdd7-4ffd-a516-890a880fe514" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 0.4, - "display_name": "Window to Wall Ratio (fraction).", - "domain_type": "Interval", - "name": "wwr", - "required": true, - "type": "Double", - "uuid": "b711ad26-1239-4fea-8e9c-e4dd5ae555d2", - "value": 0.25, - "version_uuid": "8f539689-0930-4669-b648-c5a14f0a7fc3" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Sill Height (in).", - "domain_type": "Interval", - "name": "sillHeight", - "required": true, - "type": "Double", - "uuid": "f61f1d6d-7d31-4c60-b885-8490ccfaa376", - "version_uuid": "0ed97163-5c72-4f70-81ed-c04c79159eb1" - }, - { - "argument_index": 2, - "choices": [ - { - "choice_index": 0, - "display_name": "North", - "value": "North" - }, - { - "choice_index": 1, - "display_name": "East", - "value": "East" - }, - { - "choice_index": 2, - "display_name": "South", - "value": "South" - }, - { - "choice_index": 3, - "display_name": "West", - "value": "West" - } - ], - "default_value": "South", - "display_name": "Cardinal Direction.", - "domain_type": "Enumeration", - "name": "facade", - "required": true, - "type": "Choice", - "uuid": "7b069817-b4dc-4b51-b35b-265a738fa859", - "version_uuid": "55fc3de0-3a57-4062-862e-b11147ccf211" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/SetWindowToWallRatioByFacade", - "bcl_measure_uuid": "f347ae80-48b4-4c40-bfd4-6c5139b38136", - "bcl_measure_version_uuid": "251c491c-1fc5-4d13-b713-546808b1a353", - "description": "This measure will set the window to wall ratio for exterior surfaces with a specified orientation. If one or more windows exist on an affected wall, they will be removed and replaced with a single ribbon window. Doors will not be removed. If the requested ratio can?t be achieved then the wall will remain un-touched.", - "display_name": "Set Window to Wall Ratio by Facade 0.25 South", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Set Window to Wall Ratio by Facade 0.25 South", - "output_file_type": "OSM", - "uuid": "e16805f0-a2f2-4122-828f-0812d49493dd", - "version_uuid": "ca5428cb-a714-4f14-bbf7-035cafcd920b" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 0.4, - "display_name": "Window to Wall Ratio (fraction).", - "domain_type": "Interval", - "name": "wwr", - "required": true, - "type": "Double", - "uuid": "d0fc3490-7123-4454-9817-a8546b3ba896", - "value": 0.2, - "version_uuid": "08b28038-059e-42a1-8211-9eabfcfebb15" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Sill Height (in).", - "domain_type": "Interval", - "name": "sillHeight", - "required": true, - "type": "Double", - "uuid": "6cb189a6-bdd8-4cc3-90f6-1a194cfe9b56", - "version_uuid": "58da7fdd-3161-41f4-b16a-ba5a1d1d6c84" - }, - { - "argument_index": 2, - "choices": [ - { - "choice_index": 0, - "display_name": "North", - "value": "North" - }, - { - "choice_index": 1, - "display_name": "East", - "value": "East" - }, - { - "choice_index": 2, - "display_name": "South", - "value": "South" - }, - { - "choice_index": 3, - "display_name": "West", - "value": "West" - } - ], - "default_value": "South", - "display_name": "Cardinal Direction.", - "domain_type": "Enumeration", - "name": "facade", - "required": true, - "type": "Choice", - "uuid": "a3a457f9-135c-4954-8d31-1b29b90aab68", - "version_uuid": "d8666918-e7b5-46cf-8be4-10af216ce61d" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/SetWindowToWallRatioByFacade", - "bcl_measure_uuid": "f347ae80-48b4-4c40-bfd4-6c5139b38136", - "bcl_measure_version_uuid": "251c491c-1fc5-4d13-b713-546808b1a353", - "description": "This measure will set the window to wall ratio for exterior surfaces with a specified orientation. If one or more windows exist on an affected wall, they will be removed and replaced with a single ribbon window. Doors will not be removed. If the requested ratio can?t be achieved then the wall will remain un-touched.", - "display_name": "Set Window to Wall Ratio by Facade 0.2 South", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Set Window to Wall Ratio by Facade 0.2 South", - "output_file_type": "OSM", - "uuid": "705ce61c-b98e-4053-a36b-ae3db91876c0", - "version_uuid": "7bff8c60-ab6c-48a2-9e15-6267f37cc262" - } - ], - "name": "Set Window to Wall Ratio by Facade Group", - "uuid": "df78f824-e28e-4efd-84cf-3acae5c6b668", - "version_uuid": "c11c2a3d-2da9-470c-9313-90cc938a4ad8", - "workflow_index": 9, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Add Overhangs by Projection Factor Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "357a6aa2-6f1c-4a83-87c1-0ebddc41c410", - "version_uuid": "ffe98d3b-dfa5-41c9-87a2-d8040c0592c8" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 0.5, - "display_name": "Projection Factor (overhang depth / window height)", - "domain_type": "Interval", - "name": "projection_factor", - "required": true, - "type": "Double", - "uuid": "3e5a0ad1-763e-44d0-80e3-b502d0ce3bb7", - "value": 0.15, - "version_uuid": "a64b3486-77a1-444c-820a-7e8de3e80ea4" - }, - { - "argument_index": 1, - "choices": [ - { - "choice_index": 0, - "display_name": "North", - "value": "North" - }, - { - "choice_index": 1, - "display_name": "East", - "value": "East" - }, - { - "choice_index": 2, - "display_name": "South", - "value": "South" - }, - { - "choice_index": 3, - "display_name": "West", - "value": "West" - } - ], - "default_value": "South", - "display_name": "Cardinal Direction", - "domain_type": "Enumeration", - "name": "facade", - "required": true, - "type": "Choice", - "uuid": "51d96964-d99a-4556-ad62-de5a808193fd", - "version_uuid": "08c2d908-3079-404b-aac3-2f454808d9b5" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Remove Existing Space Shading Surfaces From the Model?", - "domain_type": "Enumeration", - "name": "remove_ext_space_shading", - "required": true, - "type": "Boolean", - "uuid": "b6742aca-290c-4430-ac4c-734b0a299dfb", - "version_uuid": "6364d929-feaf-48ce-874a-7cb0afdfef42" - }, - { - "argument_index": 3, - "choices": [ - { - "choice_index": 0, - "display_name": "000 AtticRoof ClimateZone 1-8", - "value": "{cf81dd0b-fee6-4952-8177-441f534451c5}" - }, - { - "choice_index": 1, - "display_name": "000 ExtSlab 4in ClimateZone 1-8", - "value": "{214c9f82-e34e-4143-bacd-dd958ef63823}" - }, - { - "choice_index": 2, - "display_name": "000 ExtSlab 8in ClimateZone 1-8", - "value": "{57781d80-14d1-470a-82ca-90a031bce305}" - }, - { - "choice_index": 3, - "display_name": "000 ExtSlabCarpet 4in ClimateZone 1-8", - "value": "{b88691a7-e9b0-4ff0-87e4-858b5b50b56c}" - }, - { - "choice_index": 4, - "display_name": "000 ExtSlabCarpet 8in ClimateZone 1-8", - "value": "{a8bade1f-a519-47be-813c-f8b2d74acf22}" - }, - { - "choice_index": 5, - "display_name": "000 Exterior Door", - "value": "{fb30531d-9266-4c91-885f-0ec2fb5482e6}" - }, - { - "choice_index": 6, - "display_name": "000 Exterior Floor", - "value": "{0709dfa1-4397-40ff-af32-b9dd823630b7}" - }, - { - "choice_index": 7, - "display_name": "000 Exterior Roof", - "value": "{9d0a3f5f-8569-4993-a529-4019d04d875f}" - }, - { - "choice_index": 8, - "display_name": "000 Exterior Wall", - "value": "{0963de92-4b23-49d3-a415-68cb0a85069a}" - }, - { - "choice_index": 9, - "display_name": "000 Interior Ceiling", - "value": "{224cc0f9-077e-428d-bc7c-ac2fb3dd8241}" - }, - { - "choice_index": 10, - "display_name": "000 Interior Door", - "value": "{8a7ba072-82ca-4f77-af03-922fb4e52b19}" - }, - { - "choice_index": 11, - "display_name": "000 Interior Floor", - "value": "{128499cd-b542-41a5-9306-748b7a658703}" - }, - { - "choice_index": 12, - "display_name": "000 Interior Partition", - "value": "{7637dc40-61ee-48cd-b120-3672a87ad41e}" - }, - { - "choice_index": 13, - "display_name": "000 Interior Wall", - "value": "{bebe4adc-f849-444f-9b2f-fed9b735e166}" - }, - { - "choice_index": 14, - "display_name": "ASHRAE 189.1-2009 AtticFloor ClimateZone 1-8", - "value": "{9c7fa3f3-0827-4f81-a2c1-adf85b6f7816}" - }, - { - "choice_index": 15, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 1", - "value": "{6dc53208-9c99-464e-bf88-a1383ffdef91}" - }, - { - "choice_index": 16, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 2-5", - "value": "{5cb0b684-57aa-4edc-abf4-f11bf072de56}" - }, - { - "choice_index": 17, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 6", - "value": "{a9a155dc-5d71-44eb-af43-f433f38004ee}" - }, - { - "choice_index": 18, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 7-8", - "value": "{e8d6a9b2-bcba-49bd-a499-dea295fd2abf}" - }, - { - "choice_index": 19, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 1", - "value": "{4c4ebd4c-3777-4760-a008-a9bbc8b6dcd2}" - }, - { - "choice_index": 20, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 2-5", - "value": "{e7f18c66-d8e7-4381-ba79-7532aeae2bab}" - }, - { - "choice_index": 21, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 6", - "value": "{75e10288-a996-4d56-901a-43b000538ac5}" - }, - { - "choice_index": 22, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 7-8", - "value": "{f8bb3ee5-2e3e-4a03-b2c4-b66e613f118e}" - }, - { - "choice_index": 23, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 1", - "value": "{8bd7b35f-5189-44c4-a6af-04ab5ad43768}" - }, - { - "choice_index": 24, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 2", - "value": "{4f514d75-d8fc-4639-a52f-1305c2dc5562}" - }, - { - "choice_index": 25, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 3", - "value": "{c9d0905b-1ab4-4f91-9133-f936899e28e7}" - }, - { - "choice_index": 26, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 4", - "value": "{e7facf61-7232-450f-b723-46441eb9963a}" - }, - { - "choice_index": 27, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 5", - "value": "{897c0610-358a-4a46-ab03-75e0f772739d}" - }, - { - "choice_index": 28, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 6", - "value": "{ef598e5b-f520-4f97-8815-2430b14e227e}" - }, - { - "choice_index": 29, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 7-8", - "value": "{b8f00d24-7eb9-4651-b152-c3455a2fb940}" - }, - { - "choice_index": 30, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 1", - "value": "{8f731aa0-e04f-43a6-a6b5-032fe6ab3ce9}" - }, - { - "choice_index": 31, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 2", - "value": "{457eaf48-60ff-4336-a4a8-e7c9fc015126}" - }, - { - "choice_index": 32, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 3", - "value": "{d567d3f3-aa8b-4bc7-9ec9-ce45bf024c6b}" - }, - { - "choice_index": 33, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 4", - "value": "{18ed919b-8b6d-42ae-9090-768f6f72461d}" - }, - { - "choice_index": 34, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 5", - "value": "{87ba0f94-f9de-4ddc-b838-651981028955}" - }, - { - "choice_index": 35, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 6", - "value": "{5b611904-f48b-4afd-b228-d51b5220b3ce}" - }, - { - "choice_index": 36, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 7", - "value": "{5b1576da-4167-41d8-bfd4-4ed1bb517164}" - }, - { - "choice_index": 37, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 8", - "value": "{3eb0a79d-db20-46fa-869b-b2b192799378}" - }, - { - "choice_index": 38, - "display_name": "ASHRAE 189.1-2009 ExtWall Metal ClimateZone 1-3", - "value": "{20339495-9c02-4aed-98b8-38e46dd40704}" - }, - { - "choice_index": 39, - "display_name": "ASHRAE 189.1-2009 ExtWall Metal ClimateZone 4-8", - "value": "{45deceb6-8440-4c0a-b270-4399110a749c}" - }, - { - "choice_index": 40, - "display_name": "ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 1-3", - "value": "{1e9b4d22-f8b7-4c67-b97c-fc2b4da763aa}" - }, - { - "choice_index": 41, - "display_name": "ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 4-8", - "value": "{d650a640-1cc5-4828-a810-50f737f1f667}" - }, - { - "choice_index": 42, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 1-4", - "value": "{4110bc94-a9f5-4d0a-9d8a-869ceb63b4e1}" - }, - { - "choice_index": 43, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 5", - "value": "{8f670027-3ed4-4b2a-95d8-974d5ca3ae3f}" - }, - { - "choice_index": 44, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 6-8", - "value": "{303d0a81-6b01-43fd-b01d-f1c78f98ba9d}" - }, - { - "choice_index": 45, - "display_name": "ASHRAE 90.1-2004 AtticFloor ClimateZone 1-5", - "value": "{cd678e6b-694b-4e0c-b553-6a4b6c6078b7}" - }, - { - "choice_index": 46, - "display_name": "ASHRAE 90.1-2004 AtticFloor ClimateZone 6-8", - "value": "{989760b3-91a7-4184-84c6-e3dc761ca005}" - }, - { - "choice_index": 47, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 1-4", - "value": "{0fa50520-3c17-41b6-b726-52a1146c3c99}" - }, - { - "choice_index": 48, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 5-6", - "value": "{3c24cdd6-28fd-436e-b764-c500e6fc8ce3}" - }, - { - "choice_index": 49, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 7", - "value": "{759086c3-59fa-4ca1-b2ff-3509fd89d1bb}" - }, - { - "choice_index": 50, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 8", - "value": "{e5760002-826e-4c81-b6fd-4a88104e8f61}" - }, - { - "choice_index": 51, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 1", - "value": "{165ebc4a-0c25-4b6e-91cc-51bb5cf737a5}" - }, - { - "choice_index": 52, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 2", - "value": "{114ca435-35f8-4ded-9af9-032a74dc39a6}" - }, - { - "choice_index": 53, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 3-4", - "value": "{19258a75-ff0e-4498-97ec-4c3bd54b1461}" - }, - { - "choice_index": 54, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 5-6", - "value": "{ab4424a7-79cc-45a3-add5-e747b45bf5d5}" - }, - { - "choice_index": 55, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 7", - "value": "{5285e3f9-d922-43e1-8acc-c2c533d4af0f}" - }, - { - "choice_index": 56, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 8", - "value": "{8bb0ff28-1fd4-4a74-91e6-deafc6615039}" - }, - { - "choice_index": 57, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 1-2", - "value": "{693432ff-0f46-45e3-8055-1be58ddc7b77}" - }, - { - "choice_index": 58, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 3-4", - "value": "{c14c4fbc-5bda-483f-b283-fce1eca3a0f0}" - }, - { - "choice_index": 59, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 5", - "value": "{743db2d4-f8c6-42d7-86ab-ed334ce6d11d}" - }, - { - "choice_index": 60, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 6", - "value": "{9aa95e7e-e938-4ee2-9627-037c1c05717c}" - }, - { - "choice_index": 61, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 7", - "value": "{fae8bf90-b4c0-4f73-8467-dc3f72661bf1}" - }, - { - "choice_index": 62, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 8", - "value": "{8f901525-a835-48cb-b3ac-30394a2190eb}" - }, - { - "choice_index": 63, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 1-2", - "value": "{25e2b5b1-dde3-4875-bf4d-d85069dbc826}" - }, - { - "choice_index": 64, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 3", - "value": "{8564f337-21ff-414c-911c-c6d7b4aed473}" - }, - { - "choice_index": 65, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 4", - "value": "{7975e2a4-ce13-4d7f-bdab-9f43a937c765}" - }, - { - "choice_index": 66, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 5-6", - "value": "{1e61fbb2-1d87-4d2a-a40b-b53b7bae77df}" - }, - { - "choice_index": 67, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 7", - "value": "{ae403f70-80c6-424a-bf28-6d1519620264}" - }, - { - "choice_index": 68, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 8", - "value": "{f00f5516-036d-4fed-a958-44d9152cfff8}" - }, - { - "choice_index": 69, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 1", - "value": "{7e8c8909-869e-4787-a454-b022a4615835}" - }, - { - "choice_index": 70, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 2-3", - "value": "{5703b32d-d629-49f3-a312-a6f01194941c}" - }, - { - "choice_index": 71, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 4", - "value": "{9889a8bc-b9f4-446b-9f30-c6c051494f35}" - }, - { - "choice_index": 72, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 5", - "value": "{74589afa-ab24-45eb-aa34-bfe8702995c5}" - }, - { - "choice_index": 73, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 6-8", - "value": "{e1e27d31-4a45-455b-a57b-7dca408ab9ca}" - }, - { - "choice_index": 74, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 1-4", - "value": "{f393b6ee-4ba2-4ede-a275-8533ddc3800e}" - }, - { - "choice_index": 75, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 5-6", - "value": "{9daf37fd-5766-465c-b3a2-80b125b4d3a2}" - }, - { - "choice_index": 76, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 7-8", - "value": "{07ee1c98-49c3-4473-ba13-9c9c30df39fa}" - }, - { - "choice_index": 77, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 3", - "value": "{47fe76c4-d26e-4660-93e2-b03f56c9a678}" - }, - { - "choice_index": 78, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 4-6", - "value": "{aa53823c-b6d9-4808-8453-85e1fc1640d7}" - }, - { - "choice_index": 79, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 8", - "value": "{1d418520-72cc-4b45-a62c-52c570c31a86}" - }, - { - "choice_index": 80, - "display_name": "ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 1-7", - "value": "{ddf48347-e5f1-4b39-a4b5-1529a914b797}" - }, - { - "choice_index": 81, - "display_name": "ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 8", - "value": "{b095b2e2-94eb-40d0-8569-a77051670924}" - }, - { - "choice_index": 82, - "display_name": "Air Wall", - "value": "{41e90204-8ddc-4958-aafa-afebcfff7a36}" - }, - { - "choice_index": 83, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 1", - "value": "{6746aa80-5225-40da-9a77-13e2b4194be6}" - }, - { - "choice_index": 84, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2a", - "value": "{67de0ced-c984-47a9-92fc-24fb61fcbdfa}" - }, - { - "choice_index": 85, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2b", - "value": "{8a5b107b-96a5-4c05-90bb-9b2bb5f0ef65}" - }, - { - "choice_index": 86, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3a", - "value": "{f4727994-ac73-4466-a009-21b9d3ab4139}" - }, - { - "choice_index": 87, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAS", - "value": "{ce7a1e48-e6d6-4dda-8680-bcd7423c2e5e}" - }, - { - "choice_index": 88, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAX", - "value": "{2b9ad167-3cb9-4945-a5c8-a9313fcaf170}" - }, - { - "choice_index": 89, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3c", - "value": "{ed09534d-8a29-43a5-8da2-54c048337381}" - }, - { - "choice_index": 90, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4a", - "value": "{ec817670-9cd5-4f35-8c9e-fcc6176a8585}" - }, - { - "choice_index": 91, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4b", - "value": "{aa514c9e-e060-4a65-919a-5d815038e0dd}" - }, - { - "choice_index": 92, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4c", - "value": "{0e4f384c-1100-47b3-8a53-5c798aad6154}" - }, - { - "choice_index": 93, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5a", - "value": "{9db9bca5-8737-4f22-95ad-12c8b3f552f8}" - }, - { - "choice_index": 94, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5b", - "value": "{6a59185f-3513-4391-88c6-dcc56ed8368c}" - }, - { - "choice_index": 95, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6a", - "value": "{2f20ebc3-b630-4900-9af1-6c7a0693fa10}" - }, - { - "choice_index": 96, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6b", - "value": "{b719f186-aab6-499e-a66a-809b2165c93c}" - }, - { - "choice_index": 97, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 7", - "value": "{d7e81209-6472-4f2f-8526-6d5be298721a}" - }, - { - "choice_index": 98, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 8", - "value": "{c804c4cd-309a-4f0a-84e4-c9668ca255ef}" - }, - { - "choice_index": 99, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 1", - "value": "{e44fdced-5361-4f65-bf18-3b2e0a61fdeb}" - }, - { - "choice_index": 100, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 2a", - "value": "{21d08ce3-2619-42b2-a66e-49d69db131df}" - }, - { - "choice_index": 101, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 2b", - "value": "{0c079479-b0e4-4406-bb4a-82037a757660}" - }, - { - "choice_index": 102, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3a", - "value": "{99d1add8-3054-4f81-ab6d-7f871cccd091}" - }, - { - "choice_index": 103, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAS", - "value": "{8624534a-307e-4c1b-b355-ce831e50a47c}" - }, - { - "choice_index": 104, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAX", - "value": "{6d442e01-ddc7-4965-8033-b7470a7f42fc}" - }, - { - "choice_index": 105, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3c", - "value": "{19b05f1b-19f4-404c-9015-0795af73dc4e}" - }, - { - "choice_index": 106, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4a", - "value": "{b1efc8ad-52f8-44fc-9ff2-32fe8091784b}" - }, - { - "choice_index": 107, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4b", - "value": "{88fbc67b-f8d9-416c-9a75-4f425f038914}" - }, - { - "choice_index": 108, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4c", - "value": "{d0057c0a-a9fb-41ac-a981-f54367b3b63c}" - }, - { - "choice_index": 109, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 5a", - "value": "{39008a65-a85d-4c44-ba66-1c02375ed93d}" - }, - { - "choice_index": 110, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 5b", - "value": "{3cdb8067-edd7-4ce2-b585-002e162c6550}" - }, - { - "choice_index": 111, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 6a", - "value": "{a9817b30-15bf-4ddc-bc8e-b850a65a3070}" - }, - { - "choice_index": 112, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 6b", - "value": "{24d42982-8445-4d5f-b78f-92cc3c953005}" - }, - { - "choice_index": 113, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 7", - "value": "{6cd3fce7-f6a7-4521-9701-d37a843b2342}" - }, - { - "choice_index": 114, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 8", - "value": "{2cd34f80-65b3-449a-b146-eca1ec0ff57d}" - }, - { - "choice_index": 115, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 1", - "value": "{0eaaf3ab-7389-45f7-a23c-0834161d3fb0}" - }, - { - "choice_index": 116, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 2a", - "value": "{9050c860-ccfe-4073-92ce-06521d1598c9}" - }, - { - "choice_index": 117, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 2b", - "value": "{b7df3f6f-8db7-4901-ba73-5fb897468587}" - }, - { - "choice_index": 118, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3a", - "value": "{8277a688-2a06-46fb-a8c0-f571fa1c371c}" - }, - { - "choice_index": 119, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAS", - "value": "{4d3a990b-f472-4098-9db8-452f0d5591ec}" - }, - { - "choice_index": 120, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAX", - "value": "{8aa397c8-aaa2-4d79-9733-7cc01d8ce81f}" - }, - { - "choice_index": 121, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3c", - "value": "{63bc5e5a-1783-4997-92cc-11432dd9ea97}" - }, - { - "choice_index": 122, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4a", - "value": "{2bff44b5-75d1-4af4-ab00-c5c0711cb912}" - }, - { - "choice_index": 123, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4b", - "value": "{10e4275d-80d3-4757-bfa6-1bc8e0da0350}" - }, - { - "choice_index": 124, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4c", - "value": "{f393a212-8bfa-43f0-820e-163878adeced}" - }, - { - "choice_index": 125, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 5a", - "value": "{a3c2dfd9-ce3f-4384-9e51-a3d7a76a5d3f}" - }, - { - "choice_index": 126, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 5b", - "value": "{909f9c4c-3fec-4706-b955-579b781ae14e}" - }, - { - "choice_index": 127, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 6a", - "value": "{46c58699-3cfd-4472-b18c-e0127de8426c}" - }, - { - "choice_index": 128, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 6b", - "value": "{ccea3e85-7437-4102-9334-c1a71c399e4f}" - }, - { - "choice_index": 129, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 7", - "value": "{c1a95633-7a44-4b7c-9edb-9dddc0fb8425}" - }, - { - "choice_index": 130, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 8", - "value": "{8349efd9-b5d5-43b5-a247-8c53be3151c6}" - }, - { - "choice_index": 131, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 1", - "value": "{c4bcceea-479f-4a47-81ef-9e5e09f3374b}" - }, - { - "choice_index": 132, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 2a", - "value": "{9f190b47-7b6b-471c-ad18-5c0d64f83d34}" - }, - { - "choice_index": 133, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 2b", - "value": "{69340ca0-44c3-45a1-9b0c-b6ebcf64a730}" - }, - { - "choice_index": 134, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3a", - "value": "{a836bf82-ecf0-4c83-be16-8c520578ea53}" - }, - { - "choice_index": 135, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAS", - "value": "{adea5e6c-d15c-40bd-91a2-cf972f2c5bf6}" - }, - { - "choice_index": 136, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAX", - "value": "{7f05787b-4dd1-4b87-aa25-f25b6b8d19cb}" - }, - { - "choice_index": 137, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3c", - "value": "{a5835a61-4d06-4b07-a718-1c563dc6d3b7}" - }, - { - "choice_index": 138, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4a", - "value": "{b7f6ba6e-da07-4207-a32d-3919cd253da6}" - }, - { - "choice_index": 139, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4b", - "value": "{bee8ddc2-7c4c-49b8-b37f-e75a1c810396}" - }, - { - "choice_index": 140, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4c-5a", - "value": "{f57fb29e-6921-47e1-b7c1-2caca82642e3}" - }, - { - "choice_index": 141, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 5b", - "value": "{ad51ccbb-ca21-4460-8bd1-87ccc5458ee4}" - }, - { - "choice_index": 142, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 6a", - "value": "{76e68b8b-4834-45b0-a037-56f08336119a}" - }, - { - "choice_index": 143, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 6b", - "value": "{559763bb-3d1b-4463-9ac1-caaa6d0736e9}" - }, - { - "choice_index": 144, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 7", - "value": "{d0f44314-4750-4f01-a4dd-4a88035de3d5}" - }, - { - "choice_index": 145, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 8", - "value": "{e4c46517-d200-4a5a-94ea-84adf49cf08f}" - }, - { - "choice_index": 146, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 1", - "value": "{4e0862ac-492a-4fb3-8ee0-c77deee231d5}" - }, - { - "choice_index": 147, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 2a", - "value": "{1409e128-9504-4aaf-9806-0dd68e479299}" - }, - { - "choice_index": 148, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 2b", - "value": "{93cb971b-7ce2-45ec-a87f-ddb079b66665}" - }, - { - "choice_index": 149, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3a", - "value": "{b7e0dd8b-cd7f-4a05-84ce-65db621ea63f}" - }, - { - "choice_index": 150, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAS", - "value": "{9e2628a0-4805-402f-aabd-0cf3ee109465}" - }, - { - "choice_index": 151, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAX", - "value": "{ad1e452d-be49-4049-9efa-12e254092751}" - }, - { - "choice_index": 152, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3c", - "value": "{36d0363a-4295-4967-9003-564c24bf7bf3}" - }, - { - "choice_index": 153, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4a", - "value": "{222f1712-c952-4743-8fb4-a46b3a9d2bc8}" - }, - { - "choice_index": 154, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4b", - "value": "{c86c6541-c4ac-4fc4-901f-dada76a36122}" - }, - { - "choice_index": 155, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4c", - "value": "{9900caf8-b244-4b1d-8bd3-9708592a7bd1}" - }, - { - "choice_index": 156, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 5", - "value": "{4e7bc486-3d83-4bc0-aed0-c39c35df9024}" - }, - { - "choice_index": 157, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 6a", - "value": "{c2cd5e12-df10-4764-b600-034d049360fb}" - }, - { - "choice_index": 158, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 6b", - "value": "{fa626a46-e626-4aeb-b080-21a22121908d}" - }, - { - "choice_index": 159, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 7", - "value": "{d8f3e463-1102-4bae-8275-d56fd7b7f4dc}" - }, - { - "choice_index": 160, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 8", - "value": "{8075ca6b-0308-4406-b4ab-05f0ab1b2cf2}" - }, - { - "choice_index": 161, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 1", - "value": "{ef809b35-2a9d-4982-b8f3-62fc12f6582e}" - }, - { - "choice_index": 162, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2a", - "value": "{ff1ef0ae-2bf1-4c1f-968d-e7f96eafa8cb}" - }, - { - "choice_index": 163, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2b", - "value": "{0731e402-1c43-429a-af11-6d80dde43970}" - }, - { - "choice_index": 164, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3a", - "value": "{133a4042-c42b-46de-bfb8-794dff10d61a}" - }, - { - "choice_index": 165, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAS", - "value": "{1ef3457a-356d-495b-97f2-020b7f5588e7}" - }, - { - "choice_index": 166, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAX", - "value": "{05480032-7251-418b-b5f9-9c81dd080a2c}" - }, - { - "choice_index": 167, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3c", - "value": "{add75a0d-d383-4bf6-850a-dc38e00d6e61}" - }, - { - "choice_index": 168, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4a", - "value": "{aa1ca496-2daa-4f09-8a52-386e66022c2d}" - }, - { - "choice_index": 169, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4b", - "value": "{6510e780-bed0-4da2-b2af-2f7b97aac0cc}" - }, - { - "choice_index": 170, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4c", - "value": "{f3879aa7-8389-40b9-9365-b8c6792e856f}" - }, - { - "choice_index": 171, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 5", - "value": "{f10eb590-a0a7-4b40-851c-0ec1415c4ac9}" - }, - { - "choice_index": 172, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6a", - "value": "{a5665523-873f-4992-8423-0fbc7dc062ee}" - }, - { - "choice_index": 173, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6b", - "value": "{aae388a0-d135-4dd6-ba0f-aa443c4ca8ba}" - }, - { - "choice_index": 174, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 7", - "value": "{82975882-7278-4f6f-afc9-98f1641db383}" - }, - { - "choice_index": 175, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 8", - "value": "{79a528b6-93f8-4eee-9da6-38dec1fd035b}" - }, - { - "choice_index": 176, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 1", - "value": "{eb2189d5-9a56-4f58-92b3-d2541c10dce8}" - }, - { - "choice_index": 177, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2a", - "value": "{0246ced9-4980-4812-96fd-9a44d2d7a48d}" - }, - { - "choice_index": 178, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2b", - "value": "{c2a848b1-6daa-47f8-a07e-d52b61c372da}" - }, - { - "choice_index": 179, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3a", - "value": "{092d2b5a-d21e-4ff5-9804-e5139507611b}" - }, - { - "choice_index": 180, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAS", - "value": "{46b91df6-0dfe-4807-8e0f-5432140cc796}" - }, - { - "choice_index": 181, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAX", - "value": "{11e7cdad-a5ad-474a-9ea4-ab03e5dee103}" - }, - { - "choice_index": 182, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3c", - "value": "{40c5c71d-f7a5-47c5-817d-60bf0ad4e2b4}" - }, - { - "choice_index": 183, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4a", - "value": "{bdeb08a7-42ff-4959-b44f-05dda43eee5a}" - }, - { - "choice_index": 184, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4b", - "value": "{b9ac9f75-4f8c-484f-9f0b-f91f3df44f5f}" - }, - { - "choice_index": 185, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4c", - "value": "{e53e480f-58a9-422f-b7ae-15ce3c37e9dc}" - }, - { - "choice_index": 186, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 5", - "value": "{b85f7456-c87f-4c4c-b967-09678adc0f79}" - }, - { - "choice_index": 187, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6a", - "value": "{d3dfd27a-7896-499b-a15e-542f9cd9e2a3}" - }, - { - "choice_index": 188, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6b", - "value": "{0f36580e-cac0-43cc-8c52-deff07cd1d32}" - }, - { - "choice_index": 189, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 7", - "value": "{7744de9e-3063-4510-ac21-62c542e77cd5}" - }, - { - "choice_index": 190, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 8", - "value": "{27ce314f-ce79-4436-8e21-a79e529361e9}" - }, - { - "choice_index": 191, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 1-3", - "value": "{142e4347-8739-4f16-82dd-8971df6ff0ee}" - }, - { - "choice_index": 192, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4a", - "value": "{540be8db-f63a-48a0-80bf-316ed7bb19df}" - }, - { - "choice_index": 193, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4b", - "value": "{eb8472fe-f574-4bbd-bd1d-90a261597c36}" - }, - { - "choice_index": 194, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4c", - "value": "{5a1f761d-4a54-406a-ac93-865f3f7365d2}" - }, - { - "choice_index": 195, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5a", - "value": "{d6ef5895-b6ad-4a07-b1f3-141b43c07eef}" - }, - { - "choice_index": 196, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5b", - "value": "{f03d8060-7c06-4214-b63f-a29e4897094c}" - }, - { - "choice_index": 197, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 6", - "value": "{07905031-5d9d-4fc0-804e-118b93a54369}" - }, - { - "choice_index": 198, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 7", - "value": "{ad130c26-4100-4e95-b4f4-a3d4d4394063}" - }, - { - "choice_index": 199, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 8", - "value": "{36dc01e7-443b-4b46-a46b-5b576ec585bf}" - }, - { - "choice_index": 200, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 1-3", - "value": "{b58dbdc6-719f-42ca-bcaa-e8a6675a82ef}" - }, - { - "choice_index": 201, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4a", - "value": "{60f147c0-65bd-4463-972b-4a7ecfd275cd}" - }, - { - "choice_index": 202, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4b", - "value": "{e0797daa-8faf-4c75-9ea0-51a1c7294f16}" - }, - { - "choice_index": 203, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4c", - "value": "{2af00d1c-686f-45a5-910f-e2db6cf5df40}" - }, - { - "choice_index": 204, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 5a", - "value": "{d0f9a9ad-125e-4224-a12c-3cbaa48ad8de}" - }, - { - "choice_index": 205, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 5b", - "value": "{4340ebc4-ce3f-459e-93de-70a1b3f25258}" - }, - { - "choice_index": 206, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 6", - "value": "{2b550db8-333f-4844-b421-a86dca37b73d}" - }, - { - "choice_index": 207, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 7", - "value": "{897beb5c-d546-4ee9-8ab1-ad416c9c6f8e}" - }, - { - "choice_index": 208, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 8", - "value": "{8a3262cd-f1fa-41eb-bbaa-7b1ba0cf2f60}" - }, - { - "choice_index": 209, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 1-2", - "value": "{d353edf7-fc83-4ac2-b098-046fdd385761}" - }, - { - "choice_index": 210, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3a", - "value": "{dc7b0ce7-12c4-4b8e-a41e-18807392eff2}" - }, - { - "choice_index": 211, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3b", - "value": "{4dd9b36f-834a-4f15-98c4-6e3492c0aeea}" - }, - { - "choice_index": 212, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3c", - "value": "{6c7defac-af05-4830-bd27-f4eeed4d72bc}" - }, - { - "choice_index": 213, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4a", - "value": "{6dbc7b5a-e6ba-4b9b-a2e7-5b58a997affe}" - }, - { - "choice_index": 214, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4b", - "value": "{d732dd77-0b9e-45a4-b9ac-94487278419d}" - }, - { - "choice_index": 215, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4c", - "value": "{e2e549cb-fe98-4ce4-a52b-644f2c5a48bf}" - }, - { - "choice_index": 216, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 5a", - "value": "{a9fcbbc5-2705-4093-9863-d0d9d699831c}" - }, - { - "choice_index": 217, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 5b", - "value": "{aaddbe00-3c02-4b8c-ac10-adf0179fe422}" - }, - { - "choice_index": 218, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 6", - "value": "{112679d0-e9fb-4e4f-b6d8-b0a86c219191}" - }, - { - "choice_index": 219, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 7", - "value": "{ee3d224e-2c00-4f77-b096-0183ec1f60c2}" - }, - { - "choice_index": 220, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 8", - "value": "{d9ab5698-4d97-463a-bcad-0000700b812a}" - }, - { - "choice_index": 221, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 1-2", - "value": "{a00b1f61-42c4-4f33-96ae-c7a5f21e32d6}" - }, - { - "choice_index": 222, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3a", - "value": "{3a3f1c02-95b0-49c9-b9a1-e38eeb4151dc}" - }, - { - "choice_index": 223, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3b", - "value": "{4258cb62-b70f-451b-9d5d-c5894feb0e6d}" - }, - { - "choice_index": 224, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3c", - "value": "{9924e9d6-8e2e-4823-9a12-1a29007ddfd7}" - }, - { - "choice_index": 225, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4a", - "value": "{031e217b-706a-4775-b021-aa731bf251e7}" - }, - { - "choice_index": 226, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4b", - "value": "{8ff192e6-e5f3-4416-9aae-090511a04bdd}" - }, - { - "choice_index": 227, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4c", - "value": "{04d02889-c852-401c-ad55-bf61702b90df}" - }, - { - "choice_index": 228, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 5a", - "value": "{cdb6130c-283d-4621-92fe-b58204908e56}" - }, - { - "choice_index": 229, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 5b", - "value": "{b41d64a3-6a55-4dbd-adfb-8970462589f8}" - }, - { - "choice_index": 230, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 6", - "value": "{1b537b5f-00e2-4175-a586-19da3ec15ff1}" - }, - { - "choice_index": 231, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 7", - "value": "{974d2587-f08d-4ab3-a29f-742bd9ac9b1c}" - }, - { - "choice_index": 232, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 8", - "value": "{4880caca-2177-4a4e-9e95-32258fb9b7de}" - }, - { - "choice_index": 233, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 1-3b", - "value": "{6325222d-79d8-4734-82c0-598663f7f2c6}" - }, - { - "choice_index": 234, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 3c", - "value": "{f2bec73e-53a4-409b-aef1-e9e453b1036a}" - }, - { - "choice_index": 235, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4a", - "value": "{73d7211a-cf12-41cb-bf92-8f0a0739ac94}" - }, - { - "choice_index": 236, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4b", - "value": "{e53b2675-50ad-441a-8b79-6902d7ba81fb}" - }, - { - "choice_index": 237, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4c", - "value": "{39644664-a9a1-417a-b9db-7b2c2b5f2148}" - }, - { - "choice_index": 238, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 5a", - "value": "{1dd9ad93-06e4-4ed2-9d44-f0681f05c85e}" - }, - { - "choice_index": 239, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 5b", - "value": "{846f380c-b562-459d-a818-bf79ff3c9383}" - }, - { - "choice_index": 240, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 6", - "value": "{94142431-4727-4ea4-88d6-f506930e4db4}" - }, - { - "choice_index": 241, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 7", - "value": "{397278fe-cd4f-4ea2-afe1-58b6156944e6}" - }, - { - "choice_index": 242, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 8", - "value": "{95c2c635-30ae-4fa7-b404-31a8b478c154}" - } - ], - "display_name": "Optionally Choose a Construction for the Overhangs.", - "domain_type": "Enumeration", - "name": "construction", - "required": false, - "type": "Choice", - "uuid": "babb14ca-9f97-4d01-80f6-cb55b13a8448", - "version_uuid": "6dca5c37-7013-4423-9cee-1eae4db715fc" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddOverhangsByProjectionFactor", - "bcl_measure_uuid": "1e29e117-3916-4368-b24d-75da54045956", - "bcl_measure_version_uuid": "a0aa02d4-7328-4462-a5af-cfe6dedc64da", - "description": "Add overhangs by projection factor to specified windows. The projection factor is the overhang depth divided by the window height. This can be applied to windows by the closest cardinal direction. If baseline model contains overhangs made by this measure, they will be replaced. Optionally the measure can delete any pre-existing space shading surfaces.", - "display_name": "Add Overhangs by Projection Factor 0.15 South", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Add Overhangs by Projection Factor 0.15 South", - "output_file_type": "OSM", - "uuid": "9fcb3f5c-dbbf-4b50-88a6-318143b7905b", - "version_uuid": "2df2e0ef-6001-4280-a718-5778364f6d1a" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 0.5, - "display_name": "Projection Factor (overhang depth / window height)", - "domain_type": "Interval", - "name": "projection_factor", - "required": true, - "type": "Double", - "uuid": "12ec0e64-4822-4cf3-9478-a4fb10fa7454", - "value": 0.2, - "version_uuid": "4d2ff6ea-0ea1-4a16-b3c4-c946ae793e8c" - }, - { - "argument_index": 1, - "choices": [ - { - "choice_index": 0, - "display_name": "North", - "value": "North" - }, - { - "choice_index": 1, - "display_name": "East", - "value": "East" - }, - { - "choice_index": 2, - "display_name": "South", - "value": "South" - }, - { - "choice_index": 3, - "display_name": "West", - "value": "West" - } - ], - "default_value": "South", - "display_name": "Cardinal Direction", - "domain_type": "Enumeration", - "name": "facade", - "required": true, - "type": "Choice", - "uuid": "3cd33d47-2fa0-4bfb-8488-251e629e0750", - "version_uuid": "30ac7dd1-f24f-452a-b95e-e58dc89c93a7" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Remove Existing Space Shading Surfaces From the Model?", - "domain_type": "Enumeration", - "name": "remove_ext_space_shading", - "required": true, - "type": "Boolean", - "uuid": "a34dfd9b-59b7-4ffe-9de3-366666c7b366", - "version_uuid": "b8c4637f-8691-404f-bb5b-cf10838345be" - }, - { - "argument_index": 3, - "choices": [ - { - "choice_index": 0, - "display_name": "000 AtticRoof ClimateZone 1-8", - "value": "{cf81dd0b-fee6-4952-8177-441f534451c5}" - }, - { - "choice_index": 1, - "display_name": "000 ExtSlab 4in ClimateZone 1-8", - "value": "{214c9f82-e34e-4143-bacd-dd958ef63823}" - }, - { - "choice_index": 2, - "display_name": "000 ExtSlab 8in ClimateZone 1-8", - "value": "{57781d80-14d1-470a-82ca-90a031bce305}" - }, - { - "choice_index": 3, - "display_name": "000 ExtSlabCarpet 4in ClimateZone 1-8", - "value": "{b88691a7-e9b0-4ff0-87e4-858b5b50b56c}" - }, - { - "choice_index": 4, - "display_name": "000 ExtSlabCarpet 8in ClimateZone 1-8", - "value": "{a8bade1f-a519-47be-813c-f8b2d74acf22}" - }, - { - "choice_index": 5, - "display_name": "000 Exterior Door", - "value": "{fb30531d-9266-4c91-885f-0ec2fb5482e6}" - }, - { - "choice_index": 6, - "display_name": "000 Exterior Floor", - "value": "{0709dfa1-4397-40ff-af32-b9dd823630b7}" - }, - { - "choice_index": 7, - "display_name": "000 Exterior Roof", - "value": "{9d0a3f5f-8569-4993-a529-4019d04d875f}" - }, - { - "choice_index": 8, - "display_name": "000 Exterior Wall", - "value": "{0963de92-4b23-49d3-a415-68cb0a85069a}" - }, - { - "choice_index": 9, - "display_name": "000 Interior Ceiling", - "value": "{224cc0f9-077e-428d-bc7c-ac2fb3dd8241}" - }, - { - "choice_index": 10, - "display_name": "000 Interior Door", - "value": "{8a7ba072-82ca-4f77-af03-922fb4e52b19}" - }, - { - "choice_index": 11, - "display_name": "000 Interior Floor", - "value": "{128499cd-b542-41a5-9306-748b7a658703}" - }, - { - "choice_index": 12, - "display_name": "000 Interior Partition", - "value": "{7637dc40-61ee-48cd-b120-3672a87ad41e}" - }, - { - "choice_index": 13, - "display_name": "000 Interior Wall", - "value": "{bebe4adc-f849-444f-9b2f-fed9b735e166}" - }, - { - "choice_index": 14, - "display_name": "ASHRAE 189.1-2009 AtticFloor ClimateZone 1-8", - "value": "{9c7fa3f3-0827-4f81-a2c1-adf85b6f7816}" - }, - { - "choice_index": 15, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 1", - "value": "{6dc53208-9c99-464e-bf88-a1383ffdef91}" - }, - { - "choice_index": 16, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 2-5", - "value": "{5cb0b684-57aa-4edc-abf4-f11bf072de56}" - }, - { - "choice_index": 17, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 6", - "value": "{a9a155dc-5d71-44eb-af43-f433f38004ee}" - }, - { - "choice_index": 18, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 7-8", - "value": "{e8d6a9b2-bcba-49bd-a499-dea295fd2abf}" - }, - { - "choice_index": 19, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 1", - "value": "{4c4ebd4c-3777-4760-a008-a9bbc8b6dcd2}" - }, - { - "choice_index": 20, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 2-5", - "value": "{e7f18c66-d8e7-4381-ba79-7532aeae2bab}" - }, - { - "choice_index": 21, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 6", - "value": "{75e10288-a996-4d56-901a-43b000538ac5}" - }, - { - "choice_index": 22, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 7-8", - "value": "{f8bb3ee5-2e3e-4a03-b2c4-b66e613f118e}" - }, - { - "choice_index": 23, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 1", - "value": "{8bd7b35f-5189-44c4-a6af-04ab5ad43768}" - }, - { - "choice_index": 24, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 2", - "value": "{4f514d75-d8fc-4639-a52f-1305c2dc5562}" - }, - { - "choice_index": 25, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 3", - "value": "{c9d0905b-1ab4-4f91-9133-f936899e28e7}" - }, - { - "choice_index": 26, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 4", - "value": "{e7facf61-7232-450f-b723-46441eb9963a}" - }, - { - "choice_index": 27, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 5", - "value": "{897c0610-358a-4a46-ab03-75e0f772739d}" - }, - { - "choice_index": 28, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 6", - "value": "{ef598e5b-f520-4f97-8815-2430b14e227e}" - }, - { - "choice_index": 29, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 7-8", - "value": "{b8f00d24-7eb9-4651-b152-c3455a2fb940}" - }, - { - "choice_index": 30, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 1", - "value": "{8f731aa0-e04f-43a6-a6b5-032fe6ab3ce9}" - }, - { - "choice_index": 31, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 2", - "value": "{457eaf48-60ff-4336-a4a8-e7c9fc015126}" - }, - { - "choice_index": 32, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 3", - "value": "{d567d3f3-aa8b-4bc7-9ec9-ce45bf024c6b}" - }, - { - "choice_index": 33, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 4", - "value": "{18ed919b-8b6d-42ae-9090-768f6f72461d}" - }, - { - "choice_index": 34, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 5", - "value": "{87ba0f94-f9de-4ddc-b838-651981028955}" - }, - { - "choice_index": 35, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 6", - "value": "{5b611904-f48b-4afd-b228-d51b5220b3ce}" - }, - { - "choice_index": 36, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 7", - "value": "{5b1576da-4167-41d8-bfd4-4ed1bb517164}" - }, - { - "choice_index": 37, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 8", - "value": "{3eb0a79d-db20-46fa-869b-b2b192799378}" - }, - { - "choice_index": 38, - "display_name": "ASHRAE 189.1-2009 ExtWall Metal ClimateZone 1-3", - "value": "{20339495-9c02-4aed-98b8-38e46dd40704}" - }, - { - "choice_index": 39, - "display_name": "ASHRAE 189.1-2009 ExtWall Metal ClimateZone 4-8", - "value": "{45deceb6-8440-4c0a-b270-4399110a749c}" - }, - { - "choice_index": 40, - "display_name": "ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 1-3", - "value": "{1e9b4d22-f8b7-4c67-b97c-fc2b4da763aa}" - }, - { - "choice_index": 41, - "display_name": "ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 4-8", - "value": "{d650a640-1cc5-4828-a810-50f737f1f667}" - }, - { - "choice_index": 42, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 1-4", - "value": "{4110bc94-a9f5-4d0a-9d8a-869ceb63b4e1}" - }, - { - "choice_index": 43, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 5", - "value": "{8f670027-3ed4-4b2a-95d8-974d5ca3ae3f}" - }, - { - "choice_index": 44, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 6-8", - "value": "{303d0a81-6b01-43fd-b01d-f1c78f98ba9d}" - }, - { - "choice_index": 45, - "display_name": "ASHRAE 90.1-2004 AtticFloor ClimateZone 1-5", - "value": "{cd678e6b-694b-4e0c-b553-6a4b6c6078b7}" - }, - { - "choice_index": 46, - "display_name": "ASHRAE 90.1-2004 AtticFloor ClimateZone 6-8", - "value": "{989760b3-91a7-4184-84c6-e3dc761ca005}" - }, - { - "choice_index": 47, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 1-4", - "value": "{0fa50520-3c17-41b6-b726-52a1146c3c99}" - }, - { - "choice_index": 48, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 5-6", - "value": "{3c24cdd6-28fd-436e-b764-c500e6fc8ce3}" - }, - { - "choice_index": 49, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 7", - "value": "{759086c3-59fa-4ca1-b2ff-3509fd89d1bb}" - }, - { - "choice_index": 50, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 8", - "value": "{e5760002-826e-4c81-b6fd-4a88104e8f61}" - }, - { - "choice_index": 51, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 1", - "value": "{165ebc4a-0c25-4b6e-91cc-51bb5cf737a5}" - }, - { - "choice_index": 52, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 2", - "value": "{114ca435-35f8-4ded-9af9-032a74dc39a6}" - }, - { - "choice_index": 53, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 3-4", - "value": "{19258a75-ff0e-4498-97ec-4c3bd54b1461}" - }, - { - "choice_index": 54, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 5-6", - "value": "{ab4424a7-79cc-45a3-add5-e747b45bf5d5}" - }, - { - "choice_index": 55, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 7", - "value": "{5285e3f9-d922-43e1-8acc-c2c533d4af0f}" - }, - { - "choice_index": 56, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 8", - "value": "{8bb0ff28-1fd4-4a74-91e6-deafc6615039}" - }, - { - "choice_index": 57, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 1-2", - "value": "{693432ff-0f46-45e3-8055-1be58ddc7b77}" - }, - { - "choice_index": 58, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 3-4", - "value": "{c14c4fbc-5bda-483f-b283-fce1eca3a0f0}" - }, - { - "choice_index": 59, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 5", - "value": "{743db2d4-f8c6-42d7-86ab-ed334ce6d11d}" - }, - { - "choice_index": 60, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 6", - "value": "{9aa95e7e-e938-4ee2-9627-037c1c05717c}" - }, - { - "choice_index": 61, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 7", - "value": "{fae8bf90-b4c0-4f73-8467-dc3f72661bf1}" - }, - { - "choice_index": 62, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 8", - "value": "{8f901525-a835-48cb-b3ac-30394a2190eb}" - }, - { - "choice_index": 63, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 1-2", - "value": "{25e2b5b1-dde3-4875-bf4d-d85069dbc826}" - }, - { - "choice_index": 64, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 3", - "value": "{8564f337-21ff-414c-911c-c6d7b4aed473}" - }, - { - "choice_index": 65, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 4", - "value": "{7975e2a4-ce13-4d7f-bdab-9f43a937c765}" - }, - { - "choice_index": 66, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 5-6", - "value": "{1e61fbb2-1d87-4d2a-a40b-b53b7bae77df}" - }, - { - "choice_index": 67, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 7", - "value": "{ae403f70-80c6-424a-bf28-6d1519620264}" - }, - { - "choice_index": 68, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 8", - "value": "{f00f5516-036d-4fed-a958-44d9152cfff8}" - }, - { - "choice_index": 69, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 1", - "value": "{7e8c8909-869e-4787-a454-b022a4615835}" - }, - { - "choice_index": 70, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 2-3", - "value": "{5703b32d-d629-49f3-a312-a6f01194941c}" - }, - { - "choice_index": 71, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 4", - "value": "{9889a8bc-b9f4-446b-9f30-c6c051494f35}" - }, - { - "choice_index": 72, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 5", - "value": "{74589afa-ab24-45eb-aa34-bfe8702995c5}" - }, - { - "choice_index": 73, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 6-8", - "value": "{e1e27d31-4a45-455b-a57b-7dca408ab9ca}" - }, - { - "choice_index": 74, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 1-4", - "value": "{f393b6ee-4ba2-4ede-a275-8533ddc3800e}" - }, - { - "choice_index": 75, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 5-6", - "value": "{9daf37fd-5766-465c-b3a2-80b125b4d3a2}" - }, - { - "choice_index": 76, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 7-8", - "value": "{07ee1c98-49c3-4473-ba13-9c9c30df39fa}" - }, - { - "choice_index": 77, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 3", - "value": "{47fe76c4-d26e-4660-93e2-b03f56c9a678}" - }, - { - "choice_index": 78, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 4-6", - "value": "{aa53823c-b6d9-4808-8453-85e1fc1640d7}" - }, - { - "choice_index": 79, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 8", - "value": "{1d418520-72cc-4b45-a62c-52c570c31a86}" - }, - { - "choice_index": 80, - "display_name": "ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 1-7", - "value": "{ddf48347-e5f1-4b39-a4b5-1529a914b797}" - }, - { - "choice_index": 81, - "display_name": "ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 8", - "value": "{b095b2e2-94eb-40d0-8569-a77051670924}" - }, - { - "choice_index": 82, - "display_name": "Air Wall", - "value": "{41e90204-8ddc-4958-aafa-afebcfff7a36}" - }, - { - "choice_index": 83, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 1", - "value": "{6746aa80-5225-40da-9a77-13e2b4194be6}" - }, - { - "choice_index": 84, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2a", - "value": "{67de0ced-c984-47a9-92fc-24fb61fcbdfa}" - }, - { - "choice_index": 85, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2b", - "value": "{8a5b107b-96a5-4c05-90bb-9b2bb5f0ef65}" - }, - { - "choice_index": 86, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3a", - "value": "{f4727994-ac73-4466-a009-21b9d3ab4139}" - }, - { - "choice_index": 87, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAS", - "value": "{ce7a1e48-e6d6-4dda-8680-bcd7423c2e5e}" - }, - { - "choice_index": 88, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAX", - "value": "{2b9ad167-3cb9-4945-a5c8-a9313fcaf170}" - }, - { - "choice_index": 89, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3c", - "value": "{ed09534d-8a29-43a5-8da2-54c048337381}" - }, - { - "choice_index": 90, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4a", - "value": "{ec817670-9cd5-4f35-8c9e-fcc6176a8585}" - }, - { - "choice_index": 91, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4b", - "value": "{aa514c9e-e060-4a65-919a-5d815038e0dd}" - }, - { - "choice_index": 92, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4c", - "value": "{0e4f384c-1100-47b3-8a53-5c798aad6154}" - }, - { - "choice_index": 93, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5a", - "value": "{9db9bca5-8737-4f22-95ad-12c8b3f552f8}" - }, - { - "choice_index": 94, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5b", - "value": "{6a59185f-3513-4391-88c6-dcc56ed8368c}" - }, - { - "choice_index": 95, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6a", - "value": "{2f20ebc3-b630-4900-9af1-6c7a0693fa10}" - }, - { - "choice_index": 96, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6b", - "value": "{b719f186-aab6-499e-a66a-809b2165c93c}" - }, - { - "choice_index": 97, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 7", - "value": "{d7e81209-6472-4f2f-8526-6d5be298721a}" - }, - { - "choice_index": 98, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 8", - "value": "{c804c4cd-309a-4f0a-84e4-c9668ca255ef}" - }, - { - "choice_index": 99, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 1", - "value": "{e44fdced-5361-4f65-bf18-3b2e0a61fdeb}" - }, - { - "choice_index": 100, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 2a", - "value": "{21d08ce3-2619-42b2-a66e-49d69db131df}" - }, - { - "choice_index": 101, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 2b", - "value": "{0c079479-b0e4-4406-bb4a-82037a757660}" - }, - { - "choice_index": 102, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3a", - "value": "{99d1add8-3054-4f81-ab6d-7f871cccd091}" - }, - { - "choice_index": 103, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAS", - "value": "{8624534a-307e-4c1b-b355-ce831e50a47c}" - }, - { - "choice_index": 104, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAX", - "value": "{6d442e01-ddc7-4965-8033-b7470a7f42fc}" - }, - { - "choice_index": 105, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3c", - "value": "{19b05f1b-19f4-404c-9015-0795af73dc4e}" - }, - { - "choice_index": 106, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4a", - "value": "{b1efc8ad-52f8-44fc-9ff2-32fe8091784b}" - }, - { - "choice_index": 107, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4b", - "value": "{88fbc67b-f8d9-416c-9a75-4f425f038914}" - }, - { - "choice_index": 108, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4c", - "value": "{d0057c0a-a9fb-41ac-a981-f54367b3b63c}" - }, - { - "choice_index": 109, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 5a", - "value": "{39008a65-a85d-4c44-ba66-1c02375ed93d}" - }, - { - "choice_index": 110, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 5b", - "value": "{3cdb8067-edd7-4ce2-b585-002e162c6550}" - }, - { - "choice_index": 111, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 6a", - "value": "{a9817b30-15bf-4ddc-bc8e-b850a65a3070}" - }, - { - "choice_index": 112, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 6b", - "value": "{24d42982-8445-4d5f-b78f-92cc3c953005}" - }, - { - "choice_index": 113, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 7", - "value": "{6cd3fce7-f6a7-4521-9701-d37a843b2342}" - }, - { - "choice_index": 114, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 8", - "value": "{2cd34f80-65b3-449a-b146-eca1ec0ff57d}" - }, - { - "choice_index": 115, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 1", - "value": "{0eaaf3ab-7389-45f7-a23c-0834161d3fb0}" - }, - { - "choice_index": 116, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 2a", - "value": "{9050c860-ccfe-4073-92ce-06521d1598c9}" - }, - { - "choice_index": 117, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 2b", - "value": "{b7df3f6f-8db7-4901-ba73-5fb897468587}" - }, - { - "choice_index": 118, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3a", - "value": "{8277a688-2a06-46fb-a8c0-f571fa1c371c}" - }, - { - "choice_index": 119, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAS", - "value": "{4d3a990b-f472-4098-9db8-452f0d5591ec}" - }, - { - "choice_index": 120, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAX", - "value": "{8aa397c8-aaa2-4d79-9733-7cc01d8ce81f}" - }, - { - "choice_index": 121, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3c", - "value": "{63bc5e5a-1783-4997-92cc-11432dd9ea97}" - }, - { - "choice_index": 122, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4a", - "value": "{2bff44b5-75d1-4af4-ab00-c5c0711cb912}" - }, - { - "choice_index": 123, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4b", - "value": "{10e4275d-80d3-4757-bfa6-1bc8e0da0350}" - }, - { - "choice_index": 124, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4c", - "value": "{f393a212-8bfa-43f0-820e-163878adeced}" - }, - { - "choice_index": 125, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 5a", - "value": "{a3c2dfd9-ce3f-4384-9e51-a3d7a76a5d3f}" - }, - { - "choice_index": 126, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 5b", - "value": "{909f9c4c-3fec-4706-b955-579b781ae14e}" - }, - { - "choice_index": 127, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 6a", - "value": "{46c58699-3cfd-4472-b18c-e0127de8426c}" - }, - { - "choice_index": 128, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 6b", - "value": "{ccea3e85-7437-4102-9334-c1a71c399e4f}" - }, - { - "choice_index": 129, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 7", - "value": "{c1a95633-7a44-4b7c-9edb-9dddc0fb8425}" - }, - { - "choice_index": 130, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 8", - "value": "{8349efd9-b5d5-43b5-a247-8c53be3151c6}" - }, - { - "choice_index": 131, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 1", - "value": "{c4bcceea-479f-4a47-81ef-9e5e09f3374b}" - }, - { - "choice_index": 132, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 2a", - "value": "{9f190b47-7b6b-471c-ad18-5c0d64f83d34}" - }, - { - "choice_index": 133, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 2b", - "value": "{69340ca0-44c3-45a1-9b0c-b6ebcf64a730}" - }, - { - "choice_index": 134, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3a", - "value": "{a836bf82-ecf0-4c83-be16-8c520578ea53}" - }, - { - "choice_index": 135, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAS", - "value": "{adea5e6c-d15c-40bd-91a2-cf972f2c5bf6}" - }, - { - "choice_index": 136, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAX", - "value": "{7f05787b-4dd1-4b87-aa25-f25b6b8d19cb}" - }, - { - "choice_index": 137, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3c", - "value": "{a5835a61-4d06-4b07-a718-1c563dc6d3b7}" - }, - { - "choice_index": 138, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4a", - "value": "{b7f6ba6e-da07-4207-a32d-3919cd253da6}" - }, - { - "choice_index": 139, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4b", - "value": "{bee8ddc2-7c4c-49b8-b37f-e75a1c810396}" - }, - { - "choice_index": 140, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4c-5a", - "value": "{f57fb29e-6921-47e1-b7c1-2caca82642e3}" - }, - { - "choice_index": 141, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 5b", - "value": "{ad51ccbb-ca21-4460-8bd1-87ccc5458ee4}" - }, - { - "choice_index": 142, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 6a", - "value": "{76e68b8b-4834-45b0-a037-56f08336119a}" - }, - { - "choice_index": 143, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 6b", - "value": "{559763bb-3d1b-4463-9ac1-caaa6d0736e9}" - }, - { - "choice_index": 144, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 7", - "value": "{d0f44314-4750-4f01-a4dd-4a88035de3d5}" - }, - { - "choice_index": 145, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 8", - "value": "{e4c46517-d200-4a5a-94ea-84adf49cf08f}" - }, - { - "choice_index": 146, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 1", - "value": "{4e0862ac-492a-4fb3-8ee0-c77deee231d5}" - }, - { - "choice_index": 147, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 2a", - "value": "{1409e128-9504-4aaf-9806-0dd68e479299}" - }, - { - "choice_index": 148, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 2b", - "value": "{93cb971b-7ce2-45ec-a87f-ddb079b66665}" - }, - { - "choice_index": 149, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3a", - "value": "{b7e0dd8b-cd7f-4a05-84ce-65db621ea63f}" - }, - { - "choice_index": 150, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAS", - "value": "{9e2628a0-4805-402f-aabd-0cf3ee109465}" - }, - { - "choice_index": 151, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAX", - "value": "{ad1e452d-be49-4049-9efa-12e254092751}" - }, - { - "choice_index": 152, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3c", - "value": "{36d0363a-4295-4967-9003-564c24bf7bf3}" - }, - { - "choice_index": 153, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4a", - "value": "{222f1712-c952-4743-8fb4-a46b3a9d2bc8}" - }, - { - "choice_index": 154, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4b", - "value": "{c86c6541-c4ac-4fc4-901f-dada76a36122}" - }, - { - "choice_index": 155, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4c", - "value": "{9900caf8-b244-4b1d-8bd3-9708592a7bd1}" - }, - { - "choice_index": 156, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 5", - "value": "{4e7bc486-3d83-4bc0-aed0-c39c35df9024}" - }, - { - "choice_index": 157, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 6a", - "value": "{c2cd5e12-df10-4764-b600-034d049360fb}" - }, - { - "choice_index": 158, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 6b", - "value": "{fa626a46-e626-4aeb-b080-21a22121908d}" - }, - { - "choice_index": 159, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 7", - "value": "{d8f3e463-1102-4bae-8275-d56fd7b7f4dc}" - }, - { - "choice_index": 160, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 8", - "value": "{8075ca6b-0308-4406-b4ab-05f0ab1b2cf2}" - }, - { - "choice_index": 161, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 1", - "value": "{ef809b35-2a9d-4982-b8f3-62fc12f6582e}" - }, - { - "choice_index": 162, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2a", - "value": "{ff1ef0ae-2bf1-4c1f-968d-e7f96eafa8cb}" - }, - { - "choice_index": 163, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2b", - "value": "{0731e402-1c43-429a-af11-6d80dde43970}" - }, - { - "choice_index": 164, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3a", - "value": "{133a4042-c42b-46de-bfb8-794dff10d61a}" - }, - { - "choice_index": 165, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAS", - "value": "{1ef3457a-356d-495b-97f2-020b7f5588e7}" - }, - { - "choice_index": 166, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAX", - "value": "{05480032-7251-418b-b5f9-9c81dd080a2c}" - }, - { - "choice_index": 167, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3c", - "value": "{add75a0d-d383-4bf6-850a-dc38e00d6e61}" - }, - { - "choice_index": 168, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4a", - "value": "{aa1ca496-2daa-4f09-8a52-386e66022c2d}" - }, - { - "choice_index": 169, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4b", - "value": "{6510e780-bed0-4da2-b2af-2f7b97aac0cc}" - }, - { - "choice_index": 170, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4c", - "value": "{f3879aa7-8389-40b9-9365-b8c6792e856f}" - }, - { - "choice_index": 171, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 5", - "value": "{f10eb590-a0a7-4b40-851c-0ec1415c4ac9}" - }, - { - "choice_index": 172, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6a", - "value": "{a5665523-873f-4992-8423-0fbc7dc062ee}" - }, - { - "choice_index": 173, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6b", - "value": "{aae388a0-d135-4dd6-ba0f-aa443c4ca8ba}" - }, - { - "choice_index": 174, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 7", - "value": "{82975882-7278-4f6f-afc9-98f1641db383}" - }, - { - "choice_index": 175, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 8", - "value": "{79a528b6-93f8-4eee-9da6-38dec1fd035b}" - }, - { - "choice_index": 176, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 1", - "value": "{eb2189d5-9a56-4f58-92b3-d2541c10dce8}" - }, - { - "choice_index": 177, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2a", - "value": "{0246ced9-4980-4812-96fd-9a44d2d7a48d}" - }, - { - "choice_index": 178, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2b", - "value": "{c2a848b1-6daa-47f8-a07e-d52b61c372da}" - }, - { - "choice_index": 179, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3a", - "value": "{092d2b5a-d21e-4ff5-9804-e5139507611b}" - }, - { - "choice_index": 180, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAS", - "value": "{46b91df6-0dfe-4807-8e0f-5432140cc796}" - }, - { - "choice_index": 181, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAX", - "value": "{11e7cdad-a5ad-474a-9ea4-ab03e5dee103}" - }, - { - "choice_index": 182, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3c", - "value": "{40c5c71d-f7a5-47c5-817d-60bf0ad4e2b4}" - }, - { - "choice_index": 183, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4a", - "value": "{bdeb08a7-42ff-4959-b44f-05dda43eee5a}" - }, - { - "choice_index": 184, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4b", - "value": "{b9ac9f75-4f8c-484f-9f0b-f91f3df44f5f}" - }, - { - "choice_index": 185, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4c", - "value": "{e53e480f-58a9-422f-b7ae-15ce3c37e9dc}" - }, - { - "choice_index": 186, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 5", - "value": "{b85f7456-c87f-4c4c-b967-09678adc0f79}" - }, - { - "choice_index": 187, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6a", - "value": "{d3dfd27a-7896-499b-a15e-542f9cd9e2a3}" - }, - { - "choice_index": 188, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6b", - "value": "{0f36580e-cac0-43cc-8c52-deff07cd1d32}" - }, - { - "choice_index": 189, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 7", - "value": "{7744de9e-3063-4510-ac21-62c542e77cd5}" - }, - { - "choice_index": 190, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 8", - "value": "{27ce314f-ce79-4436-8e21-a79e529361e9}" - }, - { - "choice_index": 191, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 1-3", - "value": "{142e4347-8739-4f16-82dd-8971df6ff0ee}" - }, - { - "choice_index": 192, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4a", - "value": "{540be8db-f63a-48a0-80bf-316ed7bb19df}" - }, - { - "choice_index": 193, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4b", - "value": "{eb8472fe-f574-4bbd-bd1d-90a261597c36}" - }, - { - "choice_index": 194, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4c", - "value": "{5a1f761d-4a54-406a-ac93-865f3f7365d2}" - }, - { - "choice_index": 195, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5a", - "value": "{d6ef5895-b6ad-4a07-b1f3-141b43c07eef}" - }, - { - "choice_index": 196, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5b", - "value": "{f03d8060-7c06-4214-b63f-a29e4897094c}" - }, - { - "choice_index": 197, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 6", - "value": "{07905031-5d9d-4fc0-804e-118b93a54369}" - }, - { - "choice_index": 198, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 7", - "value": "{ad130c26-4100-4e95-b4f4-a3d4d4394063}" - }, - { - "choice_index": 199, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 8", - "value": "{36dc01e7-443b-4b46-a46b-5b576ec585bf}" - }, - { - "choice_index": 200, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 1-3", - "value": "{b58dbdc6-719f-42ca-bcaa-e8a6675a82ef}" - }, - { - "choice_index": 201, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4a", - "value": "{60f147c0-65bd-4463-972b-4a7ecfd275cd}" - }, - { - "choice_index": 202, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4b", - "value": "{e0797daa-8faf-4c75-9ea0-51a1c7294f16}" - }, - { - "choice_index": 203, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4c", - "value": "{2af00d1c-686f-45a5-910f-e2db6cf5df40}" - }, - { - "choice_index": 204, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 5a", - "value": "{d0f9a9ad-125e-4224-a12c-3cbaa48ad8de}" - }, - { - "choice_index": 205, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 5b", - "value": "{4340ebc4-ce3f-459e-93de-70a1b3f25258}" - }, - { - "choice_index": 206, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 6", - "value": "{2b550db8-333f-4844-b421-a86dca37b73d}" - }, - { - "choice_index": 207, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 7", - "value": "{897beb5c-d546-4ee9-8ab1-ad416c9c6f8e}" - }, - { - "choice_index": 208, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 8", - "value": "{8a3262cd-f1fa-41eb-bbaa-7b1ba0cf2f60}" - }, - { - "choice_index": 209, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 1-2", - "value": "{d353edf7-fc83-4ac2-b098-046fdd385761}" - }, - { - "choice_index": 210, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3a", - "value": "{dc7b0ce7-12c4-4b8e-a41e-18807392eff2}" - }, - { - "choice_index": 211, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3b", - "value": "{4dd9b36f-834a-4f15-98c4-6e3492c0aeea}" - }, - { - "choice_index": 212, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3c", - "value": "{6c7defac-af05-4830-bd27-f4eeed4d72bc}" - }, - { - "choice_index": 213, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4a", - "value": "{6dbc7b5a-e6ba-4b9b-a2e7-5b58a997affe}" - }, - { - "choice_index": 214, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4b", - "value": "{d732dd77-0b9e-45a4-b9ac-94487278419d}" - }, - { - "choice_index": 215, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4c", - "value": "{e2e549cb-fe98-4ce4-a52b-644f2c5a48bf}" - }, - { - "choice_index": 216, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 5a", - "value": "{a9fcbbc5-2705-4093-9863-d0d9d699831c}" - }, - { - "choice_index": 217, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 5b", - "value": "{aaddbe00-3c02-4b8c-ac10-adf0179fe422}" - }, - { - "choice_index": 218, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 6", - "value": "{112679d0-e9fb-4e4f-b6d8-b0a86c219191}" - }, - { - "choice_index": 219, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 7", - "value": "{ee3d224e-2c00-4f77-b096-0183ec1f60c2}" - }, - { - "choice_index": 220, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 8", - "value": "{d9ab5698-4d97-463a-bcad-0000700b812a}" - }, - { - "choice_index": 221, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 1-2", - "value": "{a00b1f61-42c4-4f33-96ae-c7a5f21e32d6}" - }, - { - "choice_index": 222, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3a", - "value": "{3a3f1c02-95b0-49c9-b9a1-e38eeb4151dc}" - }, - { - "choice_index": 223, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3b", - "value": "{4258cb62-b70f-451b-9d5d-c5894feb0e6d}" - }, - { - "choice_index": 224, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3c", - "value": "{9924e9d6-8e2e-4823-9a12-1a29007ddfd7}" - }, - { - "choice_index": 225, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4a", - "value": "{031e217b-706a-4775-b021-aa731bf251e7}" - }, - { - "choice_index": 226, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4b", - "value": "{8ff192e6-e5f3-4416-9aae-090511a04bdd}" - }, - { - "choice_index": 227, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4c", - "value": "{04d02889-c852-401c-ad55-bf61702b90df}" - }, - { - "choice_index": 228, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 5a", - "value": "{cdb6130c-283d-4621-92fe-b58204908e56}" - }, - { - "choice_index": 229, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 5b", - "value": "{b41d64a3-6a55-4dbd-adfb-8970462589f8}" - }, - { - "choice_index": 230, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 6", - "value": "{1b537b5f-00e2-4175-a586-19da3ec15ff1}" - }, - { - "choice_index": 231, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 7", - "value": "{974d2587-f08d-4ab3-a29f-742bd9ac9b1c}" - }, - { - "choice_index": 232, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 8", - "value": "{4880caca-2177-4a4e-9e95-32258fb9b7de}" - }, - { - "choice_index": 233, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 1-3b", - "value": "{6325222d-79d8-4734-82c0-598663f7f2c6}" - }, - { - "choice_index": 234, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 3c", - "value": "{f2bec73e-53a4-409b-aef1-e9e453b1036a}" - }, - { - "choice_index": 235, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4a", - "value": "{73d7211a-cf12-41cb-bf92-8f0a0739ac94}" - }, - { - "choice_index": 236, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4b", - "value": "{e53b2675-50ad-441a-8b79-6902d7ba81fb}" - }, - { - "choice_index": 237, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4c", - "value": "{39644664-a9a1-417a-b9db-7b2c2b5f2148}" - }, - { - "choice_index": 238, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 5a", - "value": "{1dd9ad93-06e4-4ed2-9d44-f0681f05c85e}" - }, - { - "choice_index": 239, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 5b", - "value": "{846f380c-b562-459d-a818-bf79ff3c9383}" - }, - { - "choice_index": 240, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 6", - "value": "{94142431-4727-4ea4-88d6-f506930e4db4}" - }, - { - "choice_index": 241, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 7", - "value": "{397278fe-cd4f-4ea2-afe1-58b6156944e6}" - }, - { - "choice_index": 242, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 8", - "value": "{95c2c635-30ae-4fa7-b404-31a8b478c154}" - } - ], - "display_name": "Optionally Choose a Construction for the Overhangs.", - "domain_type": "Enumeration", - "name": "construction", - "required": false, - "type": "Choice", - "uuid": "cb7f98c2-0345-40e1-89c7-a1e5be11a438", - "version_uuid": "e155256d-c949-486c-9733-3ef28b4809cf" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddOverhangsByProjectionFactor", - "bcl_measure_uuid": "1e29e117-3916-4368-b24d-75da54045956", - "bcl_measure_version_uuid": "a0aa02d4-7328-4462-a5af-cfe6dedc64da", - "description": "Add overhangs by projection factor to specified windows. The projection factor is the overhang depth divided by the window height. This can be applied to windows by the closest cardinal direction. If baseline model contains overhangs made by this measure, they will be replaced. Optionally the measure can delete any pre-existing space shading surfaces.", - "display_name": "Add Overhangs by Projection Factor 0.2 South", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Add Overhangs by Projection Factor 0.2 South", - "output_file_type": "OSM", - "uuid": "24b57cb2-e33d-46bb-8336-c283bfdcaf88", - "version_uuid": "2da22a75-8f29-4198-9a33-aacd848f4c25" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 0.5, - "display_name": "Projection Factor (overhang depth / window height)", - "domain_type": "Interval", - "name": "projection_factor", - "required": true, - "type": "Double", - "uuid": "44887a4b-5627-492f-901d-7458c8e14d69", - "value": 0.25, - "version_uuid": "aff78756-dd5f-43b0-9b92-c8da732dab32" - }, - { - "argument_index": 1, - "choices": [ - { - "choice_index": 0, - "display_name": "North", - "value": "North" - }, - { - "choice_index": 1, - "display_name": "East", - "value": "East" - }, - { - "choice_index": 2, - "display_name": "South", - "value": "South" - }, - { - "choice_index": 3, - "display_name": "West", - "value": "West" - } - ], - "default_value": "South", - "display_name": "Cardinal Direction", - "domain_type": "Enumeration", - "name": "facade", - "required": true, - "type": "Choice", - "uuid": "0a9dca30-1fd3-4fcf-a51a-08242b058a58", - "version_uuid": "376e8357-b7bb-4053-9e01-d781238a24a8" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Remove Existing Space Shading Surfaces From the Model?", - "domain_type": "Enumeration", - "name": "remove_ext_space_shading", - "required": true, - "type": "Boolean", - "uuid": "2e5cc245-acc2-4648-b8b4-574ced82bdf9", - "version_uuid": "97a7fce0-479c-4cb2-a918-62ad2a918642" - }, - { - "argument_index": 3, - "choices": [ - { - "choice_index": 0, - "display_name": "000 AtticRoof ClimateZone 1-8", - "value": "{cf81dd0b-fee6-4952-8177-441f534451c5}" - }, - { - "choice_index": 1, - "display_name": "000 ExtSlab 4in ClimateZone 1-8", - "value": "{214c9f82-e34e-4143-bacd-dd958ef63823}" - }, - { - "choice_index": 2, - "display_name": "000 ExtSlab 8in ClimateZone 1-8", - "value": "{57781d80-14d1-470a-82ca-90a031bce305}" - }, - { - "choice_index": 3, - "display_name": "000 ExtSlabCarpet 4in ClimateZone 1-8", - "value": "{b88691a7-e9b0-4ff0-87e4-858b5b50b56c}" - }, - { - "choice_index": 4, - "display_name": "000 ExtSlabCarpet 8in ClimateZone 1-8", - "value": "{a8bade1f-a519-47be-813c-f8b2d74acf22}" - }, - { - "choice_index": 5, - "display_name": "000 Exterior Door", - "value": "{fb30531d-9266-4c91-885f-0ec2fb5482e6}" - }, - { - "choice_index": 6, - "display_name": "000 Exterior Floor", - "value": "{0709dfa1-4397-40ff-af32-b9dd823630b7}" - }, - { - "choice_index": 7, - "display_name": "000 Exterior Roof", - "value": "{9d0a3f5f-8569-4993-a529-4019d04d875f}" - }, - { - "choice_index": 8, - "display_name": "000 Exterior Wall", - "value": "{0963de92-4b23-49d3-a415-68cb0a85069a}" - }, - { - "choice_index": 9, - "display_name": "000 Interior Ceiling", - "value": "{224cc0f9-077e-428d-bc7c-ac2fb3dd8241}" - }, - { - "choice_index": 10, - "display_name": "000 Interior Door", - "value": "{8a7ba072-82ca-4f77-af03-922fb4e52b19}" - }, - { - "choice_index": 11, - "display_name": "000 Interior Floor", - "value": "{128499cd-b542-41a5-9306-748b7a658703}" - }, - { - "choice_index": 12, - "display_name": "000 Interior Partition", - "value": "{7637dc40-61ee-48cd-b120-3672a87ad41e}" - }, - { - "choice_index": 13, - "display_name": "000 Interior Wall", - "value": "{bebe4adc-f849-444f-9b2f-fed9b735e166}" - }, - { - "choice_index": 14, - "display_name": "ASHRAE 189.1-2009 AtticFloor ClimateZone 1-8", - "value": "{9c7fa3f3-0827-4f81-a2c1-adf85b6f7816}" - }, - { - "choice_index": 15, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 1", - "value": "{6dc53208-9c99-464e-bf88-a1383ffdef91}" - }, - { - "choice_index": 16, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 2-5", - "value": "{5cb0b684-57aa-4edc-abf4-f11bf072de56}" - }, - { - "choice_index": 17, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 6", - "value": "{a9a155dc-5d71-44eb-af43-f433f38004ee}" - }, - { - "choice_index": 18, - "display_name": "ASHRAE 189.1-2009 ExtRoof IEAD ClimateZone 7-8", - "value": "{e8d6a9b2-bcba-49bd-a499-dea295fd2abf}" - }, - { - "choice_index": 19, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 1", - "value": "{4c4ebd4c-3777-4760-a008-a9bbc8b6dcd2}" - }, - { - "choice_index": 20, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 2-5", - "value": "{e7f18c66-d8e7-4381-ba79-7532aeae2bab}" - }, - { - "choice_index": 21, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 6", - "value": "{75e10288-a996-4d56-901a-43b000538ac5}" - }, - { - "choice_index": 22, - "display_name": "ASHRAE 189.1-2009 ExtRoof Metal ClimateZone 7-8", - "value": "{f8bb3ee5-2e3e-4a03-b2c4-b66e613f118e}" - }, - { - "choice_index": 23, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 1", - "value": "{8bd7b35f-5189-44c4-a6af-04ab5ad43768}" - }, - { - "choice_index": 24, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 2", - "value": "{4f514d75-d8fc-4639-a52f-1305c2dc5562}" - }, - { - "choice_index": 25, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 3", - "value": "{c9d0905b-1ab4-4f91-9133-f936899e28e7}" - }, - { - "choice_index": 26, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 4", - "value": "{e7facf61-7232-450f-b723-46441eb9963a}" - }, - { - "choice_index": 27, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 5", - "value": "{897c0610-358a-4a46-ab03-75e0f772739d}" - }, - { - "choice_index": 28, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 6", - "value": "{ef598e5b-f520-4f97-8815-2430b14e227e}" - }, - { - "choice_index": 29, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone 7-8", - "value": "{b8f00d24-7eb9-4651-b152-c3455a2fb940}" - }, - { - "choice_index": 30, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 1", - "value": "{8f731aa0-e04f-43a6-a6b5-032fe6ab3ce9}" - }, - { - "choice_index": 31, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 2", - "value": "{457eaf48-60ff-4336-a4a8-e7c9fc015126}" - }, - { - "choice_index": 32, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 3", - "value": "{d567d3f3-aa8b-4bc7-9ec9-ce45bf024c6b}" - }, - { - "choice_index": 33, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 4", - "value": "{18ed919b-8b6d-42ae-9090-768f6f72461d}" - }, - { - "choice_index": 34, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 5", - "value": "{87ba0f94-f9de-4ddc-b838-651981028955}" - }, - { - "choice_index": 35, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 6", - "value": "{5b611904-f48b-4afd-b228-d51b5220b3ce}" - }, - { - "choice_index": 36, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 7", - "value": "{5b1576da-4167-41d8-bfd4-4ed1bb517164}" - }, - { - "choice_index": 37, - "display_name": "ASHRAE 189.1-2009 ExtWall Mass ClimateZone alt-res 8", - "value": "{3eb0a79d-db20-46fa-869b-b2b192799378}" - }, - { - "choice_index": 38, - "display_name": "ASHRAE 189.1-2009 ExtWall Metal ClimateZone 1-3", - "value": "{20339495-9c02-4aed-98b8-38e46dd40704}" - }, - { - "choice_index": 39, - "display_name": "ASHRAE 189.1-2009 ExtWall Metal ClimateZone 4-8", - "value": "{45deceb6-8440-4c0a-b270-4399110a749c}" - }, - { - "choice_index": 40, - "display_name": "ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 1-3", - "value": "{1e9b4d22-f8b7-4c67-b97c-fc2b4da763aa}" - }, - { - "choice_index": 41, - "display_name": "ASHRAE 189.1-2009 ExtWall SteelFrame ClimateZone 4-8", - "value": "{d650a640-1cc5-4828-a810-50f737f1f667}" - }, - { - "choice_index": 42, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 1-4", - "value": "{4110bc94-a9f5-4d0a-9d8a-869ceb63b4e1}" - }, - { - "choice_index": 43, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 5", - "value": "{8f670027-3ed4-4b2a-95d8-974d5ca3ae3f}" - }, - { - "choice_index": 44, - "display_name": "ASHRAE 189.1-2009 ExtWall WoodFrame ClimateZone 6-8", - "value": "{303d0a81-6b01-43fd-b01d-f1c78f98ba9d}" - }, - { - "choice_index": 45, - "display_name": "ASHRAE 90.1-2004 AtticFloor ClimateZone 1-5", - "value": "{cd678e6b-694b-4e0c-b553-6a4b6c6078b7}" - }, - { - "choice_index": 46, - "display_name": "ASHRAE 90.1-2004 AtticFloor ClimateZone 6-8", - "value": "{989760b3-91a7-4184-84c6-e3dc761ca005}" - }, - { - "choice_index": 47, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 1-4", - "value": "{0fa50520-3c17-41b6-b726-52a1146c3c99}" - }, - { - "choice_index": 48, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 5-6", - "value": "{3c24cdd6-28fd-436e-b764-c500e6fc8ce3}" - }, - { - "choice_index": 49, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 7", - "value": "{759086c3-59fa-4ca1-b2ff-3509fd89d1bb}" - }, - { - "choice_index": 50, - "display_name": "ASHRAE 90.1-2004 ExtRoof IEAD ClimateZone 8", - "value": "{e5760002-826e-4c81-b6fd-4a88104e8f61}" - }, - { - "choice_index": 51, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 1", - "value": "{165ebc4a-0c25-4b6e-91cc-51bb5cf737a5}" - }, - { - "choice_index": 52, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 2", - "value": "{114ca435-35f8-4ded-9af9-032a74dc39a6}" - }, - { - "choice_index": 53, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 3-4", - "value": "{19258a75-ff0e-4498-97ec-4c3bd54b1461}" - }, - { - "choice_index": 54, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 5-6", - "value": "{ab4424a7-79cc-45a3-add5-e747b45bf5d5}" - }, - { - "choice_index": 55, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 7", - "value": "{5285e3f9-d922-43e1-8acc-c2c533d4af0f}" - }, - { - "choice_index": 56, - "display_name": "ASHRAE 90.1-2004 ExtRoof Metal ClimateZone 8", - "value": "{8bb0ff28-1fd4-4a74-91e6-deafc6615039}" - }, - { - "choice_index": 57, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 1-2", - "value": "{693432ff-0f46-45e3-8055-1be58ddc7b77}" - }, - { - "choice_index": 58, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 3-4", - "value": "{c14c4fbc-5bda-483f-b283-fce1eca3a0f0}" - }, - { - "choice_index": 59, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 5", - "value": "{743db2d4-f8c6-42d7-86ab-ed334ce6d11d}" - }, - { - "choice_index": 60, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 6", - "value": "{9aa95e7e-e938-4ee2-9627-037c1c05717c}" - }, - { - "choice_index": 61, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 7", - "value": "{fae8bf90-b4c0-4f73-8467-dc3f72661bf1}" - }, - { - "choice_index": 62, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone 8", - "value": "{8f901525-a835-48cb-b3ac-30394a2190eb}" - }, - { - "choice_index": 63, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 1-2", - "value": "{25e2b5b1-dde3-4875-bf4d-d85069dbc826}" - }, - { - "choice_index": 64, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 3", - "value": "{8564f337-21ff-414c-911c-c6d7b4aed473}" - }, - { - "choice_index": 65, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 4", - "value": "{7975e2a4-ce13-4d7f-bdab-9f43a937c765}" - }, - { - "choice_index": 66, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 5-6", - "value": "{1e61fbb2-1d87-4d2a-a40b-b53b7bae77df}" - }, - { - "choice_index": 67, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 7", - "value": "{ae403f70-80c6-424a-bf28-6d1519620264}" - }, - { - "choice_index": 68, - "display_name": "ASHRAE 90.1-2004 ExtWall Mass ClimateZone alt-res 8", - "value": "{f00f5516-036d-4fed-a958-44d9152cfff8}" - }, - { - "choice_index": 69, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 1", - "value": "{7e8c8909-869e-4787-a454-b022a4615835}" - }, - { - "choice_index": 70, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 2-3", - "value": "{5703b32d-d629-49f3-a312-a6f01194941c}" - }, - { - "choice_index": 71, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 4", - "value": "{9889a8bc-b9f4-446b-9f30-c6c051494f35}" - }, - { - "choice_index": 72, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 5", - "value": "{74589afa-ab24-45eb-aa34-bfe8702995c5}" - }, - { - "choice_index": 73, - "display_name": "ASHRAE 90.1-2004 ExtWall Metal ClimateZone 6-8", - "value": "{e1e27d31-4a45-455b-a57b-7dca408ab9ca}" - }, - { - "choice_index": 74, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 1-4", - "value": "{f393b6ee-4ba2-4ede-a275-8533ddc3800e}" - }, - { - "choice_index": 75, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 5-6", - "value": "{9daf37fd-5766-465c-b3a2-80b125b4d3a2}" - }, - { - "choice_index": 76, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone 7-8", - "value": "{07ee1c98-49c3-4473-ba13-9c9c30df39fa}" - }, - { - "choice_index": 77, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 3", - "value": "{47fe76c4-d26e-4660-93e2-b03f56c9a678}" - }, - { - "choice_index": 78, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 4-6", - "value": "{aa53823c-b6d9-4808-8453-85e1fc1640d7}" - }, - { - "choice_index": 79, - "display_name": "ASHRAE 90.1-2004 ExtWall SteelFrame ClimateZone alt-res 8", - "value": "{1d418520-72cc-4b45-a62c-52c570c31a86}" - }, - { - "choice_index": 80, - "display_name": "ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 1-7", - "value": "{ddf48347-e5f1-4b39-a4b5-1529a914b797}" - }, - { - "choice_index": 81, - "display_name": "ASHRAE 90.1-2004 ExtWall WoodFrame ClimateZone 8", - "value": "{b095b2e2-94eb-40d0-8569-a77051670924}" - }, - { - "choice_index": 82, - "display_name": "Air Wall", - "value": "{41e90204-8ddc-4958-aafa-afebcfff7a36}" - }, - { - "choice_index": 83, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 1", - "value": "{6746aa80-5225-40da-9a77-13e2b4194be6}" - }, - { - "choice_index": 84, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2a", - "value": "{67de0ced-c984-47a9-92fc-24fb61fcbdfa}" - }, - { - "choice_index": 85, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 2b", - "value": "{8a5b107b-96a5-4c05-90bb-9b2bb5f0ef65}" - }, - { - "choice_index": 86, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3a", - "value": "{f4727994-ac73-4466-a009-21b9d3ab4139}" - }, - { - "choice_index": 87, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAS", - "value": "{ce7a1e48-e6d6-4dda-8680-bcd7423c2e5e}" - }, - { - "choice_index": 88, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3b LAX", - "value": "{2b9ad167-3cb9-4945-a5c8-a9313fcaf170}" - }, - { - "choice_index": 89, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 3c", - "value": "{ed09534d-8a29-43a5-8da2-54c048337381}" - }, - { - "choice_index": 90, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4a", - "value": "{ec817670-9cd5-4f35-8c9e-fcc6176a8585}" - }, - { - "choice_index": 91, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4b", - "value": "{aa514c9e-e060-4a65-919a-5d815038e0dd}" - }, - { - "choice_index": 92, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 4c", - "value": "{0e4f384c-1100-47b3-8a53-5c798aad6154}" - }, - { - "choice_index": 93, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5a", - "value": "{9db9bca5-8737-4f22-95ad-12c8b3f552f8}" - }, - { - "choice_index": 94, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 5b", - "value": "{6a59185f-3513-4391-88c6-dcc56ed8368c}" - }, - { - "choice_index": 95, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6a", - "value": "{2f20ebc3-b630-4900-9af1-6c7a0693fa10}" - }, - { - "choice_index": 96, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 6b", - "value": "{b719f186-aab6-499e-a66a-809b2165c93c}" - }, - { - "choice_index": 97, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 7", - "value": "{d7e81209-6472-4f2f-8526-6d5be298721a}" - }, - { - "choice_index": 98, - "display_name": "CBECS 1980-2004 ExtRoof AtticFloor ClimateZone 8", - "value": "{c804c4cd-309a-4f0a-84e4-c9668ca255ef}" - }, - { - "choice_index": 99, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 1", - "value": "{e44fdced-5361-4f65-bf18-3b2e0a61fdeb}" - }, - { - "choice_index": 100, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 2a", - "value": "{21d08ce3-2619-42b2-a66e-49d69db131df}" - }, - { - "choice_index": 101, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 2b", - "value": "{0c079479-b0e4-4406-bb4a-82037a757660}" - }, - { - "choice_index": 102, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3a", - "value": "{99d1add8-3054-4f81-ab6d-7f871cccd091}" - }, - { - "choice_index": 103, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAS", - "value": "{8624534a-307e-4c1b-b355-ce831e50a47c}" - }, - { - "choice_index": 104, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3b LAX", - "value": "{6d442e01-ddc7-4965-8033-b7470a7f42fc}" - }, - { - "choice_index": 105, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 3c", - "value": "{19b05f1b-19f4-404c-9015-0795af73dc4e}" - }, - { - "choice_index": 106, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4a", - "value": "{b1efc8ad-52f8-44fc-9ff2-32fe8091784b}" - }, - { - "choice_index": 107, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4b", - "value": "{88fbc67b-f8d9-416c-9a75-4f425f038914}" - }, - { - "choice_index": 108, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 4c", - "value": "{d0057c0a-a9fb-41ac-a981-f54367b3b63c}" - }, - { - "choice_index": 109, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 5a", - "value": "{39008a65-a85d-4c44-ba66-1c02375ed93d}" - }, - { - "choice_index": 110, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 5b", - "value": "{3cdb8067-edd7-4ce2-b585-002e162c6550}" - }, - { - "choice_index": 111, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 6a", - "value": "{a9817b30-15bf-4ddc-bc8e-b850a65a3070}" - }, - { - "choice_index": 112, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 6b", - "value": "{24d42982-8445-4d5f-b78f-92cc3c953005}" - }, - { - "choice_index": 113, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 7", - "value": "{6cd3fce7-f6a7-4521-9701-d37a843b2342}" - }, - { - "choice_index": 114, - "display_name": "CBECS 1980-2004 ExtRoof IEAD ClimateZone 8", - "value": "{2cd34f80-65b3-449a-b146-eca1ec0ff57d}" - }, - { - "choice_index": 115, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 1", - "value": "{0eaaf3ab-7389-45f7-a23c-0834161d3fb0}" - }, - { - "choice_index": 116, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 2a", - "value": "{9050c860-ccfe-4073-92ce-06521d1598c9}" - }, - { - "choice_index": 117, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 2b", - "value": "{b7df3f6f-8db7-4901-ba73-5fb897468587}" - }, - { - "choice_index": 118, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3a", - "value": "{8277a688-2a06-46fb-a8c0-f571fa1c371c}" - }, - { - "choice_index": 119, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAS", - "value": "{4d3a990b-f472-4098-9db8-452f0d5591ec}" - }, - { - "choice_index": 120, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3b LAX", - "value": "{8aa397c8-aaa2-4d79-9733-7cc01d8ce81f}" - }, - { - "choice_index": 121, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 3c", - "value": "{63bc5e5a-1783-4997-92cc-11432dd9ea97}" - }, - { - "choice_index": 122, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4a", - "value": "{2bff44b5-75d1-4af4-ab00-c5c0711cb912}" - }, - { - "choice_index": 123, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4b", - "value": "{10e4275d-80d3-4757-bfa6-1bc8e0da0350}" - }, - { - "choice_index": 124, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 4c", - "value": "{f393a212-8bfa-43f0-820e-163878adeced}" - }, - { - "choice_index": 125, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 5a", - "value": "{a3c2dfd9-ce3f-4384-9e51-a3d7a76a5d3f}" - }, - { - "choice_index": 126, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 5b", - "value": "{909f9c4c-3fec-4706-b955-579b781ae14e}" - }, - { - "choice_index": 127, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 6a", - "value": "{46c58699-3cfd-4472-b18c-e0127de8426c}" - }, - { - "choice_index": 128, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 6b", - "value": "{ccea3e85-7437-4102-9334-c1a71c399e4f}" - }, - { - "choice_index": 129, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 7", - "value": "{c1a95633-7a44-4b7c-9edb-9dddc0fb8425}" - }, - { - "choice_index": 130, - "display_name": "CBECS 1980-2004 ExtRoof Metal ClimateZone 8", - "value": "{8349efd9-b5d5-43b5-a247-8c53be3151c6}" - }, - { - "choice_index": 131, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 1", - "value": "{c4bcceea-479f-4a47-81ef-9e5e09f3374b}" - }, - { - "choice_index": 132, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 2a", - "value": "{9f190b47-7b6b-471c-ad18-5c0d64f83d34}" - }, - { - "choice_index": 133, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 2b", - "value": "{69340ca0-44c3-45a1-9b0c-b6ebcf64a730}" - }, - { - "choice_index": 134, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3a", - "value": "{a836bf82-ecf0-4c83-be16-8c520578ea53}" - }, - { - "choice_index": 135, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAS", - "value": "{adea5e6c-d15c-40bd-91a2-cf972f2c5bf6}" - }, - { - "choice_index": 136, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3b LAX", - "value": "{7f05787b-4dd1-4b87-aa25-f25b6b8d19cb}" - }, - { - "choice_index": 137, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 3c", - "value": "{a5835a61-4d06-4b07-a718-1c563dc6d3b7}" - }, - { - "choice_index": 138, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4a", - "value": "{b7f6ba6e-da07-4207-a32d-3919cd253da6}" - }, - { - "choice_index": 139, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4b", - "value": "{bee8ddc2-7c4c-49b8-b37f-e75a1c810396}" - }, - { - "choice_index": 140, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 4c-5a", - "value": "{f57fb29e-6921-47e1-b7c1-2caca82642e3}" - }, - { - "choice_index": 141, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 5b", - "value": "{ad51ccbb-ca21-4460-8bd1-87ccc5458ee4}" - }, - { - "choice_index": 142, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 6a", - "value": "{76e68b8b-4834-45b0-a037-56f08336119a}" - }, - { - "choice_index": 143, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 6b", - "value": "{559763bb-3d1b-4463-9ac1-caaa6d0736e9}" - }, - { - "choice_index": 144, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 7", - "value": "{d0f44314-4750-4f01-a4dd-4a88035de3d5}" - }, - { - "choice_index": 145, - "display_name": "CBECS 1980-2004 ExtWall Mass ClimateZone 8", - "value": "{e4c46517-d200-4a5a-94ea-84adf49cf08f}" - }, - { - "choice_index": 146, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 1", - "value": "{4e0862ac-492a-4fb3-8ee0-c77deee231d5}" - }, - { - "choice_index": 147, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 2a", - "value": "{1409e128-9504-4aaf-9806-0dd68e479299}" - }, - { - "choice_index": 148, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 2b", - "value": "{93cb971b-7ce2-45ec-a87f-ddb079b66665}" - }, - { - "choice_index": 149, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3a", - "value": "{b7e0dd8b-cd7f-4a05-84ce-65db621ea63f}" - }, - { - "choice_index": 150, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAS", - "value": "{9e2628a0-4805-402f-aabd-0cf3ee109465}" - }, - { - "choice_index": 151, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3b LAX", - "value": "{ad1e452d-be49-4049-9efa-12e254092751}" - }, - { - "choice_index": 152, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 3c", - "value": "{36d0363a-4295-4967-9003-564c24bf7bf3}" - }, - { - "choice_index": 153, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4a", - "value": "{222f1712-c952-4743-8fb4-a46b3a9d2bc8}" - }, - { - "choice_index": 154, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4b", - "value": "{c86c6541-c4ac-4fc4-901f-dada76a36122}" - }, - { - "choice_index": 155, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 4c", - "value": "{9900caf8-b244-4b1d-8bd3-9708592a7bd1}" - }, - { - "choice_index": 156, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 5", - "value": "{4e7bc486-3d83-4bc0-aed0-c39c35df9024}" - }, - { - "choice_index": 157, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 6a", - "value": "{c2cd5e12-df10-4764-b600-034d049360fb}" - }, - { - "choice_index": 158, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 6b", - "value": "{fa626a46-e626-4aeb-b080-21a22121908d}" - }, - { - "choice_index": 159, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 7", - "value": "{d8f3e463-1102-4bae-8275-d56fd7b7f4dc}" - }, - { - "choice_index": 160, - "display_name": "CBECS 1980-2004 ExtWall Metal ClimateZone 8", - "value": "{8075ca6b-0308-4406-b4ab-05f0ab1b2cf2}" - }, - { - "choice_index": 161, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 1", - "value": "{ef809b35-2a9d-4982-b8f3-62fc12f6582e}" - }, - { - "choice_index": 162, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2a", - "value": "{ff1ef0ae-2bf1-4c1f-968d-e7f96eafa8cb}" - }, - { - "choice_index": 163, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 2b", - "value": "{0731e402-1c43-429a-af11-6d80dde43970}" - }, - { - "choice_index": 164, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3a", - "value": "{133a4042-c42b-46de-bfb8-794dff10d61a}" - }, - { - "choice_index": 165, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAS", - "value": "{1ef3457a-356d-495b-97f2-020b7f5588e7}" - }, - { - "choice_index": 166, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3b LAX", - "value": "{05480032-7251-418b-b5f9-9c81dd080a2c}" - }, - { - "choice_index": 167, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 3c", - "value": "{add75a0d-d383-4bf6-850a-dc38e00d6e61}" - }, - { - "choice_index": 168, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4a", - "value": "{aa1ca496-2daa-4f09-8a52-386e66022c2d}" - }, - { - "choice_index": 169, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4b", - "value": "{6510e780-bed0-4da2-b2af-2f7b97aac0cc}" - }, - { - "choice_index": 170, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 4c", - "value": "{f3879aa7-8389-40b9-9365-b8c6792e856f}" - }, - { - "choice_index": 171, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 5", - "value": "{f10eb590-a0a7-4b40-851c-0ec1415c4ac9}" - }, - { - "choice_index": 172, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6a", - "value": "{a5665523-873f-4992-8423-0fbc7dc062ee}" - }, - { - "choice_index": 173, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 6b", - "value": "{aae388a0-d135-4dd6-ba0f-aa443c4ca8ba}" - }, - { - "choice_index": 174, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 7", - "value": "{82975882-7278-4f6f-afc9-98f1641db383}" - }, - { - "choice_index": 175, - "display_name": "CBECS 1980-2004 ExtWall SteelFrame ClimateZone 8", - "value": "{79a528b6-93f8-4eee-9da6-38dec1fd035b}" - }, - { - "choice_index": 176, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 1", - "value": "{eb2189d5-9a56-4f58-92b3-d2541c10dce8}" - }, - { - "choice_index": 177, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2a", - "value": "{0246ced9-4980-4812-96fd-9a44d2d7a48d}" - }, - { - "choice_index": 178, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 2b", - "value": "{c2a848b1-6daa-47f8-a07e-d52b61c372da}" - }, - { - "choice_index": 179, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3a", - "value": "{092d2b5a-d21e-4ff5-9804-e5139507611b}" - }, - { - "choice_index": 180, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAS", - "value": "{46b91df6-0dfe-4807-8e0f-5432140cc796}" - }, - { - "choice_index": 181, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3b LAX", - "value": "{11e7cdad-a5ad-474a-9ea4-ab03e5dee103}" - }, - { - "choice_index": 182, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 3c", - "value": "{40c5c71d-f7a5-47c5-817d-60bf0ad4e2b4}" - }, - { - "choice_index": 183, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4a", - "value": "{bdeb08a7-42ff-4959-b44f-05dda43eee5a}" - }, - { - "choice_index": 184, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4b", - "value": "{b9ac9f75-4f8c-484f-9f0b-f91f3df44f5f}" - }, - { - "choice_index": 185, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 4c", - "value": "{e53e480f-58a9-422f-b7ae-15ce3c37e9dc}" - }, - { - "choice_index": 186, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 5", - "value": "{b85f7456-c87f-4c4c-b967-09678adc0f79}" - }, - { - "choice_index": 187, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6a", - "value": "{d3dfd27a-7896-499b-a15e-542f9cd9e2a3}" - }, - { - "choice_index": 188, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 6b", - "value": "{0f36580e-cac0-43cc-8c52-deff07cd1d32}" - }, - { - "choice_index": 189, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 7", - "value": "{7744de9e-3063-4510-ac21-62c542e77cd5}" - }, - { - "choice_index": 190, - "display_name": "CBECS 1980-2004 ExtWall WoodFrame ClimateZone 8", - "value": "{27ce314f-ce79-4436-8e21-a79e529361e9}" - }, - { - "choice_index": 191, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 1-3", - "value": "{142e4347-8739-4f16-82dd-8971df6ff0ee}" - }, - { - "choice_index": 192, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4a", - "value": "{540be8db-f63a-48a0-80bf-316ed7bb19df}" - }, - { - "choice_index": 193, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4b", - "value": "{eb8472fe-f574-4bbd-bd1d-90a261597c36}" - }, - { - "choice_index": 194, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 4c", - "value": "{5a1f761d-4a54-406a-ac93-865f3f7365d2}" - }, - { - "choice_index": 195, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5a", - "value": "{d6ef5895-b6ad-4a07-b1f3-141b43c07eef}" - }, - { - "choice_index": 196, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 5b", - "value": "{f03d8060-7c06-4214-b63f-a29e4897094c}" - }, - { - "choice_index": 197, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 6", - "value": "{07905031-5d9d-4fc0-804e-118b93a54369}" - }, - { - "choice_index": 198, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 7", - "value": "{ad130c26-4100-4e95-b4f4-a3d4d4394063}" - }, - { - "choice_index": 199, - "display_name": "CBECS Before-1980 ExtRoof AtticFloor ClimateZone 8", - "value": "{36dc01e7-443b-4b46-a46b-5b576ec585bf}" - }, - { - "choice_index": 200, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 1-3", - "value": "{b58dbdc6-719f-42ca-bcaa-e8a6675a82ef}" - }, - { - "choice_index": 201, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4a", - "value": "{60f147c0-65bd-4463-972b-4a7ecfd275cd}" - }, - { - "choice_index": 202, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4b", - "value": "{e0797daa-8faf-4c75-9ea0-51a1c7294f16}" - }, - { - "choice_index": 203, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 4c", - "value": "{2af00d1c-686f-45a5-910f-e2db6cf5df40}" - }, - { - "choice_index": 204, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 5a", - "value": "{d0f9a9ad-125e-4224-a12c-3cbaa48ad8de}" - }, - { - "choice_index": 205, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 5b", - "value": "{4340ebc4-ce3f-459e-93de-70a1b3f25258}" - }, - { - "choice_index": 206, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 6", - "value": "{2b550db8-333f-4844-b421-a86dca37b73d}" - }, - { - "choice_index": 207, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 7", - "value": "{897beb5c-d546-4ee9-8ab1-ad416c9c6f8e}" - }, - { - "choice_index": 208, - "display_name": "CBECS Before-1980 ExtRoof IEAD ClimateZone 8", - "value": "{8a3262cd-f1fa-41eb-bbaa-7b1ba0cf2f60}" - }, - { - "choice_index": 209, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 1-2", - "value": "{d353edf7-fc83-4ac2-b098-046fdd385761}" - }, - { - "choice_index": 210, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3a", - "value": "{dc7b0ce7-12c4-4b8e-a41e-18807392eff2}" - }, - { - "choice_index": 211, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3b", - "value": "{4dd9b36f-834a-4f15-98c4-6e3492c0aeea}" - }, - { - "choice_index": 212, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 3c", - "value": "{6c7defac-af05-4830-bd27-f4eeed4d72bc}" - }, - { - "choice_index": 213, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4a", - "value": "{6dbc7b5a-e6ba-4b9b-a2e7-5b58a997affe}" - }, - { - "choice_index": 214, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4b", - "value": "{d732dd77-0b9e-45a4-b9ac-94487278419d}" - }, - { - "choice_index": 215, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 4c", - "value": "{e2e549cb-fe98-4ce4-a52b-644f2c5a48bf}" - }, - { - "choice_index": 216, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 5a", - "value": "{a9fcbbc5-2705-4093-9863-d0d9d699831c}" - }, - { - "choice_index": 217, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 5b", - "value": "{aaddbe00-3c02-4b8c-ac10-adf0179fe422}" - }, - { - "choice_index": 218, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 6", - "value": "{112679d0-e9fb-4e4f-b6d8-b0a86c219191}" - }, - { - "choice_index": 219, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 7", - "value": "{ee3d224e-2c00-4f77-b096-0183ec1f60c2}" - }, - { - "choice_index": 220, - "display_name": "CBECS Before-1980 ExtWall Mass ClimateZone 8", - "value": "{d9ab5698-4d97-463a-bcad-0000700b812a}" - }, - { - "choice_index": 221, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 1-2", - "value": "{a00b1f61-42c4-4f33-96ae-c7a5f21e32d6}" - }, - { - "choice_index": 222, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3a", - "value": "{3a3f1c02-95b0-49c9-b9a1-e38eeb4151dc}" - }, - { - "choice_index": 223, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3b", - "value": "{4258cb62-b70f-451b-9d5d-c5894feb0e6d}" - }, - { - "choice_index": 224, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 3c", - "value": "{9924e9d6-8e2e-4823-9a12-1a29007ddfd7}" - }, - { - "choice_index": 225, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4a", - "value": "{031e217b-706a-4775-b021-aa731bf251e7}" - }, - { - "choice_index": 226, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4b", - "value": "{8ff192e6-e5f3-4416-9aae-090511a04bdd}" - }, - { - "choice_index": 227, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 4c", - "value": "{04d02889-c852-401c-ad55-bf61702b90df}" - }, - { - "choice_index": 228, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 5a", - "value": "{cdb6130c-283d-4621-92fe-b58204908e56}" - }, - { - "choice_index": 229, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 5b", - "value": "{b41d64a3-6a55-4dbd-adfb-8970462589f8}" - }, - { - "choice_index": 230, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 6", - "value": "{1b537b5f-00e2-4175-a586-19da3ec15ff1}" - }, - { - "choice_index": 231, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 7", - "value": "{974d2587-f08d-4ab3-a29f-742bd9ac9b1c}" - }, - { - "choice_index": 232, - "display_name": "CBECS Before-1980 ExtWall Metal ClimateZone 8", - "value": "{4880caca-2177-4a4e-9e95-32258fb9b7de}" - }, - { - "choice_index": 233, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 1-3b", - "value": "{6325222d-79d8-4734-82c0-598663f7f2c6}" - }, - { - "choice_index": 234, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 3c", - "value": "{f2bec73e-53a4-409b-aef1-e9e453b1036a}" - }, - { - "choice_index": 235, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4a", - "value": "{73d7211a-cf12-41cb-bf92-8f0a0739ac94}" - }, - { - "choice_index": 236, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4b", - "value": "{e53b2675-50ad-441a-8b79-6902d7ba81fb}" - }, - { - "choice_index": 237, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 4c", - "value": "{39644664-a9a1-417a-b9db-7b2c2b5f2148}" - }, - { - "choice_index": 238, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 5a", - "value": "{1dd9ad93-06e4-4ed2-9d44-f0681f05c85e}" - }, - { - "choice_index": 239, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 5b", - "value": "{846f380c-b562-459d-a818-bf79ff3c9383}" - }, - { - "choice_index": 240, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 6", - "value": "{94142431-4727-4ea4-88d6-f506930e4db4}" - }, - { - "choice_index": 241, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 7", - "value": "{397278fe-cd4f-4ea2-afe1-58b6156944e6}" - }, - { - "choice_index": 242, - "display_name": "CBECS Before-1980 ExtWall SteelFrame ClimateZone 8", - "value": "{95c2c635-30ae-4fa7-b404-31a8b478c154}" - } - ], - "display_name": "Optionally Choose a Construction for the Overhangs.", - "domain_type": "Enumeration", - "name": "construction", - "required": false, - "type": "Choice", - "uuid": "40c88da7-5504-4081-a3ac-88fefc5240d3", - "version_uuid": "a4838128-0228-4190-abde-86b5dc772162" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddOverhangsByProjectionFactor", - "bcl_measure_uuid": "1e29e117-3916-4368-b24d-75da54045956", - "bcl_measure_version_uuid": "a0aa02d4-7328-4462-a5af-cfe6dedc64da", - "description": "Add overhangs by projection factor to specified windows. The projection factor is the overhang depth divided by the window height. This can be applied to windows by the closest cardinal direction. If baseline model contains overhangs made by this measure, they will be replaced. Optionally the measure can delete any pre-existing space shading surfaces.", - "display_name": "Add Overhangs by Projection Factor 0.25 South", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Add Overhangs by Projection Factor 0.25 South", - "output_file_type": "OSM", - "uuid": "4245c283-ae39-4185-bf6e-b1dee95f6b76", - "version_uuid": "d436f046-4537-4265-9845-fb9737a3dcf8" - } - ], - "name": "Add Overhangs by Projection Factor Group", - "uuid": "ded29d04-56b2-4e74-bdde-db8db8379bf7", - "version_uuid": "9f7fb20a-dec7-4a24-9756-dae082dd77e2", - "workflow_index": 10, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "ReduceSpaceInfiltrationByPercentage Group (Only use one infiltration Group)", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "c444b62e-e293-4dd6-956b-a228f816989d", - "version_uuid": "c13373ef-f51f-4afc-861a-da8c116702d6" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor", - "value": "{81125e3e-d3ce-4ef9-ba9c-6e7437efdca8}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom", - "value": "{0658a18e-343c-41bf-b4ba-66e7c3fab1c2}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby", - "value": "{9f450f46-dc3e-44b3-9314-4cd14102ec6e}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen", - "value": "{bd500ca9-1c31-4a5a-a9f9-e32a5eadf0f1}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce", - "value": "{b689f00f-ae2b-4273-8455-4acd0b506b6f}" - }, - { - "choice_index": 7, - "display_name": "*Entire Building*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.", - "domain_type": "Enumeration", - "name": "space_type", - "required": true, - "type": "Choice", - "uuid": "970585d7-5cdc-4459-a86b-9aab58e47dc8", - "version_uuid": "9444d7bf-dc08-4a04-81bf-186ce474d958" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Space Infiltration Power Reduction (%).", - "domain_type": "Interval", - "name": "space_infiltration_reduction_percent", - "required": true, - "type": "Double", - "uuid": "a38bc332-f97a-4692-a01a-25a92d129aed", - "version_uuid": "577e69fb-4946-484b-8aa7-aae69ccab10c" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Costs for Building per Affected Floor Area ($/ft^2).", - "domain_type": "Interval", - "name": "material_and_installation_cost", - "required": true, - "type": "Double", - "uuid": "abb60511-cdeb-43c6-88ec-a628ffb33c4a", - "value": 2.0, - "version_uuid": "2383a154-a139-4013-ad8e-6a3629aff2bc" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "O & M Costs for Construction per Affected Floor Area ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "01906300-9fba-48d5-acab-9f1c106f5767", - "version_uuid": "3555ce0f-045a-4ccb-aeb5-9c1816db8778" - }, - { - "argument_index": 4, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "dae08233-6b63-49ae-9383-8c1190b60610", - "version_uuid": "59cb6780-7930-4faf-9ce9-70b626332961" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceSpaceInfiltrationByPercentage", - "bcl_measure_uuid": "d8161857-8b77-4e1a-a76c-ae5deab7c1e0", - "bcl_measure_version_uuid": "c1f7fb41-f927-4d33-aa97-dcf1415390e4", - "description": "This measure will reduce space infiltration rates by the requested percentage. A cost per square foot of building area can be added to the model.", - "display_name": "ReduceSpaceInfiltrationByPercentage 30%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "ReduceSpaceInfiltrationByPercentage 30%", - "output_file_type": "OSM", - "uuid": "5a29eb2e-24f3-48a9-ac4d-8162d07829cc", - "version_uuid": "8de91320-6e5c-42c7-9bee-66729cead140" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor", - "value": "{81125e3e-d3ce-4ef9-ba9c-6e7437efdca8}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom", - "value": "{0658a18e-343c-41bf-b4ba-66e7c3fab1c2}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby", - "value": "{9f450f46-dc3e-44b3-9314-4cd14102ec6e}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen", - "value": "{bd500ca9-1c31-4a5a-a9f9-e32a5eadf0f1}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce", - "value": "{b689f00f-ae2b-4273-8455-4acd0b506b6f}" - }, - { - "choice_index": 7, - "display_name": "*Entire Building*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.", - "domain_type": "Enumeration", - "name": "space_type", - "required": true, - "type": "Choice", - "uuid": "a55dd9ed-6ec0-4a28-a53c-44e135f5f0ea", - "version_uuid": "e19069b1-a0e3-473a-aad8-839d34151973" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Space Infiltration Power Reduction (%).", - "domain_type": "Interval", - "name": "space_infiltration_reduction_percent", - "required": true, - "type": "Double", - "uuid": "09c02d27-d073-4a68-87c0-90cf4e9d1d80", - "value": 50.0, - "version_uuid": "15a4d40a-4b1b-4f6d-b6fd-97eb4fdb7edc" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Costs for Building per Affected Floor Area ($/ft^2).", - "domain_type": "Interval", - "name": "material_and_installation_cost", - "required": true, - "type": "Double", - "uuid": "95d18b41-87ad-4efb-ba0f-aec3175760cc", - "value": 5.0, - "version_uuid": "06b0397e-3bc0-441c-ae14-aa6eae779800" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "O & M Costs for Construction per Affected Floor Area ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "0b84869c-7db4-4a03-968f-57f452acbdb5", - "version_uuid": "744f1582-3905-4369-ae19-a4897d225bb0" - }, - { - "argument_index": 4, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "c6044e88-b555-4447-ae4d-6f3561f3a676", - "version_uuid": "8e1d6a87-cda7-49e5-8cc0-8fbc06b9ae2a" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceSpaceInfiltrationByPercentage", - "bcl_measure_uuid": "d8161857-8b77-4e1a-a76c-ae5deab7c1e0", - "bcl_measure_version_uuid": "c1f7fb41-f927-4d33-aa97-dcf1415390e4", - "description": "This measure will reduce space infiltration rates by the requested percentage. A cost per square foot of building area can be added to the model.", - "display_name": "ReduceSpaceInfiltrationByPercentage 50%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "ReduceSpaceInfiltrationByPercentage 50%", - "output_file_type": "OSM", - "uuid": "2968a304-56ba-4ff1-b5e5-051efe2dd1fd", - "version_uuid": "e65dd0ee-f963-49a5-b965-2f9c0ed5356d" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor", - "value": "{81125e3e-d3ce-4ef9-ba9c-6e7437efdca8}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom", - "value": "{0658a18e-343c-41bf-b4ba-66e7c3fab1c2}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby", - "value": "{9f450f46-dc3e-44b3-9314-4cd14102ec6e}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen", - "value": "{bd500ca9-1c31-4a5a-a9f9-e32a5eadf0f1}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce", - "value": "{b689f00f-ae2b-4273-8455-4acd0b506b6f}" - }, - { - "choice_index": 7, - "display_name": "*Entire Building*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.", - "domain_type": "Enumeration", - "name": "space_type", - "required": true, - "type": "Choice", - "uuid": "412b9a6a-5faf-44c8-9d72-0fa93dd697bd", - "version_uuid": "106a3b9f-cd23-4f4b-9461-0e5b897c3a77" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Space Infiltration Power Reduction (%).", - "domain_type": "Interval", - "name": "space_infiltration_reduction_percent", - "required": true, - "type": "Double", - "uuid": "2f59ffb7-02bc-4b93-8cbe-b3dd997d2c57", - "value": 70.0, - "version_uuid": "c213213e-2552-4541-b636-5ffd5000ca55" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Costs for Building per Affected Floor Area ($/ft^2).", - "domain_type": "Interval", - "name": "material_and_installation_cost", - "required": true, - "type": "Double", - "uuid": "3c221927-c1cc-425e-8d71-e1df419f6cb1", - "value": 10.0, - "version_uuid": "4cb7a768-e345-40a6-9d40-162b9600e93f" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "O & M Costs for Construction per Affected Floor Area ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "1d4109e9-98cd-4379-a8d4-e6efc000b14e", - "version_uuid": "5f39e1fb-0a59-4f7a-a92b-e31faf074206" - }, - { - "argument_index": 4, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "f9cd07e3-f4c6-4ce8-a967-a56c9c8b67f5", - "version_uuid": "134bb9bc-48f8-4d4c-8f7e-4ef2a7fae049" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceSpaceInfiltrationByPercentage", - "bcl_measure_uuid": "d8161857-8b77-4e1a-a76c-ae5deab7c1e0", - "bcl_measure_version_uuid": "c1f7fb41-f927-4d33-aa97-dcf1415390e4", - "description": "This measure will reduce space infiltration rates by the requested percentage. A cost per square foot of building area can be added to the model.", - "display_name": "ReduceSpaceInfiltrationByPercentage 70%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "ReduceSpaceInfiltrationByPercentage 70%", - "output_file_type": "OSM", - "uuid": "17669d08-942b-4a80-92fa-0d5d55462295", - "version_uuid": "853ad08c-208d-4d6b-ab18-6aab9f7027a4" - } - ], - "name": "ReduceSpaceInfiltrationByPercentage Group (Only use one infiltration Group)", - "uuid": "7c0c2c88-866a-41a4-8a09-d835ea6ad2ee", - "version_uuid": "2fd85d8c-baad-4199-8f47-791cd324cbd0", - "workflow_index": 11, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Set Space Infiltration by Exterior Surface Area Group (Only use one infiltration Group)", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "5010b285-1d4b-495f-8c94-499db39bfdf5", - "version_uuid": "5912b687-60c3-499c-8717-f1ec5138147e" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 0.05, - "display_name": "Space Infiltration Flow per Exterior Envelope Surface Area (cfm/ft^2).", - "domain_type": "Interval", - "name": "infiltration_ip", - "required": true, - "type": "Double", - "uuid": "6f69310c-a599-4c5d-a75b-9f5568eb13de", - "version_uuid": "88092a7f-b44e-4358-8a0b-8b4224687865" - }, - { - "argument_index": 1, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Costs for Building per Exterior Envelope Area ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_ip", - "required": true, - "type": "Double", - "uuid": "14234296-87bb-4e3f-87b2-63083871f600", - "value": 1.0, - "version_uuid": "535d580d-005e-451f-beab-604885aeb280" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "O & M Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost_ip", - "required": true, - "type": "Double", - "uuid": "10666d59-48e1-427e-a7f0-0f6a888b1371", - "version_uuid": "3c81cbe3-fec8-4a5e-a925-48781eb45634" - }, - { - "argument_index": 3, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "06fbc1f4-6079-4c58-b326-812a56e3f4a2", - "version_uuid": "bdf189de-5ca8-4333-aaf4-4f128d73a515" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/SetSpaceInfiltrationByExteriorSurfaceArea", - "bcl_measure_uuid": "b43adf2d-1e8f-48a4-9470-bde1b1444b4f", - "bcl_measure_version_uuid": "2c6236b7-0d23-440f-87b8-812a70d1049c", - "description": "Replace all Space Infiltration objects with a new one that has a prescribed flow rate per exterior surface area. There are many strategies that can be used to reduce infiltration.\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\nSeal Windows ? Seal all windows and doors with weather strip and fill any air gaps with insulation and caulking to prevent air infiltration.\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\nInstall Revolving Doors on the Inner Door Entrance - Replace the high traffic entrance doors with revolving doors. This will reduce the air infiltration associated with the doors. Notice that loading dock doors and handicapped accessible entrances cannot be replaced with revolving doors.\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\nInstall an Air Curtain for the Loading Dock Door - An air curtain should be installed in the entryway of loading dock doors. This will greatly reduce outside air from infiltrating during periods of time when loading dock doors are open.\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\nIdentify and seal other sources of infiltration ? Look for other uncontrolled infiltration sources and work to air seal. These could be former electrical chases, abandoned HVAC ducting, general envelope deterioration, or many other sources.\r\r\r\r\r\r\r\n ", - "display_name": "Set Space Infiltration by Exterior Surface Area 0.05 cfm/ft^2", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Set Space Infiltration by Exterior Surface Area 0.05 cfm/ft^2", - "output_file_type": "OSM", - "uuid": "9e6546fc-f1b7-4c84-920a-bfef1bff986b", - "version_uuid": "dd89b8f9-afe7-47d3-b162-5082e0f04a30" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 0.05, - "display_name": "Space Infiltration Flow per Exterior Envelope Surface Area (cfm/ft^2).", - "domain_type": "Interval", - "name": "infiltration_ip", - "required": true, - "type": "Double", - "uuid": "d7820957-5867-48ca-bda9-9a758007649e", - "value": 0.03, - "version_uuid": "fe08aa46-a6d7-488f-9901-bfe3a89b563e" - }, - { - "argument_index": 1, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Costs for Building per Exterior Envelope Area ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_ip", - "required": true, - "type": "Double", - "uuid": "6337a0a8-c1dd-47a3-bb20-0e43e68e3455", - "value": 2.0, - "version_uuid": "946984ba-b0a3-4e79-94eb-1f3cae988e43" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "O & M Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost_ip", - "required": true, - "type": "Double", - "uuid": "9524ce7e-49b0-4bf1-bc7e-f2410572b2ef", - "version_uuid": "457c8423-0d8d-4bdf-9769-8d91b24dfa91" - }, - { - "argument_index": 3, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "8821666e-f093-4c9f-8d07-ce10a959b71c", - "version_uuid": "b3c8795d-0463-465b-b683-26a049cd567e" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/SetSpaceInfiltrationByExteriorSurfaceArea", - "bcl_measure_uuid": "b43adf2d-1e8f-48a4-9470-bde1b1444b4f", - "bcl_measure_version_uuid": "2c6236b7-0d23-440f-87b8-812a70d1049c", - "description": "Replace all Space Infiltration objects with a new one that has a prescribed flow rate per exterior surface area. There are many strategies that can be used to reduce infiltration.\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\nSeal Windows ? Seal all windows and doors with weather strip and fill any air gaps with insulation and caulking to prevent air infiltration.\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\nInstall Revolving Doors on the Inner Door Entrance - Replace the high traffic entrance doors with revolving doors. This will reduce the air infiltration associated with the doors. Notice that loading dock doors and handicapped accessible entrances cannot be replaced with revolving doors.\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\nInstall an Air Curtain for the Loading Dock Door - An air curtain should be installed in the entryway of loading dock doors. This will greatly reduce outside air from infiltrating during periods of time when loading dock doors are open.\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\nIdentify and seal other sources of infiltration ? Look for other uncontrolled infiltration sources and work to air seal. These could be former electrical chases, abandoned HVAC ducting, general envelope deterioration, or many other sources.\r\r\r\r\r\r\r\n ", - "display_name": "Set Space Infiltration by Exterior Surface Area 0.03 cfm/ft^2", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Set Space Infiltration by Exterior Surface Area 0.03 cfm/ft^2", - "output_file_type": "OSM", - "uuid": "3ba39cab-f6e8-401e-bfc6-70aee241eb75", - "version_uuid": "5e4dad12-db1e-47a8-a59f-19c1c5eb22f2" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 0.05, - "display_name": "Space Infiltration Flow per Exterior Envelope Surface Area (cfm/ft^2).", - "domain_type": "Interval", - "name": "infiltration_ip", - "required": true, - "type": "Double", - "uuid": "1d17dbc1-bdee-4b2a-baac-5011faaa1dca", - "value": 0.01, - "version_uuid": "f0d1e896-b7ee-49ff-b42e-3787519c4abc" - }, - { - "argument_index": 1, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Costs for Building per Exterior Envelope Area ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_ip", - "required": true, - "type": "Double", - "uuid": "48e56d56-109b-40cb-9202-81e01a562c4d", - "value": 3.0, - "version_uuid": "39b31d6f-7453-4872-80ff-0c002873ada4" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "O & M Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost_ip", - "required": true, - "type": "Double", - "uuid": "ef8959e3-c95a-46f9-9ca0-ffefd3192aee", - "version_uuid": "5069db2a-ac11-446f-842f-45b1a5a5cfc6" - }, - { - "argument_index": 3, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "fba84a02-c0fd-4d1d-afbc-a66f266f713e", - "version_uuid": "6ba801ae-d117-4c60-aa6f-ea8ee72353e8" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/SetSpaceInfiltrationByExteriorSurfaceArea", - "bcl_measure_uuid": "b43adf2d-1e8f-48a4-9470-bde1b1444b4f", - "bcl_measure_version_uuid": "2c6236b7-0d23-440f-87b8-812a70d1049c", - "description": "Replace all Space Infiltration objects with a new one that has a prescribed flow rate per exterior surface area. There are many strategies that can be used to reduce infiltration.\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\nSeal Windows ? Seal all windows and doors with weather strip and fill any air gaps with insulation and caulking to prevent air infiltration.\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\nInstall Revolving Doors on the Inner Door Entrance - Replace the high traffic entrance doors with revolving doors. This will reduce the air infiltration associated with the doors. Notice that loading dock doors and handicapped accessible entrances cannot be replaced with revolving doors.\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\nInstall an Air Curtain for the Loading Dock Door - An air curtain should be installed in the entryway of loading dock doors. This will greatly reduce outside air from infiltrating during periods of time when loading dock doors are open.\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\nIdentify and seal other sources of infiltration ? Look for other uncontrolled infiltration sources and work to air seal. These could be former electrical chases, abandoned HVAC ducting, general envelope deterioration, or many other sources.\r\r\r\r\r\r\r\n ", - "display_name": "Set Space Infiltration by Exterior Surface Area 0.01 cfm/ft^2", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Set Space Infiltration by Exterior Surface Area 0.01 cfm/ft^2", - "output_file_type": "OSM", - "uuid": "d87fb127-ac01-4a33-aeff-45da8b0b6bd5", - "version_uuid": "aad79bc4-09bc-45e7-96cb-e3fe7d2bec3e" - } - ], - "name": "Set Space Infiltration by Exterior Surface Area Group (Only use one infiltration Group)", - "uuid": "1dafa1cd-5e76-4499-ba8e-9a2a915de061", - "version_uuid": "3066e34a-446f-45bf-87c0-751c463ff54b", - "workflow_index": 12, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Reduce Night Time Lighting Loads Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "0e526e5d-e79d-4ecc-9a88-cf2ac3e657d4", - "version_uuid": "a9343335-d5ed-429d-a2b6-2ef73fc9cb36" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor LightsDef", - "value": "{9eb79eb6-9674-4b62-bc9e-54135946502c}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom LightsDef", - "value": "{1abcc6da-0e98-47bc-af3d-4bbaf676520a}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby LightsDef", - "value": "{406638e8-d46e-468f-ac7b-d1b1adba2ea8}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining Lights Definition", - "value": "{77223ff1-a62c-4bcb-ac17-b4f4ce605541}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen Lights Definition", - "value": "{715a50c1-785c-4152-80fd-cfeffd5c75d7}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding Lights Definition", - "value": "{eaf738bb-ff06-48a3-af6d-ba0ee1a43b75}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce Lights Definition", - "value": "{c5c5cef2-56f5-4d72-ad79-ea904ebf234d}" - } - ], - "display_name": "Pick a Lighting Definition From the Model (schedules using this will be altered)", - "domain_type": "Enumeration", - "name": "lights_def", - "required": true, - "type": "Choice", - "uuid": "37edaba6-e753-4bbd-9aee-65c46ae9523c", - "value": "{1abcc6da-0e98-47bc-af3d-4bbaf676520a}", - "version_uuid": "4f95a30b-5729-4232-bb57-306534ffc29e" - }, - { - "argument_index": 1, - "default_value": 0.1, - "display_name": "Fractional Value for Night Time Load", - "domain_type": "Interval", - "name": "fraction_value", - "required": true, - "type": "Double", - "uuid": "00b03010-b9be-4061-b236-a5bb7e900e58", - "value": 0.2, - "version_uuid": "6bc3dd9b-6463-49a8-aca2-69b7acf79f81" - }, - { - "argument_index": 2, - "default_value": "true", - "display_name": "Apply Schedule Changes to Weekday and Default Profiles?", - "domain_type": "Enumeration", - "name": "apply_weekday", - "required": true, - "type": "Boolean", - "uuid": "5509f971-16b0-428c-882d-22b08a1ec54f", - "version_uuid": "7908a552-9de4-4c7e-ab1f-9715734a8a97" - }, - { - "argument_index": 3, - "default_value": 18.0, - "display_name": "Weekday/Default Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_weekday", - "required": true, - "type": "Double", - "uuid": "bc9f6bab-c8ab-45e1-8186-d593e8ae91ca", - "value": 22.0, - "version_uuid": "17cd863c-7fd4-4427-9bc5-c6651356b82a" - }, - { - "argument_index": 4, - "default_value": 9.0, - "display_name": "Weekday/Default Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_weekday", - "required": true, - "type": "Double", - "uuid": "9d4efdb6-7237-45d7-aeb5-7761e24fff8c", - "value": 6.0, - "version_uuid": "212e89be-3b1a-49b3-b60e-27ffd2d69e41" - }, - { - "argument_index": 5, - "default_value": "true", - "display_name": "Apply schedule changes to Saturdays?", - "domain_type": "Enumeration", - "name": "apply_saturday", - "required": true, - "type": "Boolean", - "uuid": "04c7b59e-82a9-404d-91c5-ccb8b2b0468f", - "version_uuid": "498dcaac-199e-4deb-89aa-c190a7697a1c" - }, - { - "argument_index": 6, - "default_value": 18.0, - "display_name": "Saturday Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_saturday", - "required": true, - "type": "Double", - "uuid": "f01aeaf8-9373-4c8e-bcad-e5ecf21c8e44", - "value": 22.0, - "version_uuid": "92f2647a-1b48-4d98-8baf-364db93d5009" - }, - { - "argument_index": 7, - "default_value": 9.0, - "display_name": "Saturday Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_saturday", - "required": true, - "type": "Double", - "uuid": "f79270de-a405-40ad-a725-48f61fb9e82a", - "value": 6.0, - "version_uuid": "f4b7bc00-8328-40c4-939d-75cae604cd27" - }, - { - "argument_index": 8, - "default_value": "true", - "display_name": "Apply Schedule Changes to Sundays?", - "domain_type": "Enumeration", - "name": "apply_sunday", - "required": true, - "type": "Boolean", - "uuid": "c2aaccc2-f3e0-459d-bcc2-0e388abb2362", - "version_uuid": "c65d5d55-2992-45fa-9c5b-01437d9b0802" - }, - { - "argument_index": 9, - "default_value": 18.0, - "display_name": "Sunday Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_sunday", - "required": true, - "type": "Double", - "uuid": "26dfcd85-9c14-4870-bc5e-6637fcb26bfb", - "value": 22.0, - "version_uuid": "8d68aac1-af01-43cb-ab73-ed3be6bbc830" - }, - { - "argument_index": 10, - "default_value": 9.0, - "display_name": "Sunday Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_sunday", - "required": true, - "type": "Double", - "uuid": "b5e2b7b2-c4ea-4e30-931b-5fc877a95d71", - "value": 6.0, - "version_uuid": "42973d40-83ab-4412-9a72-89bf8e13247b" - }, - { - "argument_index": 11, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Light Quantity ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "2e64a424-d5fd-4fb2-830a-2dcaf92e84c3", - "version_uuid": "09cf8979-73a3-479f-9b07-0b331d889041" - }, - { - "argument_index": 12, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "25b06a0d-63e9-4d8e-9c66-8ac8d756b9c8", - "version_uuid": "a0442758-84c8-4c55-a0a7-f5a52e017f71" - }, - { - "argument_index": 13, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "470aa7c0-67c0-429b-96cb-caabd45d01b3", - "version_uuid": "ec386683-f14d-43e6-8d44-a45fa0d0580c" - }, - { - "argument_index": 14, - "default_value": 0.0, - "display_name": "O & M Costs Costs per Light Quantity ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "1709a572-cd40-4506-ac2e-89bbddf0e75a", - "version_uuid": "836de1a9-f3d7-4e06-9738-fa2f8d293000" - }, - { - "argument_index": 15, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "8bad7b9b-f7b4-47ce-a334-bf2dfa519449", - "version_uuid": "d80c0019-3edc-4a54-994f-46ea1b903f1e" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceNightTimeLightingLoads", - "bcl_measure_uuid": "93461778-59a1-49ca-8bbb-f4b939e4a9d8", - "bcl_measure_version_uuid": "e246ae10-f57d-4d5c-9b18-7e65795dd702", - "description": "This measure lets you set the lighting schedule profile values for a specific time of day, and for specific days of the week. This can be run across the entire model or a specific space type. Cost can be added per each light object.", - "display_name": "Reduce Night Time Lighting Loads Guest 0.2", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Reduce Night Time Lighting Loads Guest 0.2", - "output_file_type": "OSM", - "uuid": "1ea24862-d201-4b05-a6db-9e5af08a8799", - "version_uuid": "12cf6ad8-cf8c-4a3a-bd90-6b25d3f74923" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor LightsDef", - "value": "{9eb79eb6-9674-4b62-bc9e-54135946502c}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom LightsDef", - "value": "{1abcc6da-0e98-47bc-af3d-4bbaf676520a}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby LightsDef", - "value": "{406638e8-d46e-468f-ac7b-d1b1adba2ea8}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining Lights Definition", - "value": "{77223ff1-a62c-4bcb-ac17-b4f4ce605541}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen Lights Definition", - "value": "{715a50c1-785c-4152-80fd-cfeffd5c75d7}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding Lights Definition", - "value": "{eaf738bb-ff06-48a3-af6d-ba0ee1a43b75}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce Lights Definition", - "value": "{c5c5cef2-56f5-4d72-ad79-ea904ebf234d}" - } - ], - "display_name": "Pick a Lighting Definition From the Model (schedules using this will be altered)", - "domain_type": "Enumeration", - "name": "lights_def", - "required": true, - "type": "Choice", - "uuid": "fde5d552-9959-4c89-a60e-a55b59e22ec3", - "value": "{1abcc6da-0e98-47bc-af3d-4bbaf676520a}", - "version_uuid": "ae2fe2ad-ca71-4628-b43b-4796e1d57ea6" - }, - { - "argument_index": 1, - "default_value": 0.1, - "display_name": "Fractional Value for Night Time Load", - "domain_type": "Interval", - "name": "fraction_value", - "required": true, - "type": "Double", - "uuid": "86efee92-05e7-4ace-97bd-e79992c85606", - "version_uuid": "e7f17823-46a7-4861-8111-f174ee20f08c" - }, - { - "argument_index": 2, - "default_value": "true", - "display_name": "Apply Schedule Changes to Weekday and Default Profiles?", - "domain_type": "Enumeration", - "name": "apply_weekday", - "required": true, - "type": "Boolean", - "uuid": "5c7580c1-9158-4f30-8b15-9335c937ae12", - "version_uuid": "10656945-6a96-4833-b95a-b6aab3ead5b2" - }, - { - "argument_index": 3, - "default_value": 18.0, - "display_name": "Weekday/Default Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_weekday", - "required": true, - "type": "Double", - "uuid": "fba90cbe-3e61-4f20-b56d-b65ba8ad8125", - "value": 22.0, - "version_uuid": "30c0646e-d8f6-4a25-b084-5069141ae0d0" - }, - { - "argument_index": 4, - "default_value": 9.0, - "display_name": "Weekday/Default Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_weekday", - "required": true, - "type": "Double", - "uuid": "c38b6d6d-b34e-4078-bf79-9149ad028751", - "value": 6.0, - "version_uuid": "1473afbf-212d-413d-b227-a063c8beffd2" - }, - { - "argument_index": 5, - "default_value": "true", - "display_name": "Apply schedule changes to Saturdays?", - "domain_type": "Enumeration", - "name": "apply_saturday", - "required": true, - "type": "Boolean", - "uuid": "b1e50985-5162-4320-b039-d9281bd1fc2c", - "version_uuid": "26183b3b-06cd-4f7c-ac83-5c5ab84eb946" - }, - { - "argument_index": 6, - "default_value": 18.0, - "display_name": "Saturday Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_saturday", - "required": true, - "type": "Double", - "uuid": "095ea552-80c4-46ae-a2b5-eb82178562e6", - "value": 22.0, - "version_uuid": "553253e7-6233-4f63-a6a1-80895e9d371b" - }, - { - "argument_index": 7, - "default_value": 9.0, - "display_name": "Saturday Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_saturday", - "required": true, - "type": "Double", - "uuid": "a26a9b9c-be07-4ab4-9afd-482590cb28b3", - "value": 6.0, - "version_uuid": "9cbf1e7e-6b39-4256-98a1-0f1a3809c261" - }, - { - "argument_index": 8, - "default_value": "true", - "display_name": "Apply Schedule Changes to Sundays?", - "domain_type": "Enumeration", - "name": "apply_sunday", - "required": true, - "type": "Boolean", - "uuid": "ba86d6ce-c61c-4ded-880c-53432b465553", - "version_uuid": "12c7b556-ae4d-4ef4-a6b9-8e589a9a8057" - }, - { - "argument_index": 9, - "default_value": 18.0, - "display_name": "Sunday Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_sunday", - "required": true, - "type": "Double", - "uuid": "f993fff4-08b1-434d-b5d7-5ed8456b8c34", - "value": 22.0, - "version_uuid": "bc48fd58-e85e-4696-b730-ba79753376a2" - }, - { - "argument_index": 10, - "default_value": 9.0, - "display_name": "Sunday Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_sunday", - "required": true, - "type": "Double", - "uuid": "0767dac1-8176-45df-974a-591f6c4fb222", - "value": 6.0, - "version_uuid": "9a3b8d45-6780-49e9-be00-231bcaf45945" - }, - { - "argument_index": 11, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Light Quantity ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "d552c2ca-f8c0-4287-9cea-c8faa07e902c", - "version_uuid": "3b521dbf-8247-4148-8626-20849c80824e" - }, - { - "argument_index": 12, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "890309af-a36e-44a9-8272-b317653f4f85", - "version_uuid": "944d37cb-6da8-45a0-868e-8fdf638c5eda" - }, - { - "argument_index": 13, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "49902051-3c94-42e8-98b5-b75decafe495", - "version_uuid": "9ba43257-f551-450f-b129-15c540a18e58" - }, - { - "argument_index": 14, - "default_value": 0.0, - "display_name": "O & M Costs Costs per Light Quantity ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "f3a6f279-613b-4225-a655-2a92652ade74", - "version_uuid": "46518cf3-4874-4558-a36f-27066224245c" - }, - { - "argument_index": 15, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "71ac6fae-d372-425d-989e-1588d3d92ab4", - "version_uuid": "1868e60b-a1e8-498f-abda-9ec712fc5027" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceNightTimeLightingLoads", - "bcl_measure_uuid": "93461778-59a1-49ca-8bbb-f4b939e4a9d8", - "bcl_measure_version_uuid": "e246ae10-f57d-4d5c-9b18-7e65795dd702", - "description": "This measure lets you set the lighting schedule profile values for a specific time of day, and for specific days of the week. This can be run across the entire model or a specific space type. Cost can be added per each light object.", - "display_name": "Reduce Night Time Lighting Loads Guest 0.1", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Reduce Night Time Lighting Loads Guest 0.1", - "output_file_type": "OSM", - "uuid": "5e7f4355-df37-4050-9663-a31bd73c65f9", - "version_uuid": "380c1d3a-fda6-4587-9f08-72e5d5f7a01c" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor LightsDef", - "value": "{9eb79eb6-9674-4b62-bc9e-54135946502c}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom LightsDef", - "value": "{1abcc6da-0e98-47bc-af3d-4bbaf676520a}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby LightsDef", - "value": "{406638e8-d46e-468f-ac7b-d1b1adba2ea8}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining Lights Definition", - "value": "{77223ff1-a62c-4bcb-ac17-b4f4ce605541}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen Lights Definition", - "value": "{715a50c1-785c-4152-80fd-cfeffd5c75d7}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding Lights Definition", - "value": "{eaf738bb-ff06-48a3-af6d-ba0ee1a43b75}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce Lights Definition", - "value": "{c5c5cef2-56f5-4d72-ad79-ea904ebf234d}" - } - ], - "display_name": "Pick a Lighting Definition From the Model (schedules using this will be altered)", - "domain_type": "Enumeration", - "name": "lights_def", - "required": true, - "type": "Choice", - "uuid": "4d906bad-70b6-45c6-aeae-e36659584a2c", - "value": "{1abcc6da-0e98-47bc-af3d-4bbaf676520a}", - "version_uuid": "0acdbef0-3788-4698-baab-b7a83f594ee8" - }, - { - "argument_index": 1, - "default_value": 0.1, - "display_name": "Fractional Value for Night Time Load", - "domain_type": "Interval", - "name": "fraction_value", - "required": true, - "type": "Double", - "uuid": "bc7a7bff-ed45-43a3-b4de-8cc150eee1e7", - "version_uuid": "7c3c0000-714f-4746-b2d7-6295ef1e26e8" - }, - { - "argument_index": 2, - "default_value": "true", - "display_name": "Apply Schedule Changes to Weekday and Default Profiles?", - "domain_type": "Enumeration", - "name": "apply_weekday", - "required": true, - "type": "Boolean", - "uuid": "0eda95c8-4ea2-47c2-b6ba-1d1ab1df5216", - "version_uuid": "987ebeb4-cd04-4dd0-b734-30a7de1be717" - }, - { - "argument_index": 3, - "default_value": 18.0, - "display_name": "Weekday/Default Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_weekday", - "required": true, - "type": "Double", - "uuid": "c5b81ceb-942f-4b4f-b570-92f92a7223ec", - "value": 22.0, - "version_uuid": "3907c9a2-8287-4ef5-8e4e-6cacb27659c3" - }, - { - "argument_index": 4, - "default_value": 9.0, - "display_name": "Weekday/Default Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_weekday", - "required": true, - "type": "Double", - "uuid": "9c3d6c4d-a990-4242-8261-819695e29b0a", - "value": 6.0, - "version_uuid": "613f3522-b280-4164-9af5-33b527673f5e" - }, - { - "argument_index": 5, - "default_value": "true", - "display_name": "Apply schedule changes to Saturdays?", - "domain_type": "Enumeration", - "name": "apply_saturday", - "required": true, - "type": "Boolean", - "uuid": "fae6b002-c746-4f7c-8e26-55522184734f", - "version_uuid": "8bef49f2-4f2f-4f79-945c-cba7bbb74724" - }, - { - "argument_index": 6, - "default_value": 18.0, - "display_name": "Saturday Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_saturday", - "required": true, - "type": "Double", - "uuid": "43a9daed-2832-48cc-84a2-b7f7d658c36d", - "value": 22.0, - "version_uuid": "dbc79b9e-c1e3-4ee0-bdd4-f577bc7fad49" - }, - { - "argument_index": 7, - "default_value": 9.0, - "display_name": "Saturday Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_saturday", - "required": true, - "type": "Double", - "uuid": "6befd661-d33c-4e9c-b5da-d551f07f974e", - "value": 6.0, - "version_uuid": "135555a9-5a1e-44cf-b2c8-c769496545d1" - }, - { - "argument_index": 8, - "default_value": "true", - "display_name": "Apply Schedule Changes to Sundays?", - "domain_type": "Enumeration", - "name": "apply_sunday", - "required": true, - "type": "Boolean", - "uuid": "049d3aed-07c6-4738-966f-aa6d6629dd4d", - "version_uuid": "839296c7-d9ae-45c9-bca2-ba7efb259977" - }, - { - "argument_index": 9, - "default_value": 18.0, - "display_name": "Sunday Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_sunday", - "required": true, - "type": "Double", - "uuid": "9c9b6c5e-22ad-4b05-a958-d98bcc1df10b", - "value": 22.0, - "version_uuid": "b1ac2c4d-da70-4eab-95cd-357c17395290" - }, - { - "argument_index": 10, - "default_value": 9.0, - "display_name": "Sunday Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_sunday", - "required": true, - "type": "Double", - "uuid": "0993c6ba-8bc8-4b7c-a50b-2c4185308936", - "value": 6.0, - "version_uuid": "430da5e1-4d90-49d2-81f0-6b9f0fecd5d0" - }, - { - "argument_index": 11, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Light Quantity ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "214628bb-bfa2-4207-a170-7d3a39add2ea", - "version_uuid": "3546361f-c2af-456e-84ba-5d51f69b447f" - }, - { - "argument_index": 12, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "4ffdc326-feba-4c58-93e5-c66293503856", - "version_uuid": "bb733c9f-3ddd-44bb-9e49-fba02955d00b" - }, - { - "argument_index": 13, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "8831fb8a-d896-44c9-a308-267c2dfead67", - "version_uuid": "57f9eb78-ba40-4895-bbdf-ee3750092f79" - }, - { - "argument_index": 14, - "default_value": 0.0, - "display_name": "O & M Costs Costs per Light Quantity ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "0d4f6f15-642a-4cf6-a02d-4c1f2898418f", - "version_uuid": "eee8ba3f-e7b5-4074-9b2c-54817e75f79a" - }, - { - "argument_index": 15, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "ea9db181-3f9a-41ba-8e22-5dec7f606972", - "version_uuid": "8da47172-fcf7-4569-b6eb-331e09df8137" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceNightTimeLightingLoads", - "bcl_measure_uuid": "93461778-59a1-49ca-8bbb-f4b939e4a9d8", - "bcl_measure_version_uuid": "e246ae10-f57d-4d5c-9b18-7e65795dd702", - "description": "This measure lets you set the lighting schedule profile values for a specific time of day, and for specific days of the week. This can be run across the entire model or a specific space type. Cost can be added per each light object.", - "display_name": "Reduce Night Time Lighting Loads Hotel 0.05", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Reduce Night Time Lighting Loads Hotel 0.05", - "output_file_type": "OSM", - "uuid": "8a903008-453f-4a2e-ab31-4dce4450e243", - "version_uuid": "3e4a592b-7476-4fab-add3-cead489facf6" - } - ], - "name": "Reduce Night Time Lighting Loads Group", - "uuid": "b7a0a6d3-b50f-4b52-88c7-42b32254b3f5", - "version_uuid": "337c1471-f550-4b64-81a2-466459ee18e1", - "workflow_index": 13, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Add Daylight Sensor at Center of Spaces with a Specified Space Type Assigned Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "076b1e74-3aa1-4dea-a35a-d2ad2c7c52ec", - "version_uuid": "a652f648-f88f-4ced-a33e-c01b1fee70bf" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor", - "value": "{81125e3e-d3ce-4ef9-ba9c-6e7437efdca8}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom", - "value": "{0658a18e-343c-41bf-b4ba-66e7c3fab1c2}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby", - "value": "{9f450f46-dc3e-44b3-9314-4cd14102ec6e}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen", - "value": "{bd500ca9-1c31-4a5a-a9f9-e32a5eadf0f1}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce", - "value": "{b689f00f-ae2b-4273-8455-4acd0b506b6f}" - } - ], - "display_name": "Add Daylight Sensors to Spaces of This Space Type", - "domain_type": "Enumeration", - "name": "space_type", - "required": true, - "type": "Choice", - "uuid": "cc062021-2b5d-4c0a-89d7-17c5f244b587", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}", - "version_uuid": "97104e3a-049a-4911-99ec-ea74ab7acf73" - }, - { - "argument_index": 1, - "default_value": 45.0, - "display_name": "Daylighting Setpoint (fc)", - "domain_type": "Interval", - "name": "setpoint", - "required": true, - "type": "Double", - "uuid": "2f4b5177-d637-47ca-aae4-193c4a775198", - "version_uuid": "4ba60aa2-d62d-46d8-b606-d8183b08aa59" - }, - { - "argument_index": 2, - "choices": [ - { - "choice_index": 0, - "display_name": "None", - "value": "None" - }, - { - "choice_index": 1, - "display_name": "Continuous", - "value": "Continuous" - }, - { - "choice_index": 2, - "display_name": "Stepped", - "value": "Stepped" - }, - { - "choice_index": 3, - "display_name": "Continuous/Off", - "value": "Continuous/Off" - } - ], - "default_value": "Continuous/Off", - "display_name": "Daylighting Control Type", - "domain_type": "Enumeration", - "name": "control_type", - "required": true, - "type": "Choice", - "uuid": "9602f529-e1d5-41a8-a5b5-f6a24589ab50", - "version_uuid": "45036ddc-2794-4f63-bb20-ec4d5c41c1a4" - }, - { - "argument_index": 3, - "default_value": 0.3, - "display_name": "Daylighting Minimum Input Power Fraction(min = 0 max = 0.6)", - "domain_type": "Interval", - "name": "min_power_fraction", - "required": true, - "type": "Double", - "uuid": "eff3cd9e-bb65-4ac1-b912-f038a09d3d34", - "version_uuid": "6a53d438-cbda-4f11-bfe5-fcbae41dc3cc" - }, - { - "argument_index": 4, - "default_value": 0.2, - "display_name": "Daylighting Minimum Light Output Fraction (min = 0 max = 0.6)", - "domain_type": "Interval", - "name": "min_light_fraction", - "required": true, - "type": "Double", - "uuid": "06a479a0-b002-4b80-8ec8-a93bf0fe5c39", - "version_uuid": "ca0eaa94-a635-4cb5-a59d-ec9520c5f755" - }, - { - "argument_index": 5, - "default_value": 30.0, - "display_name": "Sensor Height (inches)", - "domain_type": "Interval", - "name": "height", - "required": true, - "type": "Double", - "uuid": "0b7a04bd-98c3-4aa7-8d29-bd2ca8d7a2ec", - "version_uuid": "846f579f-2cd0-4bf1-a11e-b5b75449104f" - }, - { - "argument_index": 6, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Space for Daylight Sensor ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "a036e9d4-54a4-4a74-a307-c2aaa284db1d", - "value": 200.0, - "version_uuid": "a60fe483-d524-4096-997e-4d137bba78ac" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "Demolition Costs per Space for Daylight Sensor ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "3c71cc53-cad5-4930-a820-c5fe1d2a5d7a", - "version_uuid": "d0c51e7b-3017-4e0e-9321-df1c8db069ea" - }, - { - "argument_index": 8, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "85d8bf80-0d40-417c-80a8-f4cd7644d52c", - "version_uuid": "ae22da4d-0c93-4348-b8c5-a75d24efd027" - }, - { - "argument_index": 9, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "eff0ca06-9318-4e09-9839-ef66823b33ad", - "version_uuid": "e032733f-15b3-4e40-9b3f-11466c9dcec0" - }, - { - "argument_index": 10, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "e0b4d28a-59ad-4abd-bcc3-c269d6c6a0db", - "version_uuid": "7213a382-05d3-4497-80ea-c7a5f09a9f5b" - }, - { - "argument_index": 11, - "default_value": 0.0, - "display_name": "O & M Costs per Space for Daylight Sensor ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "9b6c124e-b620-4b3c-9363-0d9658505c41", - "version_uuid": "5604054b-9a0f-48f6-869b-36721432e359" - }, - { - "argument_index": 12, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "31f96968-a4f1-4684-b620-8a96173e79e9", - "version_uuid": "16c8b485-6eef-4bc6-857c-caf0f2bfc705" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddDaylightSensors", - "bcl_measure_uuid": "62babdc7-c81e-4dfd-96e8-af1628a55167", - "bcl_measure_version_uuid": "eba01815-54b8-4784-9ffc-85eccd1ff5fa", - "description": "This measure will add daylighting controls to spaces that that have space types assigned with names containing the string in the argument. You can also add a cost per space for sensors added to the model.", - "display_name": "Add Daylight Sensor at Center of Spaces with a Specified Space Type Assigned Alternative", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Add Daylight Sensor at Center of Spaces with a Specified Space Type Assigned Alternative", - "output_file_type": "OSM", - "uuid": "4890d17c-954d-40a3-828a-1c9d0d424754", - "version_uuid": "802812a4-299b-4c01-9e81-c823346a02d7" - } - ], - "name": "Add Daylight Sensor at Center of Spaces with a Specified Space Type Assigned Group", - "uuid": "713ff9f3-e160-4be7-832d-84c4f7a8d8ab", - "version_uuid": "8112bc99-0d9a-464b-afd9-a78291c04ad5", - "workflow_index": 14, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Add Cost per Floor Area to Lights Group", - "measures": [ - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor LightsDef", - "value": "{9eb79eb6-9674-4b62-bc9e-54135946502c}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom LightsDef", - "value": "{1abcc6da-0e98-47bc-af3d-4bbaf676520a}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby LightsDef", - "value": "{406638e8-d46e-468f-ac7b-d1b1adba2ea8}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining Lights Definition", - "value": "{77223ff1-a62c-4bcb-ac17-b4f4ce605541}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen Lights Definition", - "value": "{715a50c1-785c-4152-80fd-cfeffd5c75d7}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding Lights Definition", - "value": "{eaf738bb-ff06-48a3-af6d-ba0ee1a43b75}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce Lights Definition", - "value": "{c5c5cef2-56f5-4d72-ad79-ea904ebf234d}" - } - ], - "display_name": "Choose a Watt per Area Lights Definition to Add Costs to.", - "domain_type": "Enumeration", - "name": "lights_def", - "required": true, - "type": "Choice", - "uuid": "9646ac1b-d0c4-4a0b-b6ef-cad577ba87bf", - "value": "{eaf738bb-ff06-48a3-af6d-ba0ee1a43b75}", - "version_uuid": "8a3452a0-a2d3-45b1-a983-5a627f3cf72a" - }, - { - "argument_index": 1, - "default_value": "true", - "display_name": "Remove Existing Costs?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "67acaba8-fb5b-4739-9026-82612426c605", - "version_uuid": "516afe07-4579-42f4-97ab-de66e180f4d1" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Material and Installation Costs for Definition per Floor Area ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_ip", - "required": true, - "type": "Double", - "uuid": "d7577f3e-9e2b-42e2-ad0b-a38d4c3d5b79", - "value": 10.0, - "version_uuid": "58cb3964-fc8d-4d02-848d-980e92b7c624" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Demolition Costs for Definition per Floor Area ($/ft^2).", - "domain_type": "Interval", - "name": "demolition_cost_ip", - "required": true, - "type": "Double", - "uuid": "3110b97a-81e1-48b0-940f-f60fe7af2401", - "version_uuid": "66f4c688-56f7-4c12-a701-222f7f69e78c" - }, - { - "argument_index": 4, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "8fd38e2a-0cfc-4cf6-8782-2de5c53a6efb", - "version_uuid": "02bded9d-687b-49dd-ac6f-a66d306512d9" - }, - { - "argument_index": 5, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Definition?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "7f879b2f-816c-45be-9a56-e6a264623c37", - "version_uuid": "29549fb6-10f1-4f70-a4d8-3aef295cfc5b" - }, - { - "argument_index": 6, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "793020eb-a88f-4c6f-a0fa-337fa5eed50f", - "version_uuid": "2d199719-3c0f-4640-b711-53f939e85fef" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "O & M Costs for Definition per Floor Area ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost_ip", - "required": true, - "type": "Double", - "uuid": "56f5beec-42ea-4242-b6a5-dd8e98c999dc", - "version_uuid": "673476e2-4fd0-47cc-9c47-2008f5c14529" - }, - { - "argument_index": 8, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "f36c6745-f800-4292-b1f5-0705d938ebbd", - "version_uuid": "d6d4845d-1efb-4753-b5d3-2cc85e7e38e4" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddCostPerFloorAreaToLights", - "bcl_measure_uuid": "eeec5adf-b3a8-498a-b0d1-eabd81ca0620", - "bcl_measure_version_uuid": "6a9f59c5-7e8a-4a74-9bdb-0e61ebcaffe2", - "description": "This measure will create life cycle cost objects associated with lights. You can choose any light definition used in the model that has a watt/area power. You can set a material & installation cost, demolition cost, and O&M costs. Optionally existing cost objects already associated with the selected light definition can be deleted. This measure will not affect energy use of the building.", - "display_name": "Add Cost per Floor Area to Lights", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 0, - "measure_type": "RubyMeasure", - "name": "Add Cost per Floor Area to Lights", - "output_file_type": "OSM", - "uuid": "cba65331-eae4-4ce7-a6fe-d7303d7fec34", - "version_uuid": "4cb3f57c-c156-4875-a1cc-facb723bf102" - } - ], - "name": "Add Cost per Floor Area to Lights Group", - "uuid": "bb14a79c-41fe-478c-9f52-ec878e8ab639", - "version_uuid": "07262c70-e3c0-40c1-ab1c-6ee4383fadd2", - "workflow_index": 15, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Reduce Lighting Loads by Percentage Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "71fa4c5d-01b0-4acb-9cf4-2eab94581032", - "version_uuid": "6037af63-dd21-4fbc-9595-6a870b831f0c" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor", - "value": "{81125e3e-d3ce-4ef9-ba9c-6e7437efdca8}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom", - "value": "{0658a18e-343c-41bf-b4ba-66e7c3fab1c2}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby", - "value": "{9f450f46-dc3e-44b3-9314-4cd14102ec6e}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen", - "value": "{bd500ca9-1c31-4a5a-a9f9-e32a5eadf0f1}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce", - "value": "{b689f00f-ae2b-4273-8455-4acd0b506b6f}" - }, - { - "choice_index": 7, - "display_name": "*Entire Building*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.", - "domain_type": "Enumeration", - "name": "space_type", - "required": true, - "type": "Choice", - "uuid": "6f1009c4-f609-4be2-821a-92abaa8cd5f4", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}", - "version_uuid": "94e12c23-3f15-4faa-aaf1-2a1a60b9f693" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Lighting Power Reduction (%).", - "domain_type": "Interval", - "name": "lighting_power_reduction_percent", - "required": true, - "type": "Double", - "uuid": "165ee94b-7e0a-4c64-a81c-b4080a07bf03", - "version_uuid": "601f9134-ee65-4c01-b417-133e3e9ededa" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Cost for Lighting per Floor Area (%).", - "domain_type": "Interval", - "name": "material_and_installation_cost", - "required": true, - "type": "Double", - "uuid": "920c5015-964f-4eb1-8788-e38e583dffd4", - "value": 5.0, - "version_uuid": "09421b97-2e3f-49be-8aba-aef812b1f51e" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Increase in Demolition Costs for Lighting per Floor Area (%).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "9608bec9-647d-479b-8d94-e569e2f254e8", - "version_uuid": "bb191774-08d8-46ed-9b1a-42b6989bd632" - }, - { - "argument_index": 4, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "c4d8ece7-accb-4a87-9622-aca4d026a6de", - "version_uuid": "396e304d-cd0f-4430-9cf4-fd8081bc2a3d" - }, - { - "argument_index": 5, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "16c6de84-a42b-41da-bd5e-540d2f88f813", - "version_uuid": "ce219627-50c3-40b7-955d-88100c382e3b" - }, - { - "argument_index": 6, - "default_value": 15, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "e4a7060f-098a-4d51-95eb-9f0e8bbea88d", - "version_uuid": "3f3953c4-5183-4848-a3d2-2cc170bd9596" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "Increase O & M Costs for Lighting per Floor Area (%).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "6ab8ddee-985b-4064-8f46-7723968981cb", - "version_uuid": "75f9b808-c73b-4f2c-83e6-cdd8d7740e21" - }, - { - "argument_index": 8, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "2ae35bae-a409-499f-9cef-ae33119029cd", - "version_uuid": "70459998-b0e8-4bc9-9afb-6862be3f0455" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceLightingLoadsByPercentage", - "bcl_measure_uuid": "d37b7ed5-887a-4d1f-b304-259462eadbe9", - "bcl_measure_version_uuid": "20e37ae9-c970-478a-bf1b-d80e0feb713d", - "description": "The lighting system in this building uses more power per area than is required with the latest lighting technologies. Replace the lighting system with a newer, more efficient lighting technology. Newer technologies provide the same amount of light but use less energy in the process.", - "display_name": "Reduce Lighting Loads by Percentage Office 30%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Reduce Lighting Loads by Percentage Office 30%", - "output_file_type": "OSM", - "uuid": "cf45157c-465c-47bb-9723-18a151064504", - "version_uuid": "e7365976-6921-42bf-b3b0-3a70d901d5b6" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor", - "value": "{81125e3e-d3ce-4ef9-ba9c-6e7437efdca8}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom", - "value": "{0658a18e-343c-41bf-b4ba-66e7c3fab1c2}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby", - "value": "{9f450f46-dc3e-44b3-9314-4cd14102ec6e}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen", - "value": "{bd500ca9-1c31-4a5a-a9f9-e32a5eadf0f1}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce", - "value": "{b689f00f-ae2b-4273-8455-4acd0b506b6f}" - }, - { - "choice_index": 7, - "display_name": "*Entire Building*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.", - "domain_type": "Enumeration", - "name": "space_type", - "required": true, - "type": "Choice", - "uuid": "aad5a3d4-1c7a-4e8c-8514-0dc397318cde", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}", - "version_uuid": "03552c9a-5dab-42b1-8f58-aa8c2499ff81" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Lighting Power Reduction (%).", - "domain_type": "Interval", - "name": "lighting_power_reduction_percent", - "required": true, - "type": "Double", - "uuid": "489f52d0-5525-4bc9-9745-278716c4e787", - "value": 50.0, - "version_uuid": "f9908d8a-1923-4b14-a18e-e0da0f545dc3" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Cost for Lighting per Floor Area (%).", - "domain_type": "Interval", - "name": "material_and_installation_cost", - "required": true, - "type": "Double", - "uuid": "9e8e0783-f161-4fdc-8b0f-d858565fb7d6", - "value": 10.0, - "version_uuid": "5d8de26a-dffe-4988-8fee-b8badfcf45e8" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Increase in Demolition Costs for Lighting per Floor Area (%).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "620bbd15-1ca3-4010-8f1a-68c6c7fdcacc", - "version_uuid": "9b33b2aa-41dd-43ef-a8d9-e5e22012bbbf" - }, - { - "argument_index": 4, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "b810f065-17ac-42c6-9e1a-e83a9901e154", - "version_uuid": "563f01f4-fc74-453b-8817-49f0f47fdb12" - }, - { - "argument_index": 5, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "b5497664-ed6a-493f-9d11-705b8a96b1fc", - "version_uuid": "dc7f76e9-2d88-4895-9be2-91e4f409ad29" - }, - { - "argument_index": 6, - "default_value": 15, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "fd3ba1db-511f-4b04-b41b-6a3326253b2d", - "version_uuid": "d86477f2-b580-4a05-b6e7-e46ac3934230" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "Increase O & M Costs for Lighting per Floor Area (%).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "0338ef5e-3701-425e-9912-f29ebb40cd75", - "version_uuid": "30ccd757-7c9c-4291-8487-18eaf43c33ec" - }, - { - "argument_index": 8, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "65c69187-867d-4a0e-8cc8-197b2ea81faf", - "version_uuid": "4ac3a6b0-4a51-440c-bcbc-a7ff71998d44" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceLightingLoadsByPercentage", - "bcl_measure_uuid": "d37b7ed5-887a-4d1f-b304-259462eadbe9", - "bcl_measure_version_uuid": "20e37ae9-c970-478a-bf1b-d80e0feb713d", - "description": "The lighting system in this building uses more power per area than is required with the latest lighting technologies. Replace the lighting system with a newer, more efficient lighting technology. Newer technologies provide the same amount of light but use less energy in the process.", - "display_name": "Reduce Lighting Loads by Percentage Office 50%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Reduce Lighting Loads by Percentage Office 50%", - "output_file_type": "OSM", - "uuid": "04a30665-cf47-47be-9727-802d12f03613", - "version_uuid": "71c3cfba-28d1-41f8-9b4b-1ae6cad02e38" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor", - "value": "{81125e3e-d3ce-4ef9-ba9c-6e7437efdca8}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom", - "value": "{0658a18e-343c-41bf-b4ba-66e7c3fab1c2}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby", - "value": "{9f450f46-dc3e-44b3-9314-4cd14102ec6e}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen", - "value": "{bd500ca9-1c31-4a5a-a9f9-e32a5eadf0f1}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce", - "value": "{b689f00f-ae2b-4273-8455-4acd0b506b6f}" - }, - { - "choice_index": 7, - "display_name": "*Entire Building*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.", - "domain_type": "Enumeration", - "name": "space_type", - "required": true, - "type": "Choice", - "uuid": "7edf9278-69e4-449f-b1bc-7e4ff0f5ae1b", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}", - "version_uuid": "28709771-e7bf-4b75-8f08-e13e43b518e2" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Lighting Power Reduction (%).", - "domain_type": "Interval", - "name": "lighting_power_reduction_percent", - "required": true, - "type": "Double", - "uuid": "7d69b4a1-6730-47a4-b050-a223441c8b65", - "value": 70.0, - "version_uuid": "cc7a8156-2ba9-4020-a292-34f173ae1a9d" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Cost for Lighting per Floor Area (%).", - "domain_type": "Interval", - "name": "material_and_installation_cost", - "required": true, - "type": "Double", - "uuid": "21473632-47f2-4ce8-9504-a3b42bc42065", - "value": 15.0, - "version_uuid": "47395886-c216-4790-8732-a9be4b738113" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Increase in Demolition Costs for Lighting per Floor Area (%).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "b23a725b-304e-4bb6-b687-2290ff9dc242", - "version_uuid": "e0f1ab4d-bffc-4225-a48c-ea1389c4abae" - }, - { - "argument_index": 4, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "459f54d4-780e-4abe-8715-a8bac8ffee82", - "version_uuid": "077e3d0b-d05c-44ad-b085-fdc3ed35a3ff" - }, - { - "argument_index": 5, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "1fadc700-6b48-4ff5-9160-5ef7eb7381fc", - "version_uuid": "526b73f6-41df-43b8-96c0-e48324508e8e" - }, - { - "argument_index": 6, - "default_value": 15, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "687785ff-0db4-4d1d-a637-44ab0b4b02e8", - "version_uuid": "4aaa2b92-4546-43cb-bd09-efab12a8ede5" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "Increase O & M Costs for Lighting per Floor Area (%).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "04a55457-feae-496a-ac19-b219970815db", - "version_uuid": "1b0b6170-2352-49d1-a717-bba19d0544b6" - }, - { - "argument_index": 8, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "d7f373fc-578e-4bb6-bebb-af39dbd7f489", - "version_uuid": "7bd9ca57-dca4-458d-bfba-62cf27843949" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceLightingLoadsByPercentage", - "bcl_measure_uuid": "d37b7ed5-887a-4d1f-b304-259462eadbe9", - "bcl_measure_version_uuid": "20e37ae9-c970-478a-bf1b-d80e0feb713d", - "description": "The lighting system in this building uses more power per area than is required with the latest lighting technologies. Replace the lighting system with a newer, more efficient lighting technology. Newer technologies provide the same amount of light but use less energy in the process.", - "display_name": "Reduce Lighting Loads by Percentage Office 70%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Reduce Lighting Loads by Percentage Office 70%", - "output_file_type": "OSM", - "uuid": "10155c67-3701-4675-9b5a-1a25617006a5", - "version_uuid": "415414ba-9eca-455c-8043-57035203056c" - } - ], - "name": "Reduce Lighting Loads by Percentage Group", - "uuid": "6ee67130-25d1-41e7-9f93-adcea76b9fc5", - "version_uuid": "147c7489-f515-4768-aafa-ee777386d1de", - "workflow_index": 16, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Swap Lights Definition Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "40ed08ab-3577-407e-983a-e048e7b9f045", - "version_uuid": "9c745c44-1cc5-410d-9ca8-d858dc68e010" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor LightsDef", - "value": "{9eb79eb6-9674-4b62-bc9e-54135946502c}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom LightsDef", - "value": "{1abcc6da-0e98-47bc-af3d-4bbaf676520a}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby LightsDef", - "value": "{406638e8-d46e-468f-ac7b-d1b1adba2ea8}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining Lights Definition", - "value": "{77223ff1-a62c-4bcb-ac17-b4f4ce605541}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen Lights Definition", - "value": "{715a50c1-785c-4152-80fd-cfeffd5c75d7}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding Lights Definition", - "value": "{eaf738bb-ff06-48a3-af6d-ba0ee1a43b75}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce Lights Definition", - "value": "{c5c5cef2-56f5-4d72-ad79-ea904ebf234d}" - } - ], - "display_name": "Choose the Lights Definition you Want to Replace.", - "domain_type": "Enumeration", - "name": "old_lights_def", - "required": true, - "type": "Choice", - "uuid": "097162d2-e2ec-452c-8bb6-33addda4cb14", - "value": "{406638e8-d46e-468f-ac7b-d1b1adba2ea8}", - "version_uuid": "148b4b58-9e64-45bb-941a-fffa24495dd4" - }, - { - "argument_index": 1, - "choices": [ - { - "choice_index": 0, - "display_name": "ASHRAE 189.1-2009 ClimateZone 1-3 LargeHotel Banquet LightsDef", - "value": "{f3d835af-ac05-45ee-8958-380f92f10c2c}" - }, - { - "choice_index": 1, - "display_name": "ASHRAE 189.1-2009 ClimateZone 1-3 LargeHotel Cafe LightsDef", - "value": "{4fb0a791-d35e-4fe3-8879-bc61769d126d}" - }, - { - "choice_index": 2, - "display_name": "ASHRAE 189.1-2009 ClimateZone 1-3 LargeHotel Corridor LightsDef", - "value": "{04343f31-0cc1-4557-872b-c5e63ef86b74}" - }, - { - "choice_index": 3, - "display_name": "ASHRAE 189.1-2009 ClimateZone 1-3 LargeHotel GuestRoom LightsDef", - "value": "{eacd122b-bc90-44c9-b8f6-94ad70ee7566}" - }, - { - "choice_index": 4, - "display_name": "ASHRAE 189.1-2009 ClimateZone 1-3 LargeHotel Kitchen LightsDef", - "value": "{b22dbe67-a851-4339-b249-671e834cb0be}" - }, - { - "choice_index": 5, - "display_name": "ASHRAE 189.1-2009 ClimateZone 1-3 LargeHotel Laundry LightsDef", - "value": "{5b26fc20-2edc-4241-aac0-b7311f25f06e}" - }, - { - "choice_index": 6, - "display_name": "ASHRAE 189.1-2009 ClimateZone 1-3 LargeHotel Lobby LightsDef", - "value": "{2aec35ed-b4c1-483e-b371-24e85a6f6a18}" - }, - { - "choice_index": 7, - "display_name": "ASHRAE 189.1-2009 ClimateZone 1-3 LargeHotel Mechanical LightsDef", - "value": "{52e3f70f-2d8c-4174-b332-4a808e3593d7}" - }, - { - "choice_index": 8, - "display_name": "ASHRAE 189.1-2009 ClimateZone 1-3 LargeHotel Retail LightsDef", - "value": "{b9427244-f185-4df3-be84-eb6cdf81b84f}" - }, - { - "choice_index": 9, - "display_name": "ASHRAE 189.1-2009 ClimateZone 1-3 LargeHotel Storage LightsDef", - "value": "{ff2a66a3-dc7d-44fa-afff-e94e8cfe8f64}" - }, - { - "choice_index": 10, - "display_name": "ASHRAE 189.1-2009 ClimateZone 4-8 LargeHotel Banquet LightsDef", - "value": "{05449e1c-6fba-4e77-8928-d2e4d8bf7833}" - }, - { - "choice_index": 11, - "display_name": "ASHRAE 189.1-2009 ClimateZone 4-8 LargeHotel Cafe LightsDef", - "value": "{413cf4a3-726b-4518-84b4-83b16413a981}" - }, - { - "choice_index": 12, - "display_name": "ASHRAE 189.1-2009 ClimateZone 4-8 LargeHotel Corridor LightsDef", - "value": "{6d73f734-2064-4f9d-9399-6c2ba28a7156}" - }, - { - "choice_index": 13, - "display_name": "ASHRAE 189.1-2009 ClimateZone 4-8 LargeHotel GuestRoom LightsDef", - "value": "{5a6ba357-5acf-4e0f-9117-7bcb6f3c1390}" - }, - { - "choice_index": 14, - "display_name": "ASHRAE 189.1-2009 ClimateZone 4-8 LargeHotel Kitchen LightsDef", - "value": "{ff7fd11b-3d58-43b7-ade3-93e1edda1dbb}" - }, - { - "choice_index": 15, - "display_name": "ASHRAE 189.1-2009 ClimateZone 4-8 LargeHotel Laundry LightsDef", - "value": "{0531c91a-ed2e-482a-b8b1-3fe83afe6eae}" - }, - { - "choice_index": 16, - "display_name": "ASHRAE 189.1-2009 ClimateZone 4-8 LargeHotel Lobby LightsDef", - "value": "{98f9f51b-1103-4291-9dc5-1322f15bceb0}" - }, - { - "choice_index": 17, - "display_name": "ASHRAE 189.1-2009 ClimateZone 4-8 LargeHotel Mechanical LightsDef", - "value": "{d45ca4c1-23bd-4e2d-8140-e0d421cb450e}" - }, - { - "choice_index": 18, - "display_name": "ASHRAE 189.1-2009 ClimateZone 4-8 LargeHotel Retail LightsDef", - "value": "{1ca365a8-324e-4f9e-8ec6-5d72364fb19d}" - }, - { - "choice_index": 19, - "display_name": "ASHRAE 189.1-2009 ClimateZone 4-8 LargeHotel Storage LightsDef", - "value": "{4693d6c9-37f8-4a03-9862-3b85be61bf75}" - }, - { - "choice_index": 20, - "display_name": "ASHRAE 90.1-2004 LargeHotel Banquet LightsDef", - "value": "{6584fb67-4221-4358-837e-a0a5fa9e7648}" - }, - { - "choice_index": 21, - "display_name": "ASHRAE 90.1-2004 LargeHotel Cafe LightsDef", - "value": "{2995d6f9-d818-450a-b8fb-3ab97275c179}" - }, - { - "choice_index": 22, - "display_name": "ASHRAE 90.1-2004 LargeHotel Corridor LightsDef", - "value": "{212104c2-e053-4a10-958a-a74265c409c4}" - }, - { - "choice_index": 23, - "display_name": "ASHRAE 90.1-2004 LargeHotel GuestRoom LightsDef", - "value": "{415c64d9-db71-4d94-9e13-97c27fe71969}" - }, - { - "choice_index": 24, - "display_name": "ASHRAE 90.1-2004 LargeHotel Kitchen LightsDef", - "value": "{351e94c2-d121-49ff-9d72-5114e8cc6ca1}" - }, - { - "choice_index": 25, - "display_name": "ASHRAE 90.1-2004 LargeHotel Laundry LightsDef", - "value": "{ba346bd0-9bd4-4fde-a670-1c29e7114cd0}" - }, - { - "choice_index": 26, - "display_name": "ASHRAE 90.1-2004 LargeHotel Lobby LightsDef", - "value": "{8de05828-30be-4fdd-bbd8-1b89cac537f2}" - }, - { - "choice_index": 27, - "display_name": "ASHRAE 90.1-2004 LargeHotel Mechanical LightsDef", - "value": "{46ae4b6d-3ef1-4908-af4d-c16a67223ef8}" - }, - { - "choice_index": 28, - "display_name": "ASHRAE 90.1-2004 LargeHotel Retail LightsDef", - "value": "{5e8ba67d-7d81-4020-9bd6-074966a14aaf}" - }, - { - "choice_index": 29, - "display_name": "ASHRAE 90.1-2004 LargeHotel Storage LightsDef", - "value": "{b643a201-9b89-4b82-b542-6211c1354693}" - }, - { - "choice_index": 30, - "display_name": "CBECS 1980-2004 LargeHotel Banquet LightsDef", - "value": "{968e39f4-99d3-46b8-83d0-30c3685c289f}" - }, - { - "choice_index": 31, - "display_name": "CBECS 1980-2004 LargeHotel Cafe LightsDef", - "value": "{47d7f21c-3e5c-4ee2-8f91-3606ef2c2f47}" - }, - { - "choice_index": 32, - "display_name": "CBECS 1980-2004 LargeHotel Corridor LightsDef", - "value": "{9eb79eb6-9674-4b62-bc9e-54135946502c}" - }, - { - "choice_index": 33, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom LightsDef", - "value": "{1abcc6da-0e98-47bc-af3d-4bbaf676520a}" - }, - { - "choice_index": 34, - "display_name": "CBECS 1980-2004 LargeHotel Kitchen LightsDef", - "value": "{46b72663-4141-496f-af4f-160540c3873b}" - }, - { - "choice_index": 35, - "display_name": "CBECS 1980-2004 LargeHotel Laundry LightsDef", - "value": "{35e966b8-82bd-475c-8c26-2b96eee141d7}" - }, - { - "choice_index": 36, - "display_name": "CBECS 1980-2004 LargeHotel Lobby LightsDef", - "value": "{406638e8-d46e-468f-ac7b-d1b1adba2ea8}" - }, - { - "choice_index": 37, - "display_name": "CBECS 1980-2004 LargeHotel Mechanical LightsDef", - "value": "{771462e9-c8be-452e-992a-3796911995d5}" - }, - { - "choice_index": 38, - "display_name": "CBECS 1980-2004 LargeHotel Retail LightsDef", - "value": "{1e7a391b-5bde-4865-9a91-a4ca2437aad6}" - }, - { - "choice_index": 39, - "display_name": "CBECS 1980-2004 LargeHotel Storage LightsDef", - "value": "{f8db1b5d-7bf5-43e7-9ee2-c9d86f34b59e}" - }, - { - "choice_index": 40, - "display_name": "CBECS Before-1980 LargeHotel Banquet LightsDef", - "value": "{c5409ee4-7531-4dd2-b9f4-4979f282384f}" - }, - { - "choice_index": 41, - "display_name": "CBECS Before-1980 LargeHotel Cafe LightsDef", - "value": "{efc98e67-98ec-43bb-8e43-2a7cd3780ebf}" - }, - { - "choice_index": 42, - "display_name": "CBECS Before-1980 LargeHotel Corridor LightsDef", - "value": "{6574e316-63e1-4821-b294-303fed3f37b3}" - }, - { - "choice_index": 43, - "display_name": "CBECS Before-1980 LargeHotel GuestRoom LightsDef", - "value": "{9e4a2e37-0785-4b00-a008-274e2e44d186}" - }, - { - "choice_index": 44, - "display_name": "CBECS Before-1980 LargeHotel Kitchen LightsDef", - "value": "{e8147f6f-54be-4895-abf8-ceb7bf948360}" - }, - { - "choice_index": 45, - "display_name": "CBECS Before-1980 LargeHotel Laundry LightsDef", - "value": "{161888b0-5dfb-40e5-afed-d1687bdf20ef}" - }, - { - "choice_index": 46, - "display_name": "CBECS Before-1980 LargeHotel Lobby LightsDef", - "value": "{1aeb914e-7940-4c4f-a75d-f5a26dc83f24}" - }, - { - "choice_index": 47, - "display_name": "CBECS Before-1980 LargeHotel Mechanical LightsDef", - "value": "{c1ddebef-105e-4356-96dd-172641a5e63c}" - }, - { - "choice_index": 48, - "display_name": "CBECS Before-1980 LargeHotel Retail LightsDef", - "value": "{7c1ae7a8-3ca1-4913-87fb-72af4bfa88ea}" - }, - { - "choice_index": 49, - "display_name": "CBECS Before-1980 LargeHotel Storage LightsDef", - "value": "{08c9b01a-3b2b-4b7c-9dc7-baf6743ff94f}" - }, - { - "choice_index": 50, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining Lights Definition", - "value": "{77223ff1-a62c-4bcb-ac17-b4f4ce605541}" - }, - { - "choice_index": 51, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen Lights Definition", - "value": "{715a50c1-785c-4152-80fd-cfeffd5c75d7}" - }, - { - "choice_index": 52, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding Lights Definition", - "value": "{eaf738bb-ff06-48a3-af6d-ba0ee1a43b75}" - }, - { - "choice_index": 53, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Deli/Bakery Lights Definition", - "value": "{8fbf3f39-fe51-4f8b-858d-08d48de92070}" - }, - { - "choice_index": 54, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket DryStorage Lights Definition", - "value": "{feaba1fa-b71f-461c-9795-5f886306abbb}" - }, - { - "choice_index": 55, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Office Lights Definition", - "value": "{416095d8-7881-4b4f-ae67-03bb70b53042}" - }, - { - "choice_index": 56, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce Lights Definition", - "value": "{c5c5cef2-56f5-4d72-ad79-ea904ebf234d}" - } - ], - "display_name": "Choose the Lights Definition to Use in Place of Removed Definition.", - "domain_type": "Enumeration", - "name": "new_lights_def", - "required": true, - "type": "Choice", - "uuid": "e53e333b-bae4-43b5-9700-2f09af48da2d", - "value": "{f3d835af-ac05-45ee-8958-380f92f10c2c}", - "version_uuid": "6d81d5e1-7994-44cc-a4ca-47cf03dbcd45" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Definition?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "6c730e33-ba89-4065-bc41-02755b1401b6", - "version_uuid": "80d338d6-5eb0-40de-b9b5-e6886d8b315c" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/SwapLightsDefinition", - "bcl_measure_uuid": "3bbebd1f-69fd-4d49-96fe-1284bce962f4", - "bcl_measure_version_uuid": "56eda2a0-2f0d-440f-863c-708a75960d99", - "description": "This measure will swap out one lights definition for another. All objects that had referred to the original definition will now refer to the new one.", - "display_name": "Swap Lights Definition Swap Banquet Lights for Lobby Lights", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Swap Lights Definition Swap Banquet Lights for Lobby Lights", - "output_file_type": "OSM", - "uuid": "edc7e430-d2ec-4bae-95cd-c436afd6c668", - "version_uuid": "e0ff4a29-5d4e-4f6a-ad9e-ce28a8066510" - } - ], - "name": "Swap Lights Definition Group", - "uuid": "2eed4503-78b3-4b98-b9ca-a3f463267876", - "version_uuid": "821e35db-2063-4fae-8ff1-d4be7ba6feeb", - "workflow_index": 17, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Add Exterior Lights Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "11be43b9-900b-45b8-903b-4b9db8682ef3", - "version_uuid": "abd3c71d-0a80-42f4-a7ca-7725d2644b4e" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 1000.0, - "display_name": "Exterior Lighting Design Power (W)", - "domain_type": "Interval", - "name": "ext_lighting_level", - "required": true, - "type": "Double", - "uuid": "677096bc-b287-4e5e-8d98-b4f3fb273d50", - "version_uuid": "ddcdeaec-4ef8-4fa4-ae27-0a7a7ee874d2" - }, - { - "argument_index": 1, - "default_value": "Exterior Facade Lighting", - "display_name": "End-Use SubCategory", - "domain_type": "Enumeration", - "name": "end_use_subcategory", - "required": true, - "type": "String", - "uuid": "fb5352b2-6b15-4db4-a566-e0e090dd246d", - "version_uuid": "fb8b4b49-16b7-418d-89cb-3c84b1c8c2d5" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Remove Existing Exterior Lights in the Project?", - "domain_type": "Enumeration", - "name": "remove_existing_ext_lights", - "required": true, - "type": "Boolean", - "uuid": "949f4d50-7378-441a-8499-3500fb396a48", - "version_uuid": "907fc513-8321-486d-91e7-48e0c70b10eb" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Material and Installation Costs for Exterior Lights ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "35c2e067-f5aa-4084-9de6-3eafdd34bae8", - "value": 3000.0, - "version_uuid": "a613baa8-77b3-4810-bfec-c06c396457dc" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Demolition Costs for Exterior Lights ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "f2818585-f03c-448f-a7fd-c4b87e6938aa", - "version_uuid": "0bffb5de-d57e-4c6a-9a33-a6cc7ef31a2d" - }, - { - "argument_index": 5, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "9ba51b0a-890f-49fe-80ed-dd49e2b822e8", - "version_uuid": "e334245c-6798-463e-bcd9-0e12d65438ad" - }, - { - "argument_index": 6, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "7693db5f-9636-45c1-b16e-59fe1a74510b", - "version_uuid": "7d52435e-7a0f-4ebb-9f1f-971bd6ffb3ec" - }, - { - "argument_index": 7, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "f8e5dea4-07d8-40a4-bbf5-d09f12cc94d5", - "version_uuid": "daa29352-8165-4748-8e94-b0c78f0ac735" - }, - { - "argument_index": 8, - "default_value": 0.0, - "display_name": "O & M Costs for Exterior Lights ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "1031b6c2-1d73-4841-acc4-61db63d119d2", - "version_uuid": "36baa552-e6bf-41be-9dc1-404f7471d91e" - }, - { - "argument_index": 9, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "39637174-e181-4f45-b2bd-7e70d7dc4202", - "version_uuid": "a0ab148d-0781-4c9c-b69d-3459bd3da96c" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddExteriorLights", - "bcl_measure_uuid": "34f9050c-5f8f-4d10-8e46-30ca8333114d", - "bcl_measure_version_uuid": "95328b94-449b-4e5f-805e-fbdb4c5671dd", - "description": "Add exterior lighting to the building. This may be in addition to or in place of existing exterior lighting. This lighting will run from sunset to sunrise. Optionally you can add costs to the lights.", - "display_name": "Add Exterior Lights Alternative", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Add Exterior Lights Alternative", - "output_file_type": "OSM", - "uuid": "414a794c-fbd3-4cc5-a323-66e64cf4201a", - "version_uuid": "f63fabed-4795-482e-a4dd-c9f423f4178d" - } - ], - "name": "Add Exterior Lights Group", - "uuid": "9f877f52-aa42-4b53-b8e0-01218c4d6df8", - "version_uuid": "4e058f9b-56fa-402e-9e07-eaf40a2de835", - "workflow_index": 18, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Reduce Night Time Electric Equipment Loads Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "b886f4ff-2688-4212-84f9-8e4cba97ed28", - "version_uuid": "b01b85b3-6f22-4adf-982d-b195d329b42d" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom ElecDef", - "value": "{02d1a933-4461-41e3-8ea9-de4f21c9c33f}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel Lobby ElecDef", - "value": "{84c29f27-0cb0-4334-9b32-de7a25741240}" - }, - { - "choice_index": 2, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining Electric Equipment Definition", - "value": "{21498964-2fec-4262-a1d9-c5f2a1b5e9dd}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen Electric Equipment Definition", - "value": "{48121225-1807-479e-956f-2845c6be9617}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding Electric Equipment Definition", - "value": "{8ddfd95a-c93d-480b-883f-8baa9849c1a3}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce Electric Equipment Definition", - "value": "{dc597960-603a-4b67-b1d1-e51bc365e83c}" - } - ], - "display_name": "Pick an Electric Equipment Definition(schedules using this will be altered)", - "domain_type": "Enumeration", - "name": "elec_load_def", - "required": true, - "type": "Choice", - "uuid": "9a9c6f27-5ea8-414a-9fac-da66816671c4", - "value": "{8ddfd95a-c93d-480b-883f-8baa9849c1a3}", - "version_uuid": "cd749df7-b018-4e69-a116-1896ecb5a211" - }, - { - "argument_index": 1, - "default_value": 0.1, - "display_name": "Fractional Value for Night Time Load.", - "domain_type": "Interval", - "name": "fraction_value", - "required": true, - "type": "Double", - "uuid": "14c79c95-c5ec-4df8-9c9c-5862d1c534c0", - "value": 0.3, - "version_uuid": "1bde639e-25b9-41a8-a6d2-98e7cf28bf50" - }, - { - "argument_index": 2, - "default_value": "true", - "display_name": "Apply Schedule Changes to Weekday and Default Profiles?", - "domain_type": "Enumeration", - "name": "apply_weekday", - "required": true, - "type": "Boolean", - "uuid": "fe7ef470-55a3-4d84-834b-c64d64eab140", - "version_uuid": "4298e9d8-c514-4b14-9cb1-cbfd91d62712" - }, - { - "argument_index": 3, - "default_value": 18.0, - "display_name": "Weekday/Default Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_weekday", - "required": true, - "type": "Double", - "uuid": "2ea2a69e-d905-4eb3-8181-a04490a7a12a", - "version_uuid": "e6739579-a0fa-420a-a71d-aee3d2b599b6" - }, - { - "argument_index": 4, - "default_value": 9.0, - "display_name": "Weekday/Default Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_weekday", - "required": true, - "type": "Double", - "uuid": "357139ad-5e75-48bc-94ab-a531dc9020d0", - "version_uuid": "8b5a4522-b5bf-4ea1-a2c9-c69e21095069" - }, - { - "argument_index": 5, - "default_value": "true", - "display_name": "Apply Schedule Changes to Saturdays?", - "domain_type": "Enumeration", - "name": "apply_saturday", - "required": true, - "type": "Boolean", - "uuid": "b56ad0d4-f2f1-4a2f-80ea-b3ad868ecf1a", - "version_uuid": "50509661-1cfe-4464-b8e7-cd9ad1d7e904" - }, - { - "argument_index": 6, - "default_value": 18.0, - "display_name": "Saturday Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_saturday", - "required": true, - "type": "Double", - "uuid": "c1b60b85-c29b-405b-87a3-cc927542d844", - "version_uuid": "3165ebe2-e66c-442b-be73-02bf388928d1" - }, - { - "argument_index": 7, - "default_value": 9.0, - "display_name": "Saturday Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_saturday", - "required": true, - "type": "Double", - "uuid": "c1b4f277-92ef-4a4e-ab25-2309283c8b67", - "version_uuid": "75abb946-6800-481b-8261-7c438b4cb2fe" - }, - { - "argument_index": 8, - "default_value": "true", - "display_name": "Apply Schedule Changes to Sundays?", - "domain_type": "Enumeration", - "name": "apply_sunday", - "required": true, - "type": "Boolean", - "uuid": "b27de222-4d63-4404-b381-f492f282d0d7", - "version_uuid": "c94f7b3a-c9ce-4337-8a96-78f6b9c65d98" - }, - { - "argument_index": 9, - "default_value": 18.0, - "display_name": "Sunday Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_sunday", - "required": true, - "type": "Double", - "uuid": "b67003f0-9776-435b-a71a-8e5dcb1f1513", - "version_uuid": "6e3746e2-41ea-41f1-af56-0eb5a6db6cb4" - }, - { - "argument_index": 10, - "default_value": 9.0, - "display_name": "Sunday Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_sunday", - "required": true, - "type": "Double", - "uuid": "f9c76b25-630e-494b-a28f-617bf95d3c03", - "version_uuid": "43dc587a-208f-4d37-b2d3-27e750fab0d4" - }, - { - "argument_index": 11, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Electric Equipment Quantity ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "c67a7043-468c-438f-bc2a-82e46378be8a", - "version_uuid": "cc6bda97-68d8-4388-a877-702045b08c3a" - }, - { - "argument_index": 12, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "974b0812-194a-4a25-b4cf-aaf35d350463", - "version_uuid": "8b70b04a-4aaf-46b4-bd55-e778944cc52b" - }, - { - "argument_index": 13, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "2b8dba25-9841-4f03-88b0-56276bdb1f24", - "version_uuid": "f7bd5188-7aba-4eaa-b0e1-dd1acaf2c015" - }, - { - "argument_index": 14, - "default_value": 0.0, - "display_name": "O & M Costs Costs per Electric Equipment Quantity ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "004488eb-a09e-438a-9782-aaf6df76ddc4", - "version_uuid": "e132949b-e9e2-4f81-8d90-2c83f02b7758" - }, - { - "argument_index": 15, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "97350bc8-7066-4f93-a14f-9c5f730b00ea", - "version_uuid": "2f154e0c-a91d-4e57-8a9e-c0566361951b" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceNightTimeElectricEquipmentLoads", - "bcl_measure_uuid": "b446301d-8f0e-41fc-9245-c3851b8732ff", - "bcl_measure_version_uuid": "82a610a3-2022-4ee1-b31e-11122d095faf", - "description": "This measure lets you set the electric equipment schedule profile values for a specific time of day, and for specific days of the week. This can be run across the entire model or a specific space type. Cost can be added per each equipment object.", - "display_name": "Reduce Night Time Electric Equipment Loads Office 0.3", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Reduce Night Time Electric Equipment Loads Office 0.3", - "output_file_type": "OSM", - "uuid": "03692984-aaf8-4f7c-b50a-f0739e302344", - "version_uuid": "e96b8d2a-3c32-4883-9ac3-b4809584fb88" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom ElecDef", - "value": "{02d1a933-4461-41e3-8ea9-de4f21c9c33f}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel Lobby ElecDef", - "value": "{84c29f27-0cb0-4334-9b32-de7a25741240}" - }, - { - "choice_index": 2, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining Electric Equipment Definition", - "value": "{21498964-2fec-4262-a1d9-c5f2a1b5e9dd}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen Electric Equipment Definition", - "value": "{48121225-1807-479e-956f-2845c6be9617}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding Electric Equipment Definition", - "value": "{8ddfd95a-c93d-480b-883f-8baa9849c1a3}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce Electric Equipment Definition", - "value": "{dc597960-603a-4b67-b1d1-e51bc365e83c}" - } - ], - "display_name": "Pick an Electric Equipment Definition(schedules using this will be altered)", - "domain_type": "Enumeration", - "name": "elec_load_def", - "required": true, - "type": "Choice", - "uuid": "f4060342-5f0e-4569-8fae-3a20d1da389a", - "value": "{8ddfd95a-c93d-480b-883f-8baa9849c1a3}", - "version_uuid": "11ded11a-33af-4ccd-804d-4e33855b22ba" - }, - { - "argument_index": 1, - "default_value": 0.1, - "display_name": "Fractional Value for Night Time Load.", - "domain_type": "Interval", - "name": "fraction_value", - "required": true, - "type": "Double", - "uuid": "0deb85ee-9ade-4a48-b40e-3740df45e130", - "value": 0.2, - "version_uuid": "b97cf011-ecfd-427d-9c28-edfb3696fe17" - }, - { - "argument_index": 2, - "default_value": "true", - "display_name": "Apply Schedule Changes to Weekday and Default Profiles?", - "domain_type": "Enumeration", - "name": "apply_weekday", - "required": true, - "type": "Boolean", - "uuid": "b5271df7-b304-4471-9360-47197a31729f", - "version_uuid": "03788d42-3073-46a2-8851-526367d9cb01" - }, - { - "argument_index": 3, - "default_value": 18.0, - "display_name": "Weekday/Default Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_weekday", - "required": true, - "type": "Double", - "uuid": "3a2310ec-12f6-4f9d-8430-6c4729459537", - "version_uuid": "fc7645e8-3ed0-4abf-b78c-35811e77033d" - }, - { - "argument_index": 4, - "default_value": 9.0, - "display_name": "Weekday/Default Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_weekday", - "required": true, - "type": "Double", - "uuid": "9bc323cd-8388-4b7a-ad21-c665104ea216", - "version_uuid": "c2be93f9-5a49-4e80-bdb4-54f3e17a9e26" - }, - { - "argument_index": 5, - "default_value": "true", - "display_name": "Apply Schedule Changes to Saturdays?", - "domain_type": "Enumeration", - "name": "apply_saturday", - "required": true, - "type": "Boolean", - "uuid": "31dd34a3-09b5-4232-b99f-d994430e7ca8", - "version_uuid": "c2ae0a05-e615-4062-840c-d77cad6f7126" - }, - { - "argument_index": 6, - "default_value": 18.0, - "display_name": "Saturday Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_saturday", - "required": true, - "type": "Double", - "uuid": "84f57b52-f8d5-47cf-959e-53dd388a72cc", - "version_uuid": "a23f1b6e-ee05-4169-b160-d3a8631c70cd" - }, - { - "argument_index": 7, - "default_value": 9.0, - "display_name": "Saturday Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_saturday", - "required": true, - "type": "Double", - "uuid": "0c63ca29-0404-4334-8415-5706ecd48c8e", - "version_uuid": "ca79dace-1ff0-4696-a591-801742a813b3" - }, - { - "argument_index": 8, - "default_value": "true", - "display_name": "Apply Schedule Changes to Sundays?", - "domain_type": "Enumeration", - "name": "apply_sunday", - "required": true, - "type": "Boolean", - "uuid": "4f0cbf94-8dff-47d0-8eee-147802a43cd3", - "version_uuid": "1265f626-aa74-4f45-b7dd-cd8cc26b4f13" - }, - { - "argument_index": 9, - "default_value": 18.0, - "display_name": "Sunday Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_sunday", - "required": true, - "type": "Double", - "uuid": "b8c606b0-e78c-454d-92dc-78ebba42982c", - "version_uuid": "d38a9b27-fb84-486d-9283-70d866f46fb5" - }, - { - "argument_index": 10, - "default_value": 9.0, - "display_name": "Sunday Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_sunday", - "required": true, - "type": "Double", - "uuid": "f7113bb3-f0d0-4da2-8f54-83a5bb7d3084", - "version_uuid": "40f44043-880f-4219-ae3f-c11e9a45507e" - }, - { - "argument_index": 11, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Electric Equipment Quantity ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "4bab7259-e59d-4240-8146-41d7d8995103", - "version_uuid": "e86f2b8f-e292-4447-83fa-eee6ae1036ce" - }, - { - "argument_index": 12, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "f0d1810a-8441-4676-bdb2-f544c91ac5d8", - "version_uuid": "d2d7f98a-9d4f-4844-b8fe-0bdd2ac74fca" - }, - { - "argument_index": 13, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "3f805d43-90b4-4a3b-9261-448556cde396", - "version_uuid": "4fb25318-0230-40a8-b06c-cc808fdfe728" - }, - { - "argument_index": 14, - "default_value": 0.0, - "display_name": "O & M Costs Costs per Electric Equipment Quantity ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "e91ef4b5-3758-4399-afc1-96584688aeb5", - "version_uuid": "046080fc-20a2-4d85-8bb7-9c367ad387d9" - }, - { - "argument_index": 15, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "f707fff3-f4ef-4cdc-b62c-5306d1f112e2", - "version_uuid": "19512d62-da3c-40fd-81cc-f6b3edaccea0" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceNightTimeElectricEquipmentLoads", - "bcl_measure_uuid": "b446301d-8f0e-41fc-9245-c3851b8732ff", - "bcl_measure_version_uuid": "82a610a3-2022-4ee1-b31e-11122d095faf", - "description": "This measure lets you set the electric equipment schedule profile values for a specific time of day, and for specific days of the week. This can be run across the entire model or a specific space type. Cost can be added per each equipment object.", - "display_name": "Reduce Night Time Electric Equipment Loads Office 0.2", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Reduce Night Time Electric Equipment Loads Office 0.2", - "output_file_type": "OSM", - "uuid": "9476d58f-6ccc-4430-b2ad-6b5e7ba62540", - "version_uuid": "a7af37d0-d4fb-4ba4-b127-bbb798109e07" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom ElecDef", - "value": "{02d1a933-4461-41e3-8ea9-de4f21c9c33f}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel Lobby ElecDef", - "value": "{84c29f27-0cb0-4334-9b32-de7a25741240}" - }, - { - "choice_index": 2, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining Electric Equipment Definition", - "value": "{21498964-2fec-4262-a1d9-c5f2a1b5e9dd}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen Electric Equipment Definition", - "value": "{48121225-1807-479e-956f-2845c6be9617}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding Electric Equipment Definition", - "value": "{8ddfd95a-c93d-480b-883f-8baa9849c1a3}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce Electric Equipment Definition", - "value": "{dc597960-603a-4b67-b1d1-e51bc365e83c}" - } - ], - "display_name": "Pick an Electric Equipment Definition(schedules using this will be altered)", - "domain_type": "Enumeration", - "name": "elec_load_def", - "required": true, - "type": "Choice", - "uuid": "b735f874-1cb5-4636-b8b4-08c50987d5ac", - "value": "{8ddfd95a-c93d-480b-883f-8baa9849c1a3}", - "version_uuid": "889845d0-fc3e-4c75-b1a2-04f59f8bd8df" - }, - { - "argument_index": 1, - "default_value": 0.1, - "display_name": "Fractional Value for Night Time Load.", - "domain_type": "Interval", - "name": "fraction_value", - "required": true, - "type": "Double", - "uuid": "52a1eb07-f583-45e5-8d9b-18df9dd8d62c", - "version_uuid": "03b37c58-9267-467f-807d-ac4868017b2a" - }, - { - "argument_index": 2, - "default_value": "true", - "display_name": "Apply Schedule Changes to Weekday and Default Profiles?", - "domain_type": "Enumeration", - "name": "apply_weekday", - "required": true, - "type": "Boolean", - "uuid": "27267aa5-47cb-4a70-8876-6c82813a2064", - "version_uuid": "06cf2850-26fb-4869-ba41-3cdc74842521" - }, - { - "argument_index": 3, - "default_value": 18.0, - "display_name": "Weekday/Default Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_weekday", - "required": true, - "type": "Double", - "uuid": "3730c30a-6ceb-484c-8a05-4dc960b1eda5", - "version_uuid": "791c2ffa-c728-499b-b33f-f21ef064c82a" - }, - { - "argument_index": 4, - "default_value": 9.0, - "display_name": "Weekday/Default Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_weekday", - "required": true, - "type": "Double", - "uuid": "af184b7f-7438-405c-a239-e6065e6254e6", - "version_uuid": "dc41fac1-55a4-46e0-b8ac-f8138f3de1bb" - }, - { - "argument_index": 5, - "default_value": "true", - "display_name": "Apply Schedule Changes to Saturdays?", - "domain_type": "Enumeration", - "name": "apply_saturday", - "required": true, - "type": "Boolean", - "uuid": "46ddc9a9-4807-4231-9bba-2223c9eb77f6", - "version_uuid": "4a6254b2-db06-4163-94c4-82b09bbf5b22" - }, - { - "argument_index": 6, - "default_value": 18.0, - "display_name": "Saturday Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_saturday", - "required": true, - "type": "Double", - "uuid": "a7451c25-d401-45b6-84ca-83173cf526dd", - "version_uuid": "7c40cee2-7a87-437c-b046-2614414c728e" - }, - { - "argument_index": 7, - "default_value": 9.0, - "display_name": "Saturday Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_saturday", - "required": true, - "type": "Double", - "uuid": "69dc3c5e-ad72-44b2-86bb-dd1dea8e2503", - "version_uuid": "7d79e394-f4a5-41fd-955a-7d5a45591915" - }, - { - "argument_index": 8, - "default_value": "true", - "display_name": "Apply Schedule Changes to Sundays?", - "domain_type": "Enumeration", - "name": "apply_sunday", - "required": true, - "type": "Boolean", - "uuid": "c05979f0-67b9-4bd3-9bd1-1a759b1d6a7b", - "version_uuid": "65e9ed65-45f1-44b1-ac1e-243ce2ec1553" - }, - { - "argument_index": 9, - "default_value": 18.0, - "display_name": "Sunday Time to Start Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "start_sunday", - "required": true, - "type": "Double", - "uuid": "78c7a18b-37cc-4a18-a7c7-e8c0f5dd41a5", - "version_uuid": "579137fc-dbdd-4b18-8767-3826d214ad88" - }, - { - "argument_index": 10, - "default_value": 9.0, - "display_name": "Sunday Time to End Night Time Fraction(24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "end_sunday", - "required": true, - "type": "Double", - "uuid": "29e62ae7-d343-468a-977a-07421ab7801d", - "version_uuid": "4a958949-735e-41d1-a824-c32649ab5a99" - }, - { - "argument_index": 11, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Electric Equipment Quantity ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "b951c28b-e5d6-4b35-860d-8148ea99ea5d", - "version_uuid": "b836afa3-bd49-47ed-a4cf-307d3e73e4d4" - }, - { - "argument_index": 12, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "2ea72565-c6d3-40a8-b17d-614ffcb551f0", - "version_uuid": "1a680388-eea4-4bac-8853-7fdb8b9f8892" - }, - { - "argument_index": 13, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "1cfdc9c5-5f64-4a82-920c-f13fca447d52", - "version_uuid": "ed6f0410-8b8b-4f08-9b2a-1e7a83ff5749" - }, - { - "argument_index": 14, - "default_value": 0.0, - "display_name": "O & M Costs Costs per Electric Equipment Quantity ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "3f3096be-0004-471c-9f6f-a3a361e89a24", - "version_uuid": "668ad880-6f8f-453a-901c-07bfde4013fe" - }, - { - "argument_index": 15, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "924e5219-009f-48f0-bb55-ae778eb76c80", - "version_uuid": "1eaaa73e-9d86-4187-b02c-34d82b46f5a4" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceNightTimeElectricEquipmentLoads", - "bcl_measure_uuid": "b446301d-8f0e-41fc-9245-c3851b8732ff", - "bcl_measure_version_uuid": "82a610a3-2022-4ee1-b31e-11122d095faf", - "description": "This measure lets you set the electric equipment schedule profile values for a specific time of day, and for specific days of the week. This can be run across the entire model or a specific space type. Cost can be added per each equipment object.", - "display_name": "Reduce Night Time Electric Equipment Loads Office 0.1", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Reduce Night Time Electric Equipment Loads Office 0.1", - "output_file_type": "OSM", - "uuid": "5f819f55-6955-4136-848b-73c87dc7a42b", - "version_uuid": "c4879ad8-1921-4c44-a877-98769b1a1949" - } - ], - "name": "Reduce Night Time Electric Equipment Loads Group", - "uuid": "5cd07fd1-ae22-46c7-a11a-56f58dd5f65f", - "version_uuid": "731c6796-19cc-4403-8b66-1b3ee2d38737", - "workflow_index": 19, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Add Cost per Floor Area to Electric Equipment Group", - "measures": [ - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom ElecDef", - "value": "{02d1a933-4461-41e3-8ea9-de4f21c9c33f}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel Lobby ElecDef", - "value": "{84c29f27-0cb0-4334-9b32-de7a25741240}" - }, - { - "choice_index": 2, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining Electric Equipment Definition", - "value": "{21498964-2fec-4262-a1d9-c5f2a1b5e9dd}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen Electric Equipment Definition", - "value": "{48121225-1807-479e-956f-2845c6be9617}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding Electric Equipment Definition", - "value": "{8ddfd95a-c93d-480b-883f-8baa9849c1a3}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce Electric Equipment Definition", - "value": "{dc597960-603a-4b67-b1d1-e51bc365e83c}" - } - ], - "display_name": "Choose a Watts per Area Electric Equipment Definition to Add Costs to.", - "domain_type": "Enumeration", - "name": "equip_def", - "required": true, - "type": "Choice", - "uuid": "a31b053a-c2e5-44ed-89fb-06510d450ca5", - "value": "{8ddfd95a-c93d-480b-883f-8baa9849c1a3}", - "version_uuid": "9693ba9e-1bd4-451c-b2b9-cf800d9b61fc" - }, - { - "argument_index": 1, - "default_value": "true", - "display_name": "Remove Existing Costs?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "dc3e0243-e853-4cff-967d-2f4ff7bc5eb7", - "version_uuid": "8d3b78b5-b3a2-4d07-ac2e-f660c502b834" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Material and Installation Costs for Definition per Floor Area ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_ip", - "required": true, - "type": "Double", - "uuid": "cb604c03-b1d7-4bcc-b631-0ba8180ced1e", - "value": 20.0, - "version_uuid": "d554e98c-9542-4187-86e1-64ad69e344f9" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Demolition Costs for Definition per Floor Area ($/ft^2).", - "domain_type": "Interval", - "name": "demolition_cost_ip", - "required": true, - "type": "Double", - "uuid": "fc836cef-6d48-447f-8dea-0bee7f75aef6", - "version_uuid": "e38faa8f-4ab1-492f-be1a-c269ebd52db2" - }, - { - "argument_index": 4, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "96b79a9a-de25-45ce-82fc-28bbade5e2e4", - "version_uuid": "ca68560b-c6b6-4fb6-a295-8d2039a5092e" - }, - { - "argument_index": 5, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Definition?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "dbd8599f-b71f-4b6f-a1d9-4bded0170aa2", - "version_uuid": "df28d4d8-2665-4e6c-a418-d08745e825c6" - }, - { - "argument_index": 6, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "79178d9a-0c46-409a-bffd-daf9cb84ef5c", - "version_uuid": "7db8f783-6646-4adf-803b-18ad6efca3b5" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "O & M Costs for Definition per Floor Area ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost_ip", - "required": true, - "type": "Double", - "uuid": "0f7f965e-e878-4bcc-a48c-a95f9e7ec8ef", - "version_uuid": "3bb07db1-5b5d-47bf-85cf-7eecfbbe5bf5" - }, - { - "argument_index": 8, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "414ee4c0-5d8a-482c-9f5d-115ba037c8bf", - "version_uuid": "0f43fb32-2e70-44df-aa2c-9cfbaf2c4a79" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddCostPerFloorAreaToElectricEquipment", - "bcl_measure_uuid": "42cf1acc-c0bc-46cd-af67-8a17cadaab7b", - "bcl_measure_version_uuid": "6480279c-009d-4892-ac92-39eb1fe99cb9", - "description": "This measure will create life cycle cost objects associated with electric equipment. You can choose any electric equipment definition used in the model that has a watt/area power. You can set a material & installation cost, demolition cost, and O&M costs. Optionally existing cost objects already associated with the selected electric equipment definition can be deleted. This measure will not affect energy use of the building.", - "display_name": "Add Cost per Floor Area to Electric Equipment", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 0, - "measure_type": "RubyMeasure", - "name": "Add Cost per Floor Area to Electric Equipment", - "output_file_type": "OSM", - "uuid": "38bf3cd5-dfe7-46fb-8b99-98edf0269a70", - "version_uuid": "0ae7a5ab-ebea-4b50-ae2c-fd4500c3c144" - } - ], - "name": "Add Cost per Floor Area to Electric Equipment Group", - "uuid": "85422c64-0a80-471d-9e26-646efc4da23b", - "version_uuid": "0d76d19f-7ad4-4934-a6a9-3c8c48557f7e", - "workflow_index": 20, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Reduce Electric Equipment Loads by Percentage Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "c5d8c24b-0f74-4e62-9768-3d56435bb792", - "version_uuid": "4b07cd6d-1ed8-4fe5-9e74-7d65ac163b72" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor", - "value": "{81125e3e-d3ce-4ef9-ba9c-6e7437efdca8}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom", - "value": "{0658a18e-343c-41bf-b4ba-66e7c3fab1c2}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby", - "value": "{9f450f46-dc3e-44b3-9314-4cd14102ec6e}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen", - "value": "{bd500ca9-1c31-4a5a-a9f9-e32a5eadf0f1}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce", - "value": "{b689f00f-ae2b-4273-8455-4acd0b506b6f}" - }, - { - "choice_index": 7, - "display_name": "*Entire Building*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.", - "domain_type": "Enumeration", - "name": "space_type", - "required": true, - "type": "Choice", - "uuid": "8df5b055-680a-4209-acd2-2deb91a0ad68", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}", - "version_uuid": "5360a0c2-b394-4758-9858-f39bbd44aaf6" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Electric Equipment Power Reduction (%).", - "domain_type": "Interval", - "name": "elecequip_power_reduction_percent", - "required": true, - "type": "Double", - "uuid": "9c750b2a-88f8-48e9-8d22-7368daa58efe", - "version_uuid": "4564c312-5975-4892-b6fa-d0c86533fca8" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Cost for Electric Equipment per Floor Area (%).", - "domain_type": "Interval", - "name": "material_and_installation_cost", - "required": true, - "type": "Double", - "uuid": "57a47fc2-855f-4690-a83b-ca3a38a74709", - "value": 5.0, - "version_uuid": "8c7427de-9ccb-4e3e-8688-4c672c2b073a" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Increase in Demolition Costs for Electric Equipment per Floor Area (%).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "fe5ae4cc-da65-4b58-8d92-f703c8ddd6c7", - "version_uuid": "b005188c-971b-44eb-b225-d463bd3212e1" - }, - { - "argument_index": 4, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "5f974c11-fb6c-40de-8d83-963674065686", - "version_uuid": "14f04fbf-38f7-4602-8eec-7fc9aa52ab51" - }, - { - "argument_index": 5, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "dc3904cf-4f3e-4a62-879d-69c4a2aa18ea", - "version_uuid": "172c0f75-0233-4b03-a86f-c99a46aebb5f" - }, - { - "argument_index": 6, - "default_value": 15, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "0445ab31-f5de-44dc-b2ea-4eb302a751e4", - "version_uuid": "7f6c3852-0ce9-4f82-83a2-f75dd73e3623" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "Increase O & M Costs for Electric Equipment per Floor Area (%).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "6f1c19ef-edab-43ac-80fd-f6d8e7558ddd", - "version_uuid": "783d887e-cc7f-4c98-a9f9-37d1de5a9969" - }, - { - "argument_index": 8, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "29ed8ba1-db0c-4a36-afd2-03c2b33c560e", - "version_uuid": "aa4d6bb9-e4bb-43b9-ab9b-3a2d75c2fc43" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceElectricEquipmentLoadsByPercentage", - "bcl_measure_uuid": "b93f5c07-a1a8-4741-9d47-af00a2e7e288", - "bcl_measure_version_uuid": "f29dc6b2-c7e1-4730-a7fd-88d283d0d841", - "description": "Reduce electric equipment loads. This will affect equipment that have a, power, power per area (LPD), or power per person value. This can be applied to the entire building or a specific space type. A positive percentage represents an increase electric equipment power, while a negative percentage can be used for an increase in electric equipment power.", - "display_name": "Reduce Electric Equipment Loads by Percentage Dining 30%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Reduce Electric Equipment Loads by Percentage Dining 30%", - "output_file_type": "OSM", - "uuid": "d6afb758-31f6-4061-a070-1bb8a3491c8e", - "version_uuid": "b90496df-0eac-4818-8905-ab8cb2198d02" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor", - "value": "{81125e3e-d3ce-4ef9-ba9c-6e7437efdca8}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom", - "value": "{0658a18e-343c-41bf-b4ba-66e7c3fab1c2}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby", - "value": "{9f450f46-dc3e-44b3-9314-4cd14102ec6e}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen", - "value": "{bd500ca9-1c31-4a5a-a9f9-e32a5eadf0f1}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce", - "value": "{b689f00f-ae2b-4273-8455-4acd0b506b6f}" - }, - { - "choice_index": 7, - "display_name": "*Entire Building*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.", - "domain_type": "Enumeration", - "name": "space_type", - "required": true, - "type": "Choice", - "uuid": "c7b52e66-4ead-4591-9005-b4bb6334ec50", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}", - "version_uuid": "377d517f-f53a-42f1-8a6e-24e48536bda0" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Electric Equipment Power Reduction (%).", - "domain_type": "Interval", - "name": "elecequip_power_reduction_percent", - "required": true, - "type": "Double", - "uuid": "9926bfee-fe25-4f23-8814-5d3804435481", - "value": 40.0, - "version_uuid": "e2307489-8c28-4681-ab03-9f67f6469487" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Cost for Electric Equipment per Floor Area (%).", - "domain_type": "Interval", - "name": "material_and_installation_cost", - "required": true, - "type": "Double", - "uuid": "0fc41b22-7d6d-4f98-8b12-c2baacde857b", - "value": 7.0, - "version_uuid": "479982df-bbcb-43a1-906e-32b50bb878fc" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Increase in Demolition Costs for Electric Equipment per Floor Area (%).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "24731b06-3250-4e83-9585-c3e9dbb1e0e4", - "version_uuid": "a8125d91-8ab5-4740-b82c-365fcd2fed62" - }, - { - "argument_index": 4, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "cb041041-250c-4e91-8f66-ce68865a9151", - "version_uuid": "fe0c498f-eece-46c3-ba05-04211130622d" - }, - { - "argument_index": 5, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "92e81f82-f35d-4a2c-991f-df0d89ba5f3c", - "version_uuid": "b0038ec8-b9d4-450a-ba21-cbc39dd3fc83" - }, - { - "argument_index": 6, - "default_value": 15, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "18df395b-adfc-43b7-b853-d459991d9497", - "version_uuid": "ca42daf4-dec4-44e7-babe-6e77abb618e6" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "Increase O & M Costs for Electric Equipment per Floor Area (%).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "d657680d-6ce2-4856-a2a2-5e339fbb841f", - "version_uuid": "ff980223-d8ae-4f76-985d-882e99598b89" - }, - { - "argument_index": 8, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "43a89654-2d2f-4154-abbb-e8d8afcbf362", - "version_uuid": "8c1cc400-a641-450a-8b89-703eecc4edfd" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceElectricEquipmentLoadsByPercentage", - "bcl_measure_uuid": "b93f5c07-a1a8-4741-9d47-af00a2e7e288", - "bcl_measure_version_uuid": "f29dc6b2-c7e1-4730-a7fd-88d283d0d841", - "description": "Reduce electric equipment loads. This will affect equipment that have a, power, power per area (LPD), or power per person value. This can be applied to the entire building or a specific space type. A positive percentage represents an increase electric equipment power, while a negative percentage can be used for an increase in electric equipment power.", - "display_name": "Reduce Electric Equipment Loads by Percentage Dining 40%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Reduce Electric Equipment Loads by Percentage Dining 40%", - "output_file_type": "OSM", - "uuid": "8c97ad7b-ec36-4be7-b064-8b0f64955661", - "version_uuid": "cc529b29-7ed2-401e-9d29-32beda718b80" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor", - "value": "{81125e3e-d3ce-4ef9-ba9c-6e7437efdca8}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom", - "value": "{0658a18e-343c-41bf-b4ba-66e7c3fab1c2}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby", - "value": "{9f450f46-dc3e-44b3-9314-4cd14102ec6e}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen", - "value": "{bd500ca9-1c31-4a5a-a9f9-e32a5eadf0f1}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce", - "value": "{b689f00f-ae2b-4273-8455-4acd0b506b6f}" - }, - { - "choice_index": 7, - "display_name": "*Entire Building*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.", - "domain_type": "Enumeration", - "name": "space_type", - "required": true, - "type": "Choice", - "uuid": "8ae8a798-7db4-40dd-ad77-5a5fe3543b9d", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}", - "version_uuid": "43098796-ba57-43c4-b389-3af7ee418eb4" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Electric Equipment Power Reduction (%).", - "domain_type": "Interval", - "name": "elecequip_power_reduction_percent", - "required": true, - "type": "Double", - "uuid": "ead7b376-8203-4f9a-a0d1-f54fff39d0ff", - "value": 50.0, - "version_uuid": "d6575544-eecf-464e-a57b-92cef685cc56" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Increase in Material and Installation Cost for Electric Equipment per Floor Area (%).", - "domain_type": "Interval", - "name": "material_and_installation_cost", - "required": true, - "type": "Double", - "uuid": "bafdd529-cb72-4cf8-921c-59cc2e469fb0", - "value": 10.0, - "version_uuid": "5ed201f3-fd03-42cd-a45e-34f1a54b7b0b" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Increase in Demolition Costs for Electric Equipment per Floor Area (%).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "52fc57b3-08c9-4327-9673-79174ff5315c", - "version_uuid": "b37bf685-6abd-4893-85e0-723ac34e2e43" - }, - { - "argument_index": 4, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "7914de01-e996-4bc5-af1c-b36a368f9504", - "version_uuid": "0ba4b6b6-9431-4431-916b-fdd62854a07d" - }, - { - "argument_index": 5, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "019238a1-2103-424f-8cc0-bb84a48bc2fe", - "version_uuid": "68e225e1-e224-48f2-a5c1-c064e5df0c91" - }, - { - "argument_index": 6, - "default_value": 15, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "531cec7d-6891-4633-b4cd-bc894d7375ec", - "version_uuid": "0dde7643-6294-42e5-a22e-b4ad9a7e5793" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "Increase O & M Costs for Electric Equipment per Floor Area (%).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "9ab42e13-ca0c-4e41-b8df-74085687d3a7", - "version_uuid": "0417bc46-59d6-4f6f-b1ad-fb29d3b9c3b7" - }, - { - "argument_index": 8, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "202d3b7a-3838-48f2-88d7-306f67102672", - "version_uuid": "c7983589-ba0d-420e-87f2-77729de16ea7" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceElectricEquipmentLoadsByPercentage", - "bcl_measure_uuid": "b93f5c07-a1a8-4741-9d47-af00a2e7e288", - "bcl_measure_version_uuid": "f29dc6b2-c7e1-4730-a7fd-88d283d0d841", - "description": "Reduce electric equipment loads. This will affect equipment that have a, power, power per area (LPD), or power per person value. This can be applied to the entire building or a specific space type. A positive percentage represents an increase electric equipment power, while a negative percentage can be used for an increase in electric equipment power.", - "display_name": "Reduce Electric Equipment Loads by Percentage Dining 50%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Reduce Electric Equipment Loads by Percentage Dining 50%", - "output_file_type": "OSM", - "uuid": "1c528e12-b6d4-464e-af40-1a7e904aa933", - "version_uuid": "cf5fcd3d-5f7c-4973-b849-6ff41ca33623" - } - ], - "name": "Reduce Electric Equipment Loads by Percentage Group", - "uuid": "b7b149b6-a73a-4267-90f3-818571965b0c", - "version_uuid": "630d90d8-3d55-4caf-bbb3-b5f81947d7a1", - "workflow_index": 21, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Adjust Thermostat Setpoints by Degrees Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "760b9d70-9d96-471f-89b1-c98bfa6a26fb", - "version_uuid": "ac3c8068-8f57-4517-8c3c-6de2e4eccf40" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 1.0, - "display_name": "Degrees Fahrenheit to Adjust Cooling Setpoint By.", - "domain_type": "Interval", - "name": "cooling_adjustment", - "required": true, - "type": "Double", - "uuid": "579ccbe8-99bc-4e5c-b388-d13a38a3b92b", - "version_uuid": "911f306e-5820-4b11-b1cd-45ea8d0ed715" - }, - { - "argument_index": 1, - "default_value": -1.0, - "display_name": "Degrees Fahrenheit to Adjust heating Setpoint By.", - "domain_type": "Interval", - "name": "heating_adjustment", - "required": true, - "type": "Double", - "uuid": "1419f8a6-ab96-448d-8998-4893afdf8797", - "version_uuid": "4ffcfbb1-24cf-44e5-b71e-d0204337bc2b" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Alter Design Day Thermostats?", - "domain_type": "Enumeration", - "name": "alter_design_days", - "required": true, - "type": "Boolean", - "uuid": "93485131-358a-4c93-84aa-bff83e9b8551", - "version_uuid": "535d04c1-a9e6-4fdc-adf9-dc1cf362a4f3" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AdjustThermostatSetpointsByDegrees", - "bcl_measure_uuid": "6e1f34f9-92e1-44ea-9279-de0b9b64f6a1", - "bcl_measure_version_uuid": "d5d2e0cd-21c0-4edc-924c-5628eb760d59", - "description": "This measure adjusts heating and cooling setpoints by a user specified number of degrees. This is applied throughout the entire building.", - "display_name": "Adjust Thermostat Setpoints by Degrees 1 deg F", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Adjust Thermostat Setpoints by Degrees 1 deg F", - "output_file_type": "OSM", - "uuid": "76d05cfc-8796-4cb9-ab60-202991862d95", - "version_uuid": "a7b41e74-0784-4f4d-9545-ba04a9855c66" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 1.0, - "display_name": "Degrees Fahrenheit to Adjust Cooling Setpoint By.", - "domain_type": "Interval", - "name": "cooling_adjustment", - "required": true, - "type": "Double", - "uuid": "d17447a1-aa24-4427-a149-0f3b3807790b", - "value": 1.5, - "version_uuid": "af9245a7-1dd7-42bd-8d25-c1450373f4d7" - }, - { - "argument_index": 1, - "default_value": -1.0, - "display_name": "Degrees Fahrenheit to Adjust heating Setpoint By.", - "domain_type": "Interval", - "name": "heating_adjustment", - "required": true, - "type": "Double", - "uuid": "b1ae90d5-3af0-4483-a4fc-5a170877b453", - "value": -1.5, - "version_uuid": "023cf53d-805d-4a8d-a07b-4c0bc983428d" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Alter Design Day Thermostats?", - "domain_type": "Enumeration", - "name": "alter_design_days", - "required": true, - "type": "Boolean", - "uuid": "64ab3b7a-9abb-4110-a899-1f38754a87f9", - "version_uuid": "3dd961cb-a42a-4b21-8734-b74f0f7e7999" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AdjustThermostatSetpointsByDegrees", - "bcl_measure_uuid": "6e1f34f9-92e1-44ea-9279-de0b9b64f6a1", - "bcl_measure_version_uuid": "d5d2e0cd-21c0-4edc-924c-5628eb760d59", - "description": "This measure adjusts heating and cooling setpoints by a user specified number of degrees. This is applied throughout the entire building.", - "display_name": "Adjust Thermostat Setpoints by Degrees 1.5 deg F", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Adjust Thermostat Setpoints by Degrees 1.5 deg F", - "output_file_type": "OSM", - "uuid": "9fb19dbe-d09c-4df6-bc78-8c951c62027e", - "version_uuid": "229ff238-c1e6-403e-8cbd-46082ab67268" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": 1.0, - "display_name": "Degrees Fahrenheit to Adjust Cooling Setpoint By.", - "domain_type": "Interval", - "name": "cooling_adjustment", - "required": true, - "type": "Double", - "uuid": "4600a063-8333-4577-8372-5139e09610ee", - "value": 2.0, - "version_uuid": "0ad394b6-bc74-435a-9c74-deac03ec46c9" - }, - { - "argument_index": 1, - "default_value": -1.0, - "display_name": "Degrees Fahrenheit to Adjust heating Setpoint By.", - "domain_type": "Interval", - "name": "heating_adjustment", - "required": true, - "type": "Double", - "uuid": "16dbae12-1b02-4183-9c7e-d69415ca9e63", - "value": -2.0, - "version_uuid": "00200336-d2eb-405a-8804-6fc928447b8d" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Alter Design Day Thermostats?", - "domain_type": "Enumeration", - "name": "alter_design_days", - "required": true, - "type": "Boolean", - "uuid": "0c0c01ce-3b95-4c07-b90a-2503a3a995e6", - "version_uuid": "30581d27-fbc9-4019-a45c-f4dd14bf72e9" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AdjustThermostatSetpointsByDegrees", - "bcl_measure_uuid": "6e1f34f9-92e1-44ea-9279-de0b9b64f6a1", - "bcl_measure_version_uuid": "d5d2e0cd-21c0-4edc-924c-5628eb760d59", - "description": "This measure adjusts heating and cooling setpoints by a user specified number of degrees. This is applied throughout the entire building.", - "display_name": "Adjust Thermostat Setpoints by Degrees 2 deg F", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Adjust Thermostat Setpoints by Degrees 2 deg F", - "output_file_type": "OSM", - "uuid": "1235660d-b5ec-45d5-be2a-b378388cc9b1", - "version_uuid": "432ff081-fe82-473f-85e5-50e9c426349b" - } - ], - "name": "Adjust Thermostat Setpoints by Degrees Group", - "uuid": "5e4ea31c-e0e8-43a4-8427-4498f9d495a5", - "version_uuid": "c459f81a-1c44-4e56-b4a0-89f8ca2d1f18", - "workflow_index": 22, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Add Cost To Supply Side HVAC Component by Air Loop Group", - "measures": [ - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CoilCoolingDXSingleSpeed", - "value": "CoilCoolingDXSingleSpeed" - }, - { - "choice_index": 1, - "display_name": "CoilCoolingDXTwoSpeed", - "value": "CoilCoolingDXTwoSpeed" - }, - { - "choice_index": 2, - "display_name": "CoilHeatingDXSingleSpeed", - "value": "CoilHeatingDXSingleSpeed" - }, - { - "choice_index": 3, - "display_name": "CoilHeatingElectric", - "value": "CoilHeatingElectric" - }, - { - "choice_index": 4, - "display_name": "CoilHeatingGas", - "value": "CoilHeatingGas" - }, - { - "choice_index": 5, - "display_name": "CoilHeatingWaterBaseboard", - "value": "CoilHeatingWaterBaseboard" - }, - { - "choice_index": 6, - "display_name": "FanConstantVolume", - "value": "FanConstantVolume" - }, - { - "choice_index": 7, - "display_name": "FanOnOff", - "value": "FanOnOff" - }, - { - "choice_index": 8, - "display_name": "FanVariableVolume", - "value": "FanVariableVolume" - }, - { - "choice_index": 9, - "display_name": "PumpConstantSpeed", - "value": "PumpConstantSpeed" - }, - { - "choice_index": 10, - "display_name": "PumpVariableSpeed", - "value": "PumpVariableSpeed" - }, - { - "choice_index": 11, - "display_name": "CoilCoolingWater", - "value": "CoilCoolingWater" - }, - { - "choice_index": 12, - "display_name": "CoilHeatingWater", - "value": "CoilHeatingWater" - } - ], - "display_name": "Select an HVAC Air Loop Supply Side Component Type.", - "domain_type": "Enumeration", - "name": "hvac_comp_type", - "required": true, - "type": "Choice", - "uuid": "c7d18efa-f24d-4e2a-8de9-1bafaf18ca3b", - "value": "CoilCoolingDXTwoSpeed", - "version_uuid": "cb04b11a-bbcd-4c9f-8b00-536709e016d0" - }, - { - "argument_index": 1, - "choices": [ - { - "choice_index": 0, - "display_name": "Packaged Rooftop Air Conditioner - Kitchen", - "value": "{7783f2f6-1212-4a53-9b81-b08a1d4ce8b5}" - }, - { - "choice_index": 1, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 2, - "display_name": "VAV with Reheat 1st floor", - "value": "{e584358b-7b51-4e65-b3aa-9cf6777e35e0}" - }, - { - "choice_index": 3, - "display_name": "VAV with Reheat 2nd floor", - "value": "{e556983c-c28c-4553-b244-f393f716173f}" - }, - { - "choice_index": 4, - "display_name": "VAV with Reheat 3rd and 4th floor (hand built)", - "value": "{1fe35234-fa1b-406f-9db2-23a2ae7bc5dc}" - }, - { - "choice_index": 5, - "display_name": "*All Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "display_name": "Choose an Air Loop to Add Costs to.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "4937d345-f2ad-493f-ba79-2be8a9cc79f2", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}", - "version_uuid": "85a30d89-219d-4a69-b7d4-bee6b6160ebc" - }, - { - "argument_index": 2, - "default_value": "true", - "display_name": "Remove Existing Costs?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "00d5174c-e909-4b81-bf38-1a5f6fa28b4d", - "version_uuid": "00879529-02a9-4b8e-b4f9-3f2f0f5dec75" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Component ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "784de61f-f0fe-467e-8e4f-782da9b6c9a5", - "value": 2000.0, - "version_uuid": "a943c552-812a-4d49-a46b-c82bc52cb154" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Demolition Costs per Component ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "3aaf7b9c-e350-4f47-b774-30bc57c71f3d", - "version_uuid": "ac20b9f8-9c97-47c0-8aac-b8e95b9b9600" - }, - { - "argument_index": 5, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "79f682ec-49da-4f14-95fc-5777d106205b", - "version_uuid": "c871e9d6-6f37-4d93-8874-985d670bb0fb" - }, - { - "argument_index": 6, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "80829add-efb5-44fa-858b-23bc167dd631", - "version_uuid": "3523e621-934d-4c4d-a386-6feee86570f2" - }, - { - "argument_index": 7, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "95512078-7603-455c-a90c-52ae7fede0b9", - "version_uuid": "31982a3c-4991-474f-96d6-47231c8076f6" - }, - { - "argument_index": 8, - "default_value": 0.0, - "display_name": "O & M Costs per Component ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "7dd4b872-358d-4128-8d90-51982bade2fe", - "version_uuid": "be2c214c-80df-4b5a-936e-a756a09218f7" - }, - { - "argument_index": 9, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "8906e1ce-3a0c-4294-b1cf-5b030af1fecf", - "version_uuid": "acf32e80-2629-445d-91e2-5b312461b634" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddCostToSupplySideHVACComponentByAirLoop", - "bcl_measure_uuid": "a667a52f-aa04-4997-9292-c81671d75f84", - "bcl_measure_version_uuid": "a3e6efe8-fccd-48da-b0bf-abc1e6a6b483", - "description": "This will add cost to HVAC components of a specified type in the selected air loop(s). It can run on all air loops or a single air loop. This measures only adds cost and doesn't alter equipment performance", - "display_name": "Add Cost To Supply Side HVAC Component by Air Loop", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 0, - "measure_type": "RubyMeasure", - "name": "Add Cost To Supply Side HVAC Component by Air Loop", - "output_file_type": "OSM", - "uuid": "4cfae0b7-136e-42b1-9986-c62ecbf26622", - "version_uuid": "2bc65377-b482-43de-86e9-5c9d814a1e9c" - } - ], - "name": "Add Cost To Supply Side HVAC Component by Air Loop Group", - "uuid": "40d29c7c-6eb5-4d05-8394-d2a6eb8db359", - "version_uuid": "999ca41d-e04d-4ffb-9793-a23d8daaaabb", - "workflow_index": 23, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Set COP for Two Speed DX Cooling Units Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "2a223b57-fb41-48d5-a1c4-70460f71fe82", - "version_uuid": "1c531900-1050-4d9c-a0b5-8b082a5bff5e" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 1, - "display_name": "*All Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose an Air Loop with a two speed DX Cooling Unit to Alter.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "f39fcf40-6f52-4f2b-8682-fa093c7219b5", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}", - "version_uuid": "e75a263e-a8b6-4b01-9f24-39a3ae17f998" - }, - { - "argument_index": 1, - "default_value": 4.0, - "display_name": "Rated High Speed COP", - "domain_type": "Interval", - "name": "cop_high", - "required": true, - "type": "Double", - "uuid": "7c050a88-0595-4b9d-9044-8fbadc72db71", - "value": 3.5, - "version_uuid": "213b4463-9cd5-4d0a-933f-5c1901221b5d" - }, - { - "argument_index": 2, - "default_value": 4.0, - "display_name": "Rated Low Speed COP", - "domain_type": "Interval", - "name": "cop_low", - "required": true, - "type": "Double", - "uuid": "09642f86-7902-4459-950d-fc85865ec1c6", - "value": 3.5, - "version_uuid": "4e3d9c9a-6323-41cd-9577-ed21f5ff9ac3" - }, - { - "argument_index": 3, - "default_value": "true", - "display_name": "Remove Baseline Costs From Effected Cooling Coil DX Two Speed Units?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "3feb1f3b-dd43-4594-97ff-321b37a90602", - "version_uuid": "6fc9fcac-38e4-4ced-af89-1dd94de283f9" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Cooling Coil DX Two Speed Unit ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "92c36eb9-c8a9-4a67-b53d-ce7ef655a90c", - "value": 500.0, - "version_uuid": "78a86084-db39-4746-b83c-4d9008a0f6b5" - }, - { - "argument_index": 5, - "default_value": 0.0, - "display_name": "Demolition Costs per Cooling Coil DX Two Speed Unit ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "5b086b64-c15a-4fd8-a436-a1dd3e573b58", - "version_uuid": "41e07bf4-71c0-4bf0-b9b8-95971b8417db" - }, - { - "argument_index": 6, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "49f7c234-99fb-479b-a944-7f9d8eb498fd", - "version_uuid": "79ec17ab-afc5-492f-af5f-421c8c632212" - }, - { - "argument_index": 7, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "fe9fd470-b681-44c3-ad3d-768a343dc3e0", - "version_uuid": "a9866c09-6b31-4b03-9e6d-17d2cafab1f0" - }, - { - "argument_index": 8, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "78d210ae-ad19-4448-ba8f-152aa47a7cea", - "version_uuid": "1be57cdc-b9cd-4c9e-923f-fa2369024e31" - }, - { - "argument_index": 9, - "default_value": 0.0, - "display_name": "O & M Costs per Cooling Coil DX Two Speed Unit ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "fe20c576-a5de-44ad-b5f1-0f8edd3ee73b", - "version_uuid": "6003cb14-1b50-495b-b394-6fc33d1e2716" - }, - { - "argument_index": 10, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "ae051938-aea2-42a1-95ad-d4b84f182702", - "version_uuid": "e60a67a5-9bc4-486f-aa02-2862d039a8f7" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/SetCOPforTwoSpeedDXCoolingUnits", - "bcl_measure_uuid": "ab217b3b-4eac-4e3c-90a3-ab8800b50cfb", - "bcl_measure_version_uuid": "a9985a45-710a-49b0-8162-df47ace4245e", - "description": "This measure will find two speed DX cooling units in the model and will alter the Rated HighSpeed COP to a specified value. It can be run on a single or all air loops in the model.", - "display_name": "Set COP for Two Speed DX Cooling Units Dining COP 3.5", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Set COP for Two Speed DX Cooling Units Dining COP 3.5", - "output_file_type": "OSM", - "uuid": "d537be5d-b298-4f2b-a63a-a44fc91b4035", - "version_uuid": "abd9363e-4515-4451-ad8b-10fa0ba15935" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 1, - "display_name": "*All Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose an Air Loop with a two speed DX Cooling Unit to Alter.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "48dac8b2-9924-4f13-a1b8-459c3f322557", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}", - "version_uuid": "e7321ece-3802-4a94-8c08-43bf687581e0" - }, - { - "argument_index": 1, - "default_value": 4.0, - "display_name": "Rated High Speed COP", - "domain_type": "Interval", - "name": "cop_high", - "required": true, - "type": "Double", - "uuid": "1fb12c01-0594-4cc3-9ae4-a9058215b882", - "version_uuid": "f2473ffa-e55d-40bf-9dc4-f11f203c795d" - }, - { - "argument_index": 2, - "default_value": 4.0, - "display_name": "Rated Low Speed COP", - "domain_type": "Interval", - "name": "cop_low", - "required": true, - "type": "Double", - "uuid": "17256e60-8cb8-40ad-bb1c-216eb8d36815", - "version_uuid": "7579820c-8ba2-4751-875c-c6fcf46af163" - }, - { - "argument_index": 3, - "default_value": "true", - "display_name": "Remove Baseline Costs From Effected Cooling Coil DX Two Speed Units?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "54c493e4-5b19-4044-b1ac-c3fa1983040f", - "version_uuid": "b3052a82-3e79-457d-a704-942d35a46f17" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Cooling Coil DX Two Speed Unit ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "98497f44-57f3-4330-816a-a17de42e337e", - "version_uuid": "4d2c8a19-672f-4761-89a2-721344778a0f" - }, - { - "argument_index": 5, - "default_value": 0.0, - "display_name": "Demolition Costs per Cooling Coil DX Two Speed Unit ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "8eb48652-b7f9-4261-825f-140a33a210f7", - "version_uuid": "ed439061-fe2b-4b93-af2b-22972bf2ffb0" - }, - { - "argument_index": 6, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "e3f84bd9-6699-4396-8bca-74d571897d39", - "version_uuid": "3967e123-60ac-48b6-974f-8475445f1397" - }, - { - "argument_index": 7, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "25d23001-0afc-474c-a7e3-11c5852f20af", - "version_uuid": "c51038e4-6f92-4bec-bb75-50350978b8fe" - }, - { - "argument_index": 8, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "13c51013-921d-4058-93af-deb8dfdb682b", - "version_uuid": "1bdfdbdc-4f84-4e2d-9638-a7c91293cf27" - }, - { - "argument_index": 9, - "default_value": 0.0, - "display_name": "O & M Costs per Cooling Coil DX Two Speed Unit ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "8f2e0c43-ca8f-4c37-8499-371ef60adf21", - "version_uuid": "3336b08a-9434-4bbb-9776-edc585c9c930" - }, - { - "argument_index": 10, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "635af042-2444-4e38-b0ed-31ebf6217cce", - "version_uuid": "102041b1-719d-4dc9-885b-8ddc17fff410" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/SetCOPforTwoSpeedDXCoolingUnits", - "bcl_measure_uuid": "ab217b3b-4eac-4e3c-90a3-ab8800b50cfb", - "bcl_measure_version_uuid": "a9985a45-710a-49b0-8162-df47ace4245e", - "description": "This measure will find two speed DX cooling units in the model and will alter the Rated HighSpeed COP to a specified value. It can be run on a single or all air loops in the model.", - "display_name": "Set COP for Two Speed DX Cooling Units Dining COP 4", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Set COP for Two Speed DX Cooling Units Dining COP 4", - "output_file_type": "OSM", - "uuid": "94aa7626-4c9a-4b52-83b6-f6e80f9c6644", - "version_uuid": "be74c788-4a8b-402f-9937-a42e4ff1c463" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 1, - "display_name": "*All Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose an Air Loop with a two speed DX Cooling Unit to Alter.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "d372ae12-6625-47f7-906f-64d8213def71", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}", - "version_uuid": "7d3bfff9-b5b3-4c9e-be9d-31c7d0841f09" - }, - { - "argument_index": 1, - "default_value": 4.0, - "display_name": "Rated High Speed COP", - "domain_type": "Interval", - "name": "cop_high", - "required": true, - "type": "Double", - "uuid": "d92fba65-bad8-4a43-ad9c-d18e82c564b2", - "value": 4.5, - "version_uuid": "c14feb95-4128-4972-918c-e334a4414df0" - }, - { - "argument_index": 2, - "default_value": 4.0, - "display_name": "Rated Low Speed COP", - "domain_type": "Interval", - "name": "cop_low", - "required": true, - "type": "Double", - "uuid": "3f439147-e7be-46db-8f96-682575978723", - "value": 4.5, - "version_uuid": "3af1311b-06ec-40d0-9d21-496daa5437e1" - }, - { - "argument_index": 3, - "default_value": "true", - "display_name": "Remove Baseline Costs From Effected Cooling Coil DX Two Speed Units?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "5c2f1ed8-9ce2-41a6-b7d9-ee337f5ab024", - "version_uuid": "7045d9a5-9d91-43c4-b14a-d74f8a102b27" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Cooling Coil DX Two Speed Unit ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "9b0ad777-ebf6-45a4-ac43-869ce162e5a8", - "version_uuid": "e83cb125-b225-49e6-92c8-332880fab013" - }, - { - "argument_index": 5, - "default_value": 0.0, - "display_name": "Demolition Costs per Cooling Coil DX Two Speed Unit ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "7cc7401f-411e-4303-9c45-f010b474eb2b", - "version_uuid": "1368ce26-e70e-4bb1-a062-b33908af0a3d" - }, - { - "argument_index": 6, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "d5387166-70ac-485f-96b9-e731523a94b4", - "version_uuid": "100bbb50-58d4-4393-b2bb-2e4520a9ff25" - }, - { - "argument_index": 7, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "0ab366d6-a818-4318-bb06-6fa871c25489", - "version_uuid": "02757133-81ad-4d2e-aedb-26b4ff5f6753" - }, - { - "argument_index": 8, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "b7885c1b-fe27-4dc5-902e-a199aabe615c", - "version_uuid": "5dd17439-a7d6-4dec-9612-e5547018cc7d" - }, - { - "argument_index": 9, - "default_value": 0.0, - "display_name": "O & M Costs per Cooling Coil DX Two Speed Unit ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "23c21f4f-5430-40d6-81a1-453cf4022cb4", - "version_uuid": "6ac1f50b-1c4e-48b9-bdd3-888006889e05" - }, - { - "argument_index": 10, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "3c0e389b-b128-4124-a8dc-8f9f8b91c37c", - "version_uuid": "01ea1924-2726-4635-9b6c-41948fc12700" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/SetCOPforTwoSpeedDXCoolingUnits", - "bcl_measure_uuid": "ab217b3b-4eac-4e3c-90a3-ab8800b50cfb", - "bcl_measure_version_uuid": "a9985a45-710a-49b0-8162-df47ace4245e", - "description": "This measure will find two speed DX cooling units in the model and will alter the Rated HighSpeed COP to a specified value. It can be run on a single or all air loops in the model.", - "display_name": "Set COP for Two Speed DX Cooling Units Dining COP 4.5", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Set COP for Two Speed DX Cooling Units Dining COP 4.5", - "output_file_type": "OSM", - "uuid": "9dc410f1-0f5a-48d7-90e7-f436c44efd76", - "version_uuid": "eee3b279-7d43-47a2-a249-29fc1b120d10" - } - ], - "name": "Set COP for Two Speed DX Cooling Units Group", - "uuid": "869e2083-d247-4dd6-807a-a868133f3a30", - "version_uuid": "9fd851a0-97dc-4682-9f27-9cfef488b5f4", - "workflow_index": 24, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Improve Fan Belt Efficiency Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "cc4a6eea-06e4-4446-ad01-d735039bbbd7", - "version_uuid": "097ebca0-25ee-4c67-95f9-65a88a52b41b" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Packaged Rooftop Air Conditioner - Kitchen", - "value": "{7783f2f6-1212-4a53-9b81-b08a1d4ce8b5}" - }, - { - "choice_index": 1, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 2, - "display_name": "VAV with Reheat 1st floor", - "value": "{e584358b-7b51-4e65-b3aa-9cf6777e35e0}" - }, - { - "choice_index": 3, - "display_name": "VAV with Reheat 2nd floor", - "value": "{e556983c-c28c-4553-b244-f393f716173f}" - }, - { - "choice_index": 4, - "display_name": "VAV with Reheat 3rd and 4th floor (hand built)", - "value": "{1fe35234-fa1b-406f-9db2-23a2ae7bc5dc}" - }, - { - "choice_index": 5, - "display_name": "*All Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose an Air Loop to Alter.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "5cd741b0-8264-496e-bab8-e17e6bc8e5d2", - "version_uuid": "17d9f603-bbfe-455a-9319-cb7cff5d6792" - }, - { - "argument_index": 1, - "default_value": 3.0, - "display_name": "Motor Efficiency Improvement Due to Fan Belt Improvements(%).", - "domain_type": "Interval", - "name": "motor_eff", - "required": true, - "type": "Double", - "uuid": "cba8b8a0-3485-4995-99e1-96e9d2c22bfa", - "version_uuid": "c9921e6a-6614-4f9f-b982-e5624d191f30" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Remove Baseline Costs From Effected Fans?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "c67d8ae9-4e43-4840-8564-e068d6d7ceab", - "version_uuid": "02dd5bb1-5e31-43e5-baed-49e21f7e3a5a" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Motor ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "ea75c1ba-2da5-4212-9c1b-eee298e890e1", - "value": 500.0, - "version_uuid": "918dcc48-f8e6-435a-ab92-f7cd4fb07212" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Demolition Costs per Motor ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "91fcc5f9-d7e4-4c04-b8ca-c25d777a4c0c", - "version_uuid": "34aa3467-228c-4c0c-ae61-d35316230ff2" - }, - { - "argument_index": 5, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "ce0e3ecc-f558-44ed-8334-d76ef6759cea", - "version_uuid": "db1e7489-ca4b-4946-9d5a-ca9db8ef8053" - }, - { - "argument_index": 6, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "51a7613a-e4ab-4b9b-a2e1-aa62f88cd872", - "version_uuid": "d24427af-d924-455f-adc4-65ced11401f0" - }, - { - "argument_index": 7, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "9c0c3622-b1c8-45c0-9c98-8183accc6ff5", - "version_uuid": "18f04536-e6cf-4295-9c2f-e3a5d290b796" - }, - { - "argument_index": 8, - "default_value": 0.0, - "display_name": "O & M Costs per Motor ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "23af75f3-86e4-4677-bc98-b57b407661b9", - "version_uuid": "bced846d-df35-492e-bc94-a67c9b4ab1cf" - }, - { - "argument_index": 9, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "75cd68ca-f4c4-43e6-b64d-bf43038f21b5", - "version_uuid": "0645326d-75ab-4a21-ad27-1bf277620166" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ImproveFanBeltEfficiency", - "bcl_measure_uuid": "724ef0bb-49ab-4697-bcab-09a8846a3714", - "bcl_measure_version_uuid": "f2be89c6-effe-49e6-8f10-79a29395681e", - "description": "The assessment team observed opportunities for fan belt improvements on HVAC fan drives. These motors are asynchronous induction motors.\r\r\r\n\r\r\r\nImprovements in belt efficiency result in energy savings at the motor. The three common belt efficiency measures are belt tightening (1%-5% savings per motor), replace standard v-belts with cogged v-belts (2% savings per motor), and replace standard belts with synchronous belts (3% savings per motor).\r\r\r\n\r\r\r\nWell-adjusted belts run cooler, last longer, and operate at higher efficiency than standard belts. The belts associated with the largest motors, longest run times, and that are run closest to full load should be given priority when making replacements.\r\r\r\n ", - "display_name": "Improve Fan Belt Efficiency 3% motor eff increase", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Improve Fan Belt Efficiency 3% motor eff increase", - "output_file_type": "OSM", - "uuid": "a6b00a25-f68f-4a7a-b736-ad023ed3f33f", - "version_uuid": "f7ac5563-39b6-40d8-948e-3b7e1a3f1c9a" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Packaged Rooftop Air Conditioner - Kitchen", - "value": "{7783f2f6-1212-4a53-9b81-b08a1d4ce8b5}" - }, - { - "choice_index": 1, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 2, - "display_name": "VAV with Reheat 1st floor", - "value": "{e584358b-7b51-4e65-b3aa-9cf6777e35e0}" - }, - { - "choice_index": 3, - "display_name": "VAV with Reheat 2nd floor", - "value": "{e556983c-c28c-4553-b244-f393f716173f}" - }, - { - "choice_index": 4, - "display_name": "VAV with Reheat 3rd and 4th floor (hand built)", - "value": "{1fe35234-fa1b-406f-9db2-23a2ae7bc5dc}" - }, - { - "choice_index": 5, - "display_name": "*All Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose an Air Loop to Alter.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "002ed3c8-304c-4090-8ac4-e703f1857a70", - "version_uuid": "f1ff8e40-d6d4-49c0-b36d-1b89eb6c847e" - }, - { - "argument_index": 1, - "default_value": 3.0, - "display_name": "Motor Efficiency Improvement Due to Fan Belt Improvements(%).", - "domain_type": "Interval", - "name": "motor_eff", - "required": true, - "type": "Double", - "uuid": "ed118a7d-9a99-4c44-93f7-d81a2e14197c", - "value": 4.0, - "version_uuid": "3247f02a-4f17-47b3-97bd-4aeeb016c7f1" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Remove Baseline Costs From Effected Fans?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "c58191fe-2a61-49c1-aa1f-19d891ab3d4f", - "version_uuid": "1b0bdf76-e4d2-461e-89a2-1169b5f50d22" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Motor ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "62b1da24-a006-491e-bb7d-dec5613e857c", - "value": 600.0, - "version_uuid": "1bd613d1-4434-4edb-97ec-89f84cd41f3a" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Demolition Costs per Motor ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "5a55beb2-7c15-4df7-9370-145903018fd1", - "version_uuid": "5d057bd7-b643-4bc2-b5c0-a21f8c2cf27c" - }, - { - "argument_index": 5, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "1ac43881-7d54-4e82-bccb-993e1e314f60", - "version_uuid": "d77b1521-a97f-4b29-9664-453253c47cc4" - }, - { - "argument_index": 6, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "6f7f09a1-3e53-4f28-b169-a4cb2d21c964", - "version_uuid": "9c38a9c1-de16-4dd4-811e-8a7bb97be50d" - }, - { - "argument_index": 7, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "2d4723ec-28de-4ee8-b3bc-24b34fad7853", - "version_uuid": "7b45eeb9-039e-42e7-8819-2337d9a4b9e3" - }, - { - "argument_index": 8, - "default_value": 0.0, - "display_name": "O & M Costs per Motor ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "303820d9-0173-4935-87e6-c73fe273e300", - "version_uuid": "d291afcc-139e-4b49-9924-48d244bee02b" - }, - { - "argument_index": 9, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "130b429a-c0ba-49a5-9a94-cc0992d5b73e", - "version_uuid": "9ec9b3f6-1f85-43e6-aaf1-0354e3398551" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ImproveFanBeltEfficiency", - "bcl_measure_uuid": "724ef0bb-49ab-4697-bcab-09a8846a3714", - "bcl_measure_version_uuid": "f2be89c6-effe-49e6-8f10-79a29395681e", - "description": "The assessment team observed opportunities for fan belt improvements on HVAC fan drives. These motors are asynchronous induction motors.\r\r\r\n\r\r\r\nImprovements in belt efficiency result in energy savings at the motor. The three common belt efficiency measures are belt tightening (1%-5% savings per motor), replace standard v-belts with cogged v-belts (2% savings per motor), and replace standard belts with synchronous belts (3% savings per motor).\r\r\r\n\r\r\r\nWell-adjusted belts run cooler, last longer, and operate at higher efficiency than standard belts. The belts associated with the largest motors, longest run times, and that are run closest to full load should be given priority when making replacements.\r\r\r\n ", - "display_name": "Improve Fan Belt Efficiency 4% motor eff increase", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Improve Fan Belt Efficiency 4% motor eff increase", - "output_file_type": "OSM", - "uuid": "0b75f663-2db0-4260-9d82-6a4d1802387f", - "version_uuid": "a2944de3-e485-462e-adcf-7a09bfc5f834" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Packaged Rooftop Air Conditioner - Kitchen", - "value": "{7783f2f6-1212-4a53-9b81-b08a1d4ce8b5}" - }, - { - "choice_index": 1, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 2, - "display_name": "VAV with Reheat 1st floor", - "value": "{e584358b-7b51-4e65-b3aa-9cf6777e35e0}" - }, - { - "choice_index": 3, - "display_name": "VAV with Reheat 2nd floor", - "value": "{e556983c-c28c-4553-b244-f393f716173f}" - }, - { - "choice_index": 4, - "display_name": "VAV with Reheat 3rd and 4th floor (hand built)", - "value": "{1fe35234-fa1b-406f-9db2-23a2ae7bc5dc}" - }, - { - "choice_index": 5, - "display_name": "*All Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose an Air Loop to Alter.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "44604896-f651-4a25-b9a3-056a9d5315b0", - "version_uuid": "e341cd5e-fafe-47a6-8b10-fb1e3aa8a571" - }, - { - "argument_index": 1, - "default_value": 3.0, - "display_name": "Motor Efficiency Improvement Due to Fan Belt Improvements(%).", - "domain_type": "Interval", - "name": "motor_eff", - "required": true, - "type": "Double", - "uuid": "f871921b-5274-4ff5-90ea-054dde71b5b0", - "value": 5.0, - "version_uuid": "0355d68c-8478-4184-b1af-a56e989dd9d9" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Remove Baseline Costs From Effected Fans?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "ee078800-37b4-401a-b32e-ce56122da85e", - "version_uuid": "97db2350-56dc-4f22-aace-98b95a23362c" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Motor ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "1a277107-21ee-4410-bfb0-38d4a10e32ea", - "value": 700.0, - "version_uuid": "35a57f50-7212-4e4d-9525-4b7e50a4d028" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Demolition Costs per Motor ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "f87d7c43-405d-40ea-86fe-202b4d2acc80", - "version_uuid": "f4926f9f-2df4-4450-a416-b4f8e8c27e95" - }, - { - "argument_index": 5, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "79c6c69e-a636-43cf-82b8-a1a1c27a337f", - "version_uuid": "d9e3a460-0dbf-4fb4-b8ae-12eb1e6f5697" - }, - { - "argument_index": 6, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "d39bf314-715a-4d4f-b0da-b2cf652cd339", - "version_uuid": "e663b4d2-0da3-44a6-a414-ced452e5537f" - }, - { - "argument_index": 7, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "e10c7e57-25a4-4e98-98d7-ed7242f9aa8c", - "version_uuid": "05725029-3f92-4e8d-8dbc-66d9c8de6d00" - }, - { - "argument_index": 8, - "default_value": 0.0, - "display_name": "O & M Costs per Motor ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "30ec8e70-2deb-4c8d-bef2-38696fdb9f33", - "version_uuid": "a3cbdc0e-2f98-48d2-89cd-4afb7aeaf4bd" - }, - { - "argument_index": 9, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "25632545-7c27-4749-8d47-3ddcaa09b4ec", - "version_uuid": "ce497d4f-45fa-4ba5-bc82-448a85a69746" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ImproveFanBeltEfficiency", - "bcl_measure_uuid": "724ef0bb-49ab-4697-bcab-09a8846a3714", - "bcl_measure_version_uuid": "f2be89c6-effe-49e6-8f10-79a29395681e", - "description": "The assessment team observed opportunities for fan belt improvements on HVAC fan drives. These motors are asynchronous induction motors.\r\r\r\n\r\r\r\nImprovements in belt efficiency result in energy savings at the motor. The three common belt efficiency measures are belt tightening (1%-5% savings per motor), replace standard v-belts with cogged v-belts (2% savings per motor), and replace standard belts with synchronous belts (3% savings per motor).\r\r\r\n\r\r\r\nWell-adjusted belts run cooler, last longer, and operate at higher efficiency than standard belts. The belts associated with the largest motors, longest run times, and that are run closest to full load should be given priority when making replacements.\r\r\r\n ", - "display_name": "Improve Fan Belt Efficiency 5% motor eff increase", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Improve Fan Belt Efficiency 5% motor eff increase", - "output_file_type": "OSM", - "uuid": "95b1035e-5f95-4bdc-bd87-466215520e71", - "version_uuid": "4d78ce1f-e260-441d-8eff-10305cdec88f" - } - ], - "name": "Improve Fan Belt Efficiency Group", - "uuid": "4f01fd30-4f79-498f-bdbb-1d30589f006d", - "version_uuid": "7d6e23de-c007-4f7a-8af7-9400d0a8b043", - "workflow_index": 25, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Improve Motor Efficiency Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "789b266b-a0a6-4f7d-9be5-017b43415fa8", - "version_uuid": "22a85788-8215-40b8-9730-d82378607ba1" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Chilled Water Loop", - "value": "{a6a603d5-c0c4-40f9-b12f-dd38f23f5cbf}" - }, - { - "choice_index": 1, - "display_name": "Condenser Water Loop", - "value": "{78eba13d-2bb0-4885-a768-a6e9d355c567}" - }, - { - "choice_index": 2, - "display_name": "Hot Water Loop", - "value": "{69b2f878-9743-4301-be0a-90091e36a00d}" - }, - { - "choice_index": 3, - "display_name": "Packaged Rooftop Air Conditioner - Kitchen", - "value": "{7783f2f6-1212-4a53-9b81-b08a1d4ce8b5}" - }, - { - "choice_index": 4, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 5, - "display_name": "VAV with Reheat 1st floor", - "value": "{e584358b-7b51-4e65-b3aa-9cf6777e35e0}" - }, - { - "choice_index": 6, - "display_name": "VAV with Reheat 2nd floor", - "value": "{e556983c-c28c-4553-b244-f393f716173f}" - }, - { - "choice_index": 7, - "display_name": "VAV with Reheat 3rd and 4th floor (hand built)", - "value": "{1fe35234-fa1b-406f-9db2-23a2ae7bc5dc}" - }, - { - "choice_index": 8, - "display_name": "*All Plant and Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose a Plant or Air Loop to Alter.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "efa76991-d687-407e-9a75-b9c006f9cd7c", - "value": "{a6a603d5-c0c4-40f9-b12f-dd38f23f5cbf}", - "version_uuid": "9b3cb40d-cd75-4cc0-831b-5ca955d589b8" - }, - { - "argument_index": 1, - "default_value": 96.0, - "display_name": "Set Motor Efficiency(%).", - "domain_type": "Interval", - "name": "motor_eff", - "required": true, - "type": "Double", - "uuid": "df3c4c3e-8b75-4722-9d32-f65a46917fb6", - "value": 93.0, - "version_uuid": "d11a8e5d-0b2d-4ddc-b1d8-d26a3de111c4" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Remove Baseline Costs From Effected Fans and Pumps?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "795de933-3efb-4eb2-beb6-a4d195a94f04", - "version_uuid": "4ab9b371-c8bb-4d96-a1e5-5540931bc29b" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Motor ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "079239b1-a8c9-4fa8-9d18-87259c55d260", - "version_uuid": "42d16dd7-e76a-4183-a0e4-8b5fc1629d17" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Demolition Costs per Motor ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "7b194cbc-eb80-4c40-b0fe-6ed283c97c2d", - "version_uuid": "ed3b945c-1e0d-48ec-b67b-3a499eedc1c0" - }, - { - "argument_index": 5, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "39fb9ad2-e736-49c9-a306-f1e5ad36eaf0", - "version_uuid": "eed90971-61ae-43b3-8030-44678fcb5e47" - }, - { - "argument_index": 6, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "c1e9c507-4324-4342-81dd-44f0581e963a", - "version_uuid": "2624b97f-8d91-46a8-8a3e-b2d0b9d69ed8" - }, - { - "argument_index": 7, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "9190b435-58ce-455f-a185-d152082011ff", - "version_uuid": "b56fc874-0cea-4a1d-bbed-b9944cb6db1e" - }, - { - "argument_index": 8, - "default_value": 0.0, - "display_name": "O & M Costs per Motor ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "e24819b3-c74c-4ee7-b8f0-077023df0e05", - "version_uuid": "4633f357-1ffd-45ee-a414-4bd92dbaa901" - }, - { - "argument_index": 9, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "85231449-6205-4d91-9f54-33223138e438", - "version_uuid": "6bdc6246-b77c-4db6-8abf-fd9922149ac0" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ImproveMotorEfficiency", - "bcl_measure_uuid": "e581974f-d5c7-480f-bb1e-b032f492eb97", - "bcl_measure_version_uuid": "9280a3a5-1d60-49a4-b431-64236eaf80e3", - "description": "The assessment team observed opportunities for motor efficiency improvements on HVAC systems. These motors are asynchronous induction motors.;;\r\r\r\n;;\r\r\r\nThere are currently motors on the market that are far superior to standard efficiency motors. These come in both premium efficiency and ultra-efficiency which exceed NEMA Premium standards. These motors utilize a die cast copper rotor which reduces the energy requirements of the motor and allows the motor to run cooler. The motor also features an improved heat dissipation system and new low-friction bearings; both of which help extend the life of the motor. The motor also has a smaller weight and size compared to the standard efficiency motors. These high efficiency motors are showing efficiency improvements on the order of 3-10% more efficient than current standard efficiency motors.;;\r\r\r\n;;\r\r\r\nFor all of the three-phase, asynchronous induction motors feeding AHU supply fans, specify premium or ultra-efficiency motors. The belts associated with the largest motors, longest run times, and that run closest to full load should be given priority when making replacements.;;\r\r\r\n ", - "display_name": "Improve Motor Efficiency Chiller Pump Motor 93%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Improve Motor Efficiency Chiller Pump Motor 93%", - "output_file_type": "OSM", - "uuid": "3176a5ff-4bb0-45ef-8eae-1003d5683244", - "version_uuid": "008aa007-64ba-483b-9f46-d123e7ec7e8d" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Chilled Water Loop", - "value": "{a6a603d5-c0c4-40f9-b12f-dd38f23f5cbf}" - }, - { - "choice_index": 1, - "display_name": "Condenser Water Loop", - "value": "{78eba13d-2bb0-4885-a768-a6e9d355c567}" - }, - { - "choice_index": 2, - "display_name": "Hot Water Loop", - "value": "{69b2f878-9743-4301-be0a-90091e36a00d}" - }, - { - "choice_index": 3, - "display_name": "Packaged Rooftop Air Conditioner - Kitchen", - "value": "{7783f2f6-1212-4a53-9b81-b08a1d4ce8b5}" - }, - { - "choice_index": 4, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 5, - "display_name": "VAV with Reheat 1st floor", - "value": "{e584358b-7b51-4e65-b3aa-9cf6777e35e0}" - }, - { - "choice_index": 6, - "display_name": "VAV with Reheat 2nd floor", - "value": "{e556983c-c28c-4553-b244-f393f716173f}" - }, - { - "choice_index": 7, - "display_name": "VAV with Reheat 3rd and 4th floor (hand built)", - "value": "{1fe35234-fa1b-406f-9db2-23a2ae7bc5dc}" - }, - { - "choice_index": 8, - "display_name": "*All Plant and Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose a Plant or Air Loop to Alter.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "a7962209-d132-411c-acdb-8b1ba5a00a6f", - "value": "{a6a603d5-c0c4-40f9-b12f-dd38f23f5cbf}", - "version_uuid": "b5604aa6-103b-4f00-976f-d644fdbd9063" - }, - { - "argument_index": 1, - "default_value": 96.0, - "display_name": "Set Motor Efficiency(%).", - "domain_type": "Interval", - "name": "motor_eff", - "required": true, - "type": "Double", - "uuid": "3539934f-454f-419d-9219-ed201c3f28bd", - "value": 95.0, - "version_uuid": "c7a91e7c-4f89-423d-88ef-ba9ad76c3dcf" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Remove Baseline Costs From Effected Fans and Pumps?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "f911bafc-7bfc-4468-a4fe-af2a394b1770", - "version_uuid": "6f90cdbb-89e1-460e-8fdf-6e65827ffba2" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Motor ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "4cc5b0bf-c076-421d-858f-a443f290a04c", - "version_uuid": "9b57bc25-4c83-498f-943a-66ffefcf5004" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Demolition Costs per Motor ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "774022a9-6927-4878-a80e-07da8951db07", - "version_uuid": "a063d13a-6f09-4047-816f-f335c0eca1e3" - }, - { - "argument_index": 5, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "62f03d11-28eb-44a4-8b48-e287261fd254", - "version_uuid": "81d668ad-9184-453d-a7ea-14714bc38f6d" - }, - { - "argument_index": 6, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "11d8deae-acb2-4e0c-93fa-dcf576f85530", - "version_uuid": "33f8a445-382c-463f-84ca-3748bfc512a0" - }, - { - "argument_index": 7, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "b2ae61d8-d091-4b14-a11e-da77ff973114", - "version_uuid": "53e7ee63-3460-4603-addf-aec11687017a" - }, - { - "argument_index": 8, - "default_value": 0.0, - "display_name": "O & M Costs per Motor ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "a37e7e29-1f01-4687-a2c8-ee8e591d04be", - "version_uuid": "acd9ec9e-8d74-4130-9f91-4769299b6ac5" - }, - { - "argument_index": 9, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "73a1f17f-2ea6-47e9-b67f-5d536006dac8", - "version_uuid": "751127ee-0eee-4b23-9f80-2ffbd36ece28" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ImproveMotorEfficiency", - "bcl_measure_uuid": "e581974f-d5c7-480f-bb1e-b032f492eb97", - "bcl_measure_version_uuid": "9280a3a5-1d60-49a4-b431-64236eaf80e3", - "description": "The assessment team observed opportunities for motor efficiency improvements on HVAC systems. These motors are asynchronous induction motors.;;\r\r\r\n;;\r\r\r\nThere are currently motors on the market that are far superior to standard efficiency motors. These come in both premium efficiency and ultra-efficiency which exceed NEMA Premium standards. These motors utilize a die cast copper rotor which reduces the energy requirements of the motor and allows the motor to run cooler. The motor also features an improved heat dissipation system and new low-friction bearings; both of which help extend the life of the motor. The motor also has a smaller weight and size compared to the standard efficiency motors. These high efficiency motors are showing efficiency improvements on the order of 3-10% more efficient than current standard efficiency motors.;;\r\r\r\n;;\r\r\r\nFor all of the three-phase, asynchronous induction motors feeding AHU supply fans, specify premium or ultra-efficiency motors. The belts associated with the largest motors, longest run times, and that run closest to full load should be given priority when making replacements.;;\r\r\r\n ", - "display_name": "Improve Motor Efficiency Chiller Pump Motor 95%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Improve Motor Efficiency Chiller Pump Motor 95%", - "output_file_type": "OSM", - "uuid": "2a13a9cd-7bbc-4135-bc3b-09e3c4967e31", - "version_uuid": "6d4ed6fe-210e-44f2-8543-dc80ecf96268" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Chilled Water Loop", - "value": "{a6a603d5-c0c4-40f9-b12f-dd38f23f5cbf}" - }, - { - "choice_index": 1, - "display_name": "Condenser Water Loop", - "value": "{78eba13d-2bb0-4885-a768-a6e9d355c567}" - }, - { - "choice_index": 2, - "display_name": "Hot Water Loop", - "value": "{69b2f878-9743-4301-be0a-90091e36a00d}" - }, - { - "choice_index": 3, - "display_name": "Packaged Rooftop Air Conditioner - Kitchen", - "value": "{7783f2f6-1212-4a53-9b81-b08a1d4ce8b5}" - }, - { - "choice_index": 4, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 5, - "display_name": "VAV with Reheat 1st floor", - "value": "{e584358b-7b51-4e65-b3aa-9cf6777e35e0}" - }, - { - "choice_index": 6, - "display_name": "VAV with Reheat 2nd floor", - "value": "{e556983c-c28c-4553-b244-f393f716173f}" - }, - { - "choice_index": 7, - "display_name": "VAV with Reheat 3rd and 4th floor (hand built)", - "value": "{1fe35234-fa1b-406f-9db2-23a2ae7bc5dc}" - }, - { - "choice_index": 8, - "display_name": "*All Plant and Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose a Plant or Air Loop to Alter.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "fbcace67-52de-4bb6-84cd-56b9d7de9044", - "version_uuid": "092cef9d-0cf6-460f-8602-8800f14f3057" - }, - { - "argument_index": 1, - "default_value": 96.0, - "display_name": "Set Motor Efficiency(%).", - "domain_type": "Interval", - "name": "motor_eff", - "required": true, - "type": "Double", - "uuid": "8f2804d2-e299-41ec-b2e1-7ed82f23b8fd", - "value": 97.0, - "version_uuid": "a054c297-36e8-46d0-a929-86f524dbafe9" - }, - { - "argument_index": 2, - "default_value": "false", - "display_name": "Remove Baseline Costs From Effected Fans and Pumps?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "81403177-69e4-44dd-b1f6-074aad0922cd", - "version_uuid": "ee45acc3-1c56-4c5b-b68a-509c1c57a030" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Motor ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "8b1f1520-d7fe-4f33-bde2-4a2d9cf87865", - "version_uuid": "e21a2981-1bc1-4cd6-98d7-896f6b6e61b2" - }, - { - "argument_index": 4, - "default_value": 0.0, - "display_name": "Demolition Costs per Motor ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "36c61c11-634d-4531-9672-cc45d26ce460", - "version_uuid": "f7440c0f-5814-4b2d-9c1b-9f91ca01465c" - }, - { - "argument_index": 5, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "5390b448-1af1-41e6-a3f4-0e6bf3e1b916", - "version_uuid": "9b4293d6-3866-456e-b199-8581d3b1a223" - }, - { - "argument_index": 6, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "b6ad383f-6dec-4092-b960-bdae812832a2", - "version_uuid": "d251ba84-ea57-492c-84bd-8c8cd7ffe555" - }, - { - "argument_index": 7, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "ad104829-4443-4694-854c-6885b59e290d", - "version_uuid": "4faa481c-3b5a-4ae5-a2a0-040508e8f8fc" - }, - { - "argument_index": 8, - "default_value": 0.0, - "display_name": "O & M Costs per Motor ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "52366e32-d199-4593-b863-9fdbf0d5c219", - "version_uuid": "72c43767-1c75-4035-9355-db646b65c3be" - }, - { - "argument_index": 9, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "fa5be2e9-dbfb-4894-88ba-2022894dd9fc", - "version_uuid": "9557ec25-e8b2-41a3-b06c-99ceb196b6e6" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ImproveMotorEfficiency", - "bcl_measure_uuid": "e581974f-d5c7-480f-bb1e-b032f492eb97", - "bcl_measure_version_uuid": "9280a3a5-1d60-49a4-b431-64236eaf80e3", - "description": "The assessment team observed opportunities for motor efficiency improvements on HVAC systems. These motors are asynchronous induction motors.;;\r\r\r\n;;\r\r\r\nThere are currently motors on the market that are far superior to standard efficiency motors. These come in both premium efficiency and ultra-efficiency which exceed NEMA Premium standards. These motors utilize a die cast copper rotor which reduces the energy requirements of the motor and allows the motor to run cooler. The motor also features an improved heat dissipation system and new low-friction bearings; both of which help extend the life of the motor. The motor also has a smaller weight and size compared to the standard efficiency motors. These high efficiency motors are showing efficiency improvements on the order of 3-10% more efficient than current standard efficiency motors.;;\r\r\r\n;;\r\r\r\nFor all of the three-phase, asynchronous induction motors feeding AHU supply fans, specify premium or ultra-efficiency motors. The belts associated with the largest motors, longest run times, and that run closest to full load should be given priority when making replacements.;;\r\r\r\n ", - "display_name": "Improve Motor Efficiency Chiller Pump Motor 97%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Improve Motor Efficiency Chiller Pump Motor 97%", - "output_file_type": "OSM", - "uuid": "6bef43d6-1ff7-4a78-a281-9d261c5739ea", - "version_uuid": "fa0b7c19-4c42-4a7a-80ef-61916aba2ec0" - } - ], - "name": "Improve Motor Efficiency Group", - "uuid": "c0b17acd-05ac-4e82-8c63-79acaf658716", - "version_uuid": "b13acadf-6be3-44c6-8f0d-a943f63e9ffa", - "workflow_index": 26, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Enable Demand Controlled Ventilation Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "ce0ecbaa-9beb-4e34-b480-7b6a15ffc3b1", - "version_uuid": "477e34f7-4c8d-4d8e-a6be-0d86eb7b54eb" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Packaged Rooftop Air Conditioner - Kitchen", - "value": "{7783f2f6-1212-4a53-9b81-b08a1d4ce8b5}" - }, - { - "choice_index": 1, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 2, - "display_name": "VAV with Reheat 1st floor", - "value": "{e584358b-7b51-4e65-b3aa-9cf6777e35e0}" - }, - { - "choice_index": 3, - "display_name": "VAV with Reheat 2nd floor", - "value": "{e556983c-c28c-4553-b244-f393f716173f}" - }, - { - "choice_index": 4, - "display_name": "VAV with Reheat 3rd and 4th floor (hand built)", - "value": "{1fe35234-fa1b-406f-9db2-23a2ae7bc5dc}" - }, - { - "choice_index": 5, - "display_name": "*All Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose an Air Loop to Alter.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "d05b22f4-36b9-4173-a81e-eefcc8bdfb4f", - "version_uuid": "94042210-e989-4766-bbd1-b4acdac4ddbb" - }, - { - "argument_index": 1, - "default_value": "false", - "display_name": "Remove Baseline Costs From Effected AirLoopHVACOutdoorAirSystems?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "a5d2fa43-d9ee-49ec-b992-b9d6c25b66b6", - "version_uuid": "b874e615-bab4-4ebd-ac52-fc44124aace5" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Air Loop to Enable Demand Controlled Ventilation ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "1fd7f455-a0b8-4561-901c-ab270fa48689", - "version_uuid": "59d191c1-7e88-42f7-8bb0-643b6afccc39" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Demolition Costs per Air Loop to Enable Demand Controlled Ventilation ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "e154bf3b-34c2-4509-9713-50090d43a0d3", - "version_uuid": "90b29cda-c505-4f3b-9653-4b4efb8e8e95" - }, - { - "argument_index": 4, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "0fd9b0a2-06b8-40ca-a6d3-2168fd241ae7", - "version_uuid": "e1b11d8d-f8ee-4574-8d96-a712c9052b44" - }, - { - "argument_index": 5, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "1719a8c7-0e2f-4dc3-a43e-7ee7d1b39a94", - "version_uuid": "9f1755e3-878c-4169-82df-520d8d9bfdaa" - }, - { - "argument_index": 6, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "9292d248-5477-4a56-b398-9847e399eb74", - "version_uuid": "25ab0c02-ade7-4016-98d5-0a9963c38aa3" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "O & M Costs per Air Loop for Demand Controlled Ventilation ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "dc0af852-e5c7-4a95-a1aa-2928ace14a4a", - "version_uuid": "1765a9ae-b1cb-4f2a-9acf-ebee0003573d" - }, - { - "argument_index": 8, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "97f0d498-c3e8-405b-8ff6-68f54d1b4a87", - "version_uuid": "ffde0b4c-fce4-4ae0-b658-fd14f2cb7171" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/EnableDemandControlledVentilation", - "bcl_measure_uuid": "3ff4b412-8689-4b11-a588-935c621dc97d", - "bcl_measure_version_uuid": "f8a56992-4da0-4518-985d-460be6b3f3d3", - "description": "The facility currently does not have a demand controlled ventilation system or CO2 sensors in the air delivery system. Outside air is introduced and conditioned at a fixed rate based on the maximum design. Since the building occupancy fluctuates and is often less than the maximum design occupancy, it is being over-ventilated and consuming more energy than necessary. The building CO2 level is closely related to the occupancy. The typical outside CO2 level is relatively low concentration, around 400 to 500 ppm, and is used to dilute the higher indoor CO2 levels.;\r\r\r\r\n Demand controlled ventilation could be implemented by deploying CO2 sensors located in each AHU return air duct and in densely occupied spaces, such as conference rooms. Implementation of this ECM will require:;\r\r\r\r\n -Rebalance the open/closed outside air dampers to a lower minimum ventilation rate.;\r\r\r\r\n -Program demand ventilation controls into each AHU, controlling modulating dampers in mixed air AHUs and VFDs in outside air units. Ventilation will be generally controlled from return air sensors, but will be increased as needed based on densely occupied space sensors.;\r\r\r\r\n -Commission the project.;\r\r\r\r\n ", - "display_name": "Enable Demand Controlled Ventilation Alternative", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Enable Demand Controlled Ventilation Alternative", - "output_file_type": "OSM", - "uuid": "a81d25e9-7004-454c-9b89-76a1660ee6d0", - "version_uuid": "f4a2ca17-6e33-45ce-9547-34768bae93e2" - } - ], - "name": "Enable Demand Controlled Ventilation Group", - "uuid": "6188be08-1b14-451f-9224-54a4ae1fb8fe", - "version_uuid": "aa4374b1-d49b-42fe-acd1-d337feadad03", - "workflow_index": 27, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Enable Economizer Control Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "44761f50-c7f9-4f3b-85ff-e7f3216f3f82", - "version_uuid": "5f1fb599-6ea2-4e7d-a94e-8a4f5e87c837" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Packaged Rooftop Air Conditioner - Kitchen", - "value": "{7783f2f6-1212-4a53-9b81-b08a1d4ce8b5}" - }, - { - "choice_index": 1, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 2, - "display_name": "VAV with Reheat 1st floor", - "value": "{e584358b-7b51-4e65-b3aa-9cf6777e35e0}" - }, - { - "choice_index": 3, - "display_name": "VAV with Reheat 2nd floor", - "value": "{e556983c-c28c-4553-b244-f393f716173f}" - }, - { - "choice_index": 4, - "display_name": "VAV with Reheat 3rd and 4th floor (hand built)", - "value": "{1fe35234-fa1b-406f-9db2-23a2ae7bc5dc}" - }, - { - "choice_index": 5, - "display_name": "*All Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose an Air Loop to Alter.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "bdbb3a73-0090-4e7b-bb4d-a53b62ea3e9f", - "version_uuid": "ec9e9d92-8c26-4438-90a7-1e509e8c3aa7" - }, - { - "argument_index": 1, - "choices": [ - { - "choice_index": 0, - "display_name": "FixedDryBulb", - "value": "FixedDryBulb" - }, - { - "choice_index": 1, - "display_name": "FixedEnthalpy", - "value": "FixedEnthalpy" - }, - { - "choice_index": 2, - "display_name": "DifferentialDryBulb", - "value": "DifferentialDryBulb" - }, - { - "choice_index": 3, - "display_name": "DifferentialEnthalpy", - "value": "DifferentialEnthalpy" - }, - { - "choice_index": 4, - "display_name": "FixedDewPointAndDryBulb", - "value": "FixedDewPointAndDryBulb" - }, - { - "choice_index": 5, - "display_name": "NoEconomizer", - "value": "NoEconomizer" - } - ], - "display_name": "Economizer Control Type.", - "domain_type": "Enumeration", - "name": "economizer_type", - "required": true, - "type": "Choice", - "uuid": "7c65078c-71de-47b6-88a1-0014fcedef8f", - "value": "FixedDryBulb", - "version_uuid": "843c42a3-6f09-4dbd-8a24-c241a5234c71" - }, - { - "argument_index": 2, - "default_value": 69.0, - "display_name": "Economizer Maximum Limit Dry-Bulb Temperature (F).", - "domain_type": "Interval", - "name": "econoMaxDryBulbTemp", - "required": true, - "type": "Double", - "uuid": "c2ad580b-ccaa-4798-8817-660d2278db4f", - "version_uuid": "e1630c34-d3b9-4338-a01f-9c9661946056" - }, - { - "argument_index": 3, - "default_value": 28.0, - "display_name": "Economizer Maximum Enthalpy (Btu/lb).", - "domain_type": "Interval", - "name": "econoMaxEnthalpy", - "required": true, - "type": "Double", - "uuid": "07229f27-89d5-4baf-a060-27988bd9f92e", - "version_uuid": "cf360819-7164-4c26-982d-36eb2de3150b" - }, - { - "argument_index": 4, - "default_value": 55.0, - "display_name": "Economizer Maximum Limit Dewpoint Temperature (F).", - "domain_type": "Interval", - "name": "econoMaxDewpointTemp", - "required": true, - "type": "Double", - "uuid": "2f432476-ba60-415d-9555-e7f578e85c0e", - "version_uuid": "ca60c2d0-1de3-4037-bd35-883ef8f733ad" - }, - { - "argument_index": 5, - "default_value": -148.0, - "display_name": "Economizer Minimum Limit Dry-Bulb Temperature (F).", - "domain_type": "Interval", - "name": "econoMinDryBulbTemp", - "required": true, - "type": "Double", - "uuid": "9a4e511a-e354-468b-bffe-b0cf3d518d61", - "version_uuid": "51458f19-ca44-48c7-aec1-de88b23d2535" - }, - { - "argument_index": 6, - "default_value": "false", - "display_name": "Remove Baseline Costs From Effected AirLoopHVACOutdoorAirSystems?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "60823895-40be-42e6-801b-c863bf3cba31", - "version_uuid": "33ecba26-6e0f-42f4-a3ea-682b7d82aa7c" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Air Loop to Enable Economizer ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "09d1217b-3f1e-413c-ac91-7d723baafa91", - "version_uuid": "c6e91dc8-7cf3-44ac-8106-78df0aaecf63" - }, - { - "argument_index": 8, - "default_value": 0.0, - "display_name": "Demolition Costs per Air Loop to Enable Economizer ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "a5d20dce-163b-4879-a55b-bdaef77a8d0c", - "version_uuid": "ffc3564b-26b2-4b35-bae9-2c30296d75a6" - }, - { - "argument_index": 9, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "ec7dad1c-f618-4b39-94f8-b2178c58afeb", - "version_uuid": "e34e31db-2b70-4203-985c-2890db387c61" - }, - { - "argument_index": 10, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "e746c72c-770c-4273-8ef6-2ff49d1c2a72", - "version_uuid": "10e23131-6ee9-4121-8cfb-539bf9a84a33" - }, - { - "argument_index": 11, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "55a57731-7da0-4215-b9e9-2fcae762d073", - "version_uuid": "f1a5b43c-06be-4e4d-b1b8-b18176bfd0f2" - }, - { - "argument_index": 12, - "default_value": 0.0, - "display_name": "O & M Costs per Air Loop for Economizer ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "727ca9b9-ad61-4b0b-b69a-1b64a4bb1951", - "version_uuid": "410fbe3c-f7c6-43fe-8213-67c1ded46a82" - }, - { - "argument_index": 13, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "514c58d1-2cc4-46a8-b662-c32c4bdf9298", - "version_uuid": "97159356-d02e-44d4-8dbd-a853319cb898" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/EnableEconomizerControl", - "bcl_measure_uuid": "f8cc920d-8ae3-411a-922f-e6fed3223c4d", - "bcl_measure_version_uuid": "d8dc28b0-2c09-41c0-a81c-b9e15bd48419", - "description": "There is currently not a functioning air side economizer enabled in the building. Air side economizers use cold outside air to either assist the mechanical cooling system, or if the air is cold enough, provide all of the cooling for a facility.\r\r\r\r\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\r\r\r\r\nIn order for an air side economizer to function properly, all of the outside air damper actuators need to have modulating capabilities. In addition to that, new control sequences need to be written into the building automation control system to enable the air-side economizer when outside air temperatures are below 60?F-65?F and the interior space temperatures are calling for cooling.\r\r\r\r\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\r\r\r\r\nThe building would realize the following operational benefits by utilizing an air-side economizer:\r\r\r\r\r\r\r\r\r\r\r\n -Reduction in cooling system energy use\r\r\r\r\r\r\r\r\r\r\r\n -Reduction in mechanical cooling system run time\r\r\r\r\r\r\r\r\r\r\r\n -Possible improvement in indoor air quality\r\r\r\r\r\r\r\r\r\r\r\n ", - "display_name": "Enable Economizer Control Fixed Dry Bulb", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Enable Economizer Control Fixed Dry Bulb", - "output_file_type": "OSM", - "uuid": "8c3c3796-524a-40a6-9d24-71ce5f3ec968", - "version_uuid": "5dfb5132-5d85-4537-ae1a-7cdf64e9eca4" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Packaged Rooftop Air Conditioner - Kitchen", - "value": "{7783f2f6-1212-4a53-9b81-b08a1d4ce8b5}" - }, - { - "choice_index": 1, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 2, - "display_name": "VAV with Reheat 1st floor", - "value": "{e584358b-7b51-4e65-b3aa-9cf6777e35e0}" - }, - { - "choice_index": 3, - "display_name": "VAV with Reheat 2nd floor", - "value": "{e556983c-c28c-4553-b244-f393f716173f}" - }, - { - "choice_index": 4, - "display_name": "VAV with Reheat 3rd and 4th floor (hand built)", - "value": "{1fe35234-fa1b-406f-9db2-23a2ae7bc5dc}" - }, - { - "choice_index": 5, - "display_name": "*All Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose an Air Loop to Alter.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "136b1956-a645-437d-a184-e00a44fcb4d7", - "version_uuid": "a1b93f1c-fec3-4a27-be35-c813686de484" - }, - { - "argument_index": 1, - "choices": [ - { - "choice_index": 0, - "display_name": "FixedDryBulb", - "value": "FixedDryBulb" - }, - { - "choice_index": 1, - "display_name": "FixedEnthalpy", - "value": "FixedEnthalpy" - }, - { - "choice_index": 2, - "display_name": "DifferentialDryBulb", - "value": "DifferentialDryBulb" - }, - { - "choice_index": 3, - "display_name": "DifferentialEnthalpy", - "value": "DifferentialEnthalpy" - }, - { - "choice_index": 4, - "display_name": "FixedDewPointAndDryBulb", - "value": "FixedDewPointAndDryBulb" - }, - { - "choice_index": 5, - "display_name": "NoEconomizer", - "value": "NoEconomizer" - } - ], - "display_name": "Economizer Control Type.", - "domain_type": "Enumeration", - "name": "economizer_type", - "required": true, - "type": "Choice", - "uuid": "0749a7ab-3542-4285-a78d-cb8f77f81e44", - "value": "DifferentialEnthalpy", - "version_uuid": "074f5e65-aee3-4996-9567-4581b7946f47" - }, - { - "argument_index": 2, - "default_value": 69.0, - "display_name": "Economizer Maximum Limit Dry-Bulb Temperature (F).", - "domain_type": "Interval", - "name": "econoMaxDryBulbTemp", - "required": true, - "type": "Double", - "uuid": "6393fff2-556e-402c-9572-f8decd0423e5", - "version_uuid": "9f740ba2-2379-45ac-b6e6-af850b227f28" - }, - { - "argument_index": 3, - "default_value": 28.0, - "display_name": "Economizer Maximum Enthalpy (Btu/lb).", - "domain_type": "Interval", - "name": "econoMaxEnthalpy", - "required": true, - "type": "Double", - "uuid": "6d2b94b2-b3cf-44bc-83a7-4a441c5b5f29", - "version_uuid": "9a8e00af-b5ba-4d70-a371-bad2ebb0c1de" - }, - { - "argument_index": 4, - "default_value": 55.0, - "display_name": "Economizer Maximum Limit Dewpoint Temperature (F).", - "domain_type": "Interval", - "name": "econoMaxDewpointTemp", - "required": true, - "type": "Double", - "uuid": "cc198c01-7244-4b55-a836-6daad81b481e", - "version_uuid": "c7823e83-076f-4310-a764-c37d317d667d" - }, - { - "argument_index": 5, - "default_value": -148.0, - "display_name": "Economizer Minimum Limit Dry-Bulb Temperature (F).", - "domain_type": "Interval", - "name": "econoMinDryBulbTemp", - "required": true, - "type": "Double", - "uuid": "6bc0be66-ab8e-4733-976c-493640674eb2", - "version_uuid": "2af094ef-18e2-4693-bbe3-40cfe0735a42" - }, - { - "argument_index": 6, - "default_value": "false", - "display_name": "Remove Baseline Costs From Effected AirLoopHVACOutdoorAirSystems?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "f0dbfabb-4213-4539-b186-d249aa1ecd15", - "version_uuid": "fdca382d-0ccd-465b-8f4e-efec413cb777" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Air Loop to Enable Economizer ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "8fc3af26-e2df-4397-81ed-8d989f7dd810", - "version_uuid": "b2979109-70b1-467e-a476-072ccab36aec" - }, - { - "argument_index": 8, - "default_value": 0.0, - "display_name": "Demolition Costs per Air Loop to Enable Economizer ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "6da420cb-fd28-4c13-86c1-4067900da86f", - "version_uuid": "f2e495e6-82a9-4bce-bed5-618091b12007" - }, - { - "argument_index": 9, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "6d634962-3c2d-413e-8db7-a44b33da3be7", - "version_uuid": "2bffdaf4-0d08-49ec-bbd3-7c58ac97aaed" - }, - { - "argument_index": 10, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "38fed3b3-b08d-4a19-99ef-e000711d924a", - "version_uuid": "b251f689-2ae4-4b4a-854e-dc15ccc98cb2" - }, - { - "argument_index": 11, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "48d0e81d-a9ca-4b1a-a78e-209a4f3a66f8", - "version_uuid": "c91ccbf1-bff1-409a-b9a1-f588caae0267" - }, - { - "argument_index": 12, - "default_value": 0.0, - "display_name": "O & M Costs per Air Loop for Economizer ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "2547f612-73bc-4d08-a897-74d9a24b7b31", - "version_uuid": "ffe9e833-f826-4e75-8ed7-5501cb6ec4e0" - }, - { - "argument_index": 13, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "c394ac47-9d1f-4699-b2e1-7d0f56cf3606", - "version_uuid": "afc25fea-f98c-42e7-9d81-a685dcea1da6" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/EnableEconomizerControl", - "bcl_measure_uuid": "f8cc920d-8ae3-411a-922f-e6fed3223c4d", - "bcl_measure_version_uuid": "d8dc28b0-2c09-41c0-a81c-b9e15bd48419", - "description": "There is currently not a functioning air side economizer enabled in the building. Air side economizers use cold outside air to either assist the mechanical cooling system, or if the air is cold enough, provide all of the cooling for a facility.\r\r\r\r\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\r\r\r\r\nIn order for an air side economizer to function properly, all of the outside air damper actuators need to have modulating capabilities. In addition to that, new control sequences need to be written into the building automation control system to enable the air-side economizer when outside air temperatures are below 60?F-65?F and the interior space temperatures are calling for cooling.\r\r\r\r\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\r\r\r\r\nThe building would realize the following operational benefits by utilizing an air-side economizer:\r\r\r\r\r\r\r\r\r\r\r\n -Reduction in cooling system energy use\r\r\r\r\r\r\r\r\r\r\r\n -Reduction in mechanical cooling system run time\r\r\r\r\r\r\r\r\r\r\r\n -Possible improvement in indoor air quality\r\r\r\r\r\r\r\r\r\r\r\n ", - "display_name": "Enable Economizer Control Differential Enthalpy", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Enable Economizer Control Differential Enthalpy", - "output_file_type": "OSM", - "uuid": "3dcac769-ddce-4a4e-95de-49edd94eb591", - "version_uuid": "261a02c3-ecd5-4fcd-a941-e59ef78115b6" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Packaged Rooftop Air Conditioner - Kitchen", - "value": "{7783f2f6-1212-4a53-9b81-b08a1d4ce8b5}" - }, - { - "choice_index": 1, - "display_name": "Packaged Rooftop VAV with PFP Boxes and Reheat - Dining", - "value": "{f0691e60-7659-4847-bf47-9130610de37d}" - }, - { - "choice_index": 2, - "display_name": "VAV with Reheat 1st floor", - "value": "{e584358b-7b51-4e65-b3aa-9cf6777e35e0}" - }, - { - "choice_index": 3, - "display_name": "VAV with Reheat 2nd floor", - "value": "{e556983c-c28c-4553-b244-f393f716173f}" - }, - { - "choice_index": 4, - "display_name": "VAV with Reheat 3rd and 4th floor (hand built)", - "value": "{1fe35234-fa1b-406f-9db2-23a2ae7bc5dc}" - }, - { - "choice_index": 5, - "display_name": "*All Air Loops*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose an Air Loop to Alter.", - "domain_type": "Enumeration", - "name": "object", - "required": true, - "type": "Choice", - "uuid": "66f24cd1-1c76-438b-b345-46b39681f0d5", - "version_uuid": "a56b85cf-a5d7-44aa-8d79-af7893b0824e" - }, - { - "argument_index": 1, - "choices": [ - { - "choice_index": 0, - "display_name": "FixedDryBulb", - "value": "FixedDryBulb" - }, - { - "choice_index": 1, - "display_name": "FixedEnthalpy", - "value": "FixedEnthalpy" - }, - { - "choice_index": 2, - "display_name": "DifferentialDryBulb", - "value": "DifferentialDryBulb" - }, - { - "choice_index": 3, - "display_name": "DifferentialEnthalpy", - "value": "DifferentialEnthalpy" - }, - { - "choice_index": 4, - "display_name": "FixedDewPointAndDryBulb", - "value": "FixedDewPointAndDryBulb" - }, - { - "choice_index": 5, - "display_name": "NoEconomizer", - "value": "NoEconomizer" - } - ], - "display_name": "Economizer Control Type.", - "domain_type": "Enumeration", - "name": "economizer_type", - "required": true, - "type": "Choice", - "uuid": "4b9a331e-398b-4219-abc6-9c576eefd7c9", - "value": "FixedDewPointAndDryBulb", - "version_uuid": "66938f2c-33c9-44e1-bef5-52c6284fd7aa" - }, - { - "argument_index": 2, - "default_value": 69.0, - "display_name": "Economizer Maximum Limit Dry-Bulb Temperature (F).", - "domain_type": "Interval", - "name": "econoMaxDryBulbTemp", - "required": true, - "type": "Double", - "uuid": "cf3c1b2e-9730-442e-ae1a-5f32b75a30b5", - "version_uuid": "ad3a2338-e1c1-4b3e-9460-b6df412ec5ce" - }, - { - "argument_index": 3, - "default_value": 28.0, - "display_name": "Economizer Maximum Enthalpy (Btu/lb).", - "domain_type": "Interval", - "name": "econoMaxEnthalpy", - "required": true, - "type": "Double", - "uuid": "d002a1df-64e5-4692-92be-8ef242c13343", - "version_uuid": "1a142423-4965-44ca-a845-167327a6adfb" - }, - { - "argument_index": 4, - "default_value": 55.0, - "display_name": "Economizer Maximum Limit Dewpoint Temperature (F).", - "domain_type": "Interval", - "name": "econoMaxDewpointTemp", - "required": true, - "type": "Double", - "uuid": "fab44091-5a27-435d-9582-6617da88cc6a", - "version_uuid": "704e2115-b176-49f0-ab0c-52df27a16f86" - }, - { - "argument_index": 5, - "default_value": -148.0, - "display_name": "Economizer Minimum Limit Dry-Bulb Temperature (F).", - "domain_type": "Interval", - "name": "econoMinDryBulbTemp", - "required": true, - "type": "Double", - "uuid": "8f0c8870-ba3c-4462-a7ea-e8908e21b613", - "version_uuid": "70eda8f6-dca3-4b8a-a2ef-c49a54c254de" - }, - { - "argument_index": 6, - "default_value": "false", - "display_name": "Remove Baseline Costs From Effected AirLoopHVACOutdoorAirSystems?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "a95631e9-fa70-479f-80c1-a4f99cb177eb", - "version_uuid": "55a8bb17-ac32-4945-b826-54671f11fab3" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "Material and Installation Costs per Air Loop to Enable Economizer ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "e5104f07-f0f6-4805-8ac4-5f2b18ba4c22", - "version_uuid": "fae9be5e-1a20-4cc1-85f4-c4526eaf5a38" - }, - { - "argument_index": 8, - "default_value": 0.0, - "display_name": "Demolition Costs per Air Loop to Enable Economizer ($).", - "domain_type": "Interval", - "name": "demolition_cost", - "required": true, - "type": "Double", - "uuid": "14d29c11-6b0d-44e5-800a-eaeca90f3785", - "version_uuid": "2ee61173-b25f-4e42-858f-c0dba184560f" - }, - { - "argument_index": 9, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "1ff60d71-72f3-40f0-a797-389b8830caaa", - "version_uuid": "60920cb0-377f-4f00-8daa-43cb86308b37" - }, - { - "argument_index": 10, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "a1db9710-31ed-4ac3-88c2-c8136b8d8f52", - "version_uuid": "ec0c765b-851f-4139-aaa8-2ef5243f7a64" - }, - { - "argument_index": 11, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "38a4f2a9-1158-4b39-ad69-ef96e33df923", - "version_uuid": "88a51b39-e823-421f-9258-4cf64e211049" - }, - { - "argument_index": 12, - "default_value": 0.0, - "display_name": "O & M Costs per Air Loop for Economizer ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "418d586d-c357-4e9b-bd41-3335e9cc7025", - "version_uuid": "a40b99e0-e3e4-4777-b7ec-51e01187c1d9" - }, - { - "argument_index": 13, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "a135a769-9eff-42ca-9611-623b10d79455", - "version_uuid": "71ca8260-2c40-4218-8498-d28e8d08bea5" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/EnableEconomizerControl", - "bcl_measure_uuid": "f8cc920d-8ae3-411a-922f-e6fed3223c4d", - "bcl_measure_version_uuid": "d8dc28b0-2c09-41c0-a81c-b9e15bd48419", - "description": "There is currently not a functioning air side economizer enabled in the building. Air side economizers use cold outside air to either assist the mechanical cooling system, or if the air is cold enough, provide all of the cooling for a facility.\r\r\r\r\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\r\r\r\r\nIn order for an air side economizer to function properly, all of the outside air damper actuators need to have modulating capabilities. In addition to that, new control sequences need to be written into the building automation control system to enable the air-side economizer when outside air temperatures are below 60?F-65?F and the interior space temperatures are calling for cooling.\r\r\r\r\r\r\r\r\r\r\r\n\r\r\r\r\r\r\r\r\r\r\r\nThe building would realize the following operational benefits by utilizing an air-side economizer:\r\r\r\r\r\r\r\r\r\r\r\n -Reduction in cooling system energy use\r\r\r\r\r\r\r\r\r\r\r\n -Reduction in mechanical cooling system run time\r\r\r\r\r\r\r\r\r\r\r\n -Possible improvement in indoor air quality\r\r\r\r\r\r\r\r\r\r\r\n ", - "display_name": "Enable Economizer Control Fixed Dewpoint and Dry Bulb", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Enable Economizer Control Fixed Dewpoint and Dry Bulb", - "output_file_type": "OSM", - "uuid": "8ec7bb5c-928e-40c2-80d9-eb384e36141d", - "version_uuid": "ecc39149-ec1c-474c-8824-d0ba5e2ddcfc" - } - ], - "name": "Enable Economizer Control Group", - "uuid": "7d36de8e-b573-4270-bdb1-06f33298a173", - "version_uuid": "4487e892-e450-4bdf-b2d5-6e8a28c6d182", - "workflow_index": 28, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Reduce Ventilation By Percentage Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "9fc14a9c-7d44-4996-b959-05687eaf06d8", - "version_uuid": "a7eaf3af-2c46-40da-a978-d8f908cc4bf3" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor", - "value": "{81125e3e-d3ce-4ef9-ba9c-6e7437efdca8}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom", - "value": "{0658a18e-343c-41bf-b4ba-66e7c3fab1c2}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby", - "value": "{9f450f46-dc3e-44b3-9314-4cd14102ec6e}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen", - "value": "{bd500ca9-1c31-4a5a-a9f9-e32a5eadf0f1}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce", - "value": "{b689f00f-ae2b-4273-8455-4acd0b506b6f}" - }, - { - "choice_index": 7, - "display_name": "*Entire Building*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.", - "domain_type": "Enumeration", - "name": "space_type", - "required": true, - "type": "Choice", - "uuid": "eead7d80-814b-498b-9c65-6b2d95f7dc7e", - "version_uuid": "06899969-ecfc-4b3e-a53c-303b3e3259d7" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Design Specification Outdoor Air Reduction (%).", - "domain_type": "Interval", - "name": "design_spec_outdoor_air_reduction_percent", - "required": true, - "type": "Double", - "uuid": "28c52030-25c8-4b3e-a920-8450f2c7c054", - "version_uuid": "4a4b92ca-830a-460d-83f8-ad0ab4449d91" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceVentilationByPercentage", - "bcl_measure_uuid": "cecf490d-7146-4055-85c7-a7901b9a7dc0", - "bcl_measure_version_uuid": "43c5c7ea-2ce7-495e-ab62-81ea4b26ba76", - "description": "This measure will reduce space ventilation rates by the requested percentage. A cost per square foot of building area can be added to the model.", - "display_name": "Reduce Ventilation By Percentage 30% ", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Reduce Ventilation By Percentage 30% ", - "output_file_type": "OSM", - "uuid": "1379064e-a6e4-4c6e-9078-ff94f5e5a030", - "version_uuid": "fc0a82e0-fe62-400b-a4b0-e996b51b1c23" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor", - "value": "{81125e3e-d3ce-4ef9-ba9c-6e7437efdca8}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom", - "value": "{0658a18e-343c-41bf-b4ba-66e7c3fab1c2}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby", - "value": "{9f450f46-dc3e-44b3-9314-4cd14102ec6e}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen", - "value": "{bd500ca9-1c31-4a5a-a9f9-e32a5eadf0f1}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce", - "value": "{b689f00f-ae2b-4273-8455-4acd0b506b6f}" - }, - { - "choice_index": 7, - "display_name": "*Entire Building*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.", - "domain_type": "Enumeration", - "name": "space_type", - "required": true, - "type": "Choice", - "uuid": "2375444e-4699-4b58-b9e1-8411f52ed583", - "version_uuid": "b7cb11b7-696a-4a11-8d23-934859425d8a" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Design Specification Outdoor Air Reduction (%).", - "domain_type": "Interval", - "name": "design_spec_outdoor_air_reduction_percent", - "required": true, - "type": "Double", - "uuid": "90936864-8ee5-446e-9b1b-879e99c31ca4", - "value": 40.0, - "version_uuid": "8bce7467-7131-4292-ae04-b3ae057e50cb" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceVentilationByPercentage", - "bcl_measure_uuid": "cecf490d-7146-4055-85c7-a7901b9a7dc0", - "bcl_measure_version_uuid": "43c5c7ea-2ce7-495e-ab62-81ea4b26ba76", - "description": "This measure will reduce space ventilation rates by the requested percentage. A cost per square foot of building area can be added to the model.", - "display_name": "Reduce Ventilation By Percentage 40%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Reduce Ventilation By Percentage 40%", - "output_file_type": "OSM", - "uuid": "fce85699-6f16-4c29-8765-7cae0f7fbc92", - "version_uuid": "013945bd-8af4-4e82-8ce8-7214c7f89908" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "CBECS 1980-2004 LargeHotel Corridor", - "value": "{81125e3e-d3ce-4ef9-ba9c-6e7437efdca8}" - }, - { - "choice_index": 1, - "display_name": "CBECS 1980-2004 LargeHotel GuestRoom", - "value": "{0658a18e-343c-41bf-b4ba-66e7c3fab1c2}" - }, - { - "choice_index": 2, - "display_name": "CBECS 1980-2004 LargeHotel Lobby", - "value": "{9f450f46-dc3e-44b3-9314-4cd14102ec6e}" - }, - { - "choice_index": 3, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Dining", - "value": "{35e59f03-73b9-462e-85f3-da02cd1abe95}" - }, - { - "choice_index": 4, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 FullServiceRestaurant Kitchen", - "value": "{bd500ca9-1c31-4a5a-a9f9-e32a5eadf0f1}" - }, - { - "choice_index": 5, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 MediumOffice WholeBuilding", - "value": "{bb9450fb-9047-4de8-8db2-48bd93963a7b}" - }, - { - "choice_index": 6, - "display_name": "CBECS_1980-2004 ClimateZone 1-8 SuperMarket Sales/Produce", - "value": "{b689f00f-ae2b-4273-8455-4acd0b506b6f}" - }, - { - "choice_index": 7, - "display_name": "*Entire Building*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.", - "domain_type": "Enumeration", - "name": "space_type", - "required": true, - "type": "Choice", - "uuid": "98478d42-65e0-45c9-9843-586782979b2e", - "version_uuid": "7ad948fc-1db3-4f29-9c5f-352f4d991b89" - }, - { - "argument_index": 1, - "default_value": 30.0, - "display_name": "Design Specification Outdoor Air Reduction (%).", - "domain_type": "Interval", - "name": "design_spec_outdoor_air_reduction_percent", - "required": true, - "type": "Double", - "uuid": "e79cb1e5-d0d7-4366-b9d0-7faabf5bafa4", - "value": 50.0, - "version_uuid": "862fc02e-2268-4e04-84f7-b49f799cd197" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ReduceVentilationByPercentage", - "bcl_measure_uuid": "cecf490d-7146-4055-85c7-a7901b9a7dc0", - "bcl_measure_version_uuid": "43c5c7ea-2ce7-495e-ab62-81ea4b26ba76", - "description": "This measure will reduce space ventilation rates by the requested percentage. A cost per square foot of building area can be added to the model.", - "display_name": "Reduce Ventilation By Percentage 50%", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Reduce Ventilation By Percentage 50%", - "output_file_type": "OSM", - "uuid": "3048c350-12bf-4955-910b-7a5a2c423925", - "version_uuid": "dc011d5c-4511-438b-a4eb-751ee9e6b17f" - } - ], - "name": "Reduce Ventilation By Percentage Group", - "uuid": "c6cd37c4-3353-4d17-9c6f-63e84b8cfd8c", - "version_uuid": "d1a663fb-75cf-4683-95e8-65f97848d811", - "workflow_index": 29, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Shift Schedule Profile Time Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "fa12a5b1-e937-454f-855e-6fcdbc7d1e36", - "version_uuid": "587bd199-5ed6-43e3-9e4d-23075da9b93f" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Always On", - "value": "{00a1ed71-5e25-494a-a707-7f899234d721}" - }, - { - "choice_index": 1, - "display_name": "Chilled_Water_Temperature", - "value": "{137a2e76-f315-4914-9307-0e7f810aaca3}" - }, - { - "choice_index": 2, - "display_name": "Deck Temperature", - "value": "{d2bf9763-d055-4c1e-8d8d-29be43442e3e}" - }, - { - "choice_index": 3, - "display_name": "Deck_Temperature", - "value": "{8648c828-a320-455c-a496-4ad439a154c5}" - }, - { - "choice_index": 4, - "display_name": "Deck_Temperature 1", - "value": "{f4f7c46f-a5cc-4097-9a4b-872342414d20}" - }, - { - "choice_index": 5, - "display_name": "Deck_Temperature 2", - "value": "{9c39732a-4d1a-4bed-9086-c10e584ea660}" - }, - { - "choice_index": 6, - "display_name": "FullServiceRestaurant ClgSetp", - "value": "{3a5d7f8b-b429-4b34-a4df-05a810e2f3e8}" - }, - { - "choice_index": 7, - "display_name": "FullServiceRestaurant ClgSetp Kitchen", - "value": "{fb765a63-71d2-4a1e-a6c3-72f525f0d436}" - }, - { - "choice_index": 8, - "display_name": "FullServiceRestaurant HtgSetp", - "value": "{fbbbf0de-b6e9-48c7-a3a3-d0ab0c68d4e0}" - }, - { - "choice_index": 9, - "display_name": "FullServiceRestaurant HtgSetp Kitchen", - "value": "{ab5866aa-f853-4ba1-a01a-f673c0c6294b}" - }, - { - "choice_index": 10, - "display_name": "FullServiceRestaurant_Activity", - "value": "{9249c6bd-76f3-4723-b081-df8ba3cded06}" - }, - { - "choice_index": 11, - "display_name": "FullServiceRestaurant_Activity 1", - "value": "{89c680b5-dff2-4cdf-979a-007d4c9717a1}" - }, - { - "choice_index": 12, - "display_name": "FullServiceRestaurant_Bldg_Equip", - "value": "{8804c77f-b638-4ebd-8169-7f4aa4e3835b}" - }, - { - "choice_index": 13, - "display_name": "FullServiceRestaurant_Bldg_Equip 1", - "value": "{44e5db6f-83b6-4f1e-97f9-74b801927c69}" - }, - { - "choice_index": 14, - "display_name": "FullServiceRestaurant_Bldg_Light", - "value": "{04c15481-3113-4d36-8f38-1c85afc47747}" - }, - { - "choice_index": 15, - "display_name": "FullServiceRestaurant_Bldg_Light 1", - "value": "{4259ab39-8523-4c59-9e77-da747eae162b}" - }, - { - "choice_index": 16, - "display_name": "FullServiceRestaurant_Bldg_Occ", - "value": "{358e7bb3-e9a7-44de-a72b-dbbb04f41d14}" - }, - { - "choice_index": 17, - "display_name": "FullServiceRestaurant_Bldg_Occ 1", - "value": "{ce9816b3-53e3-4ba0-93ff-b63ea0ddb0d5}" - }, - { - "choice_index": 18, - "display_name": "FullServiceRestaurant_Gas_Equip", - "value": "{ebc82f5b-a5bb-4ffe-ba10-0aca3e4091e8}" - }, - { - "choice_index": 19, - "display_name": "FullServiceRestaurant_Infil_Half_On", - "value": "{77561d43-a62d-4763-9e55-e02a4fa80cfa}" - }, - { - "choice_index": 20, - "display_name": "FullServiceRestaurant_Infil_Half_On 1", - "value": "{ec6e122f-fd3b-4692-856c-8f6752bf3afd}" - }, - { - "choice_index": 21, - "display_name": "Hot_Water_Temperature", - "value": "{9803d0cb-43e6-4322-9cb4-b517d78a5c63}" - }, - { - "choice_index": 22, - "display_name": "LargeHotel Activity", - "value": "{50908401-b0af-4dd5-b709-83e980790904}" - }, - { - "choice_index": 23, - "display_name": "LargeHotel Bldg Equip", - "value": "{d7538458-a8a8-4c5a-849e-1ad379eecd81}" - }, - { - "choice_index": 24, - "display_name": "LargeHotel Bldg Light", - "value": "{1b451283-1747-46d5-ad83-370a1efa1915}" - }, - { - "choice_index": 25, - "display_name": "LargeHotel Bldg Occ", - "value": "{abfdd7a7-4d80-4b31-a457-063e7a5f41a7}" - }, - { - "choice_index": 26, - "display_name": "LargeHotel ClgSetp", - "value": "{c67e65f8-e144-43de-9311-cf6c12d6750e}" - }, - { - "choice_index": 27, - "display_name": "LargeHotel Clothing", - "value": "{16fe509b-f335-4b42-9414-2df84bdf81b6}" - }, - { - "choice_index": 28, - "display_name": "LargeHotel Corr ClgSetp", - "value": "{32d58cc0-d8ac-459d-ad3e-12129b10dc00}" - }, - { - "choice_index": 29, - "display_name": "LargeHotel Corr HtgSetp", - "value": "{f55d7968-98e9-4dee-ae31-86d3607feb4e}" - }, - { - "choice_index": 30, - "display_name": "LargeHotel Guest ClgSetp", - "value": "{9f6f9bbc-b286-4a44-a16e-9ed75db49aa9}" - }, - { - "choice_index": 31, - "display_name": "LargeHotel Guest HtgSetp", - "value": "{419783ea-3b70-4bd2-850a-53553a22ebdb}" - }, - { - "choice_index": 32, - "display_name": "LargeHotel GuestRoom Equip", - "value": "{031fc005-e2d8-4642-9e7a-b6990c8a0c59}" - }, - { - "choice_index": 33, - "display_name": "LargeHotel GuestRoom Occ", - "value": "{8a99ca67-9a30-4ad7-8914-ec39c7a152bb}" - }, - { - "choice_index": 34, - "display_name": "LargeHotel HtgSetp", - "value": "{b9007151-b322-440c-adb0-e7809d53fe47}" - }, - { - "choice_index": 35, - "display_name": "LargeHotel Infil Quarter On", - "value": "{4880abe7-79a5-44a2-b607-fb8e85f8d35d}" - }, - { - "choice_index": 36, - "display_name": "LargeHotel Kitchen ClgSetp", - "value": "{0f5503c2-167b-4dd5-880d-4336c9594861}" - }, - { - "choice_index": 37, - "display_name": "LargeHotel Kitchen Equip", - "value": "{591ec727-058c-4388-8af0-c9ed623854c3}" - }, - { - "choice_index": 38, - "display_name": "LargeHotel Kitchen Gas", - "value": "{d20178bf-04f8-49f3-bf66-d9138731855c}" - }, - { - "choice_index": 39, - "display_name": "LargeHotel Kitchen HtgSetp", - "value": "{54f17980-9619-454b-b6c6-a5ea60a763b7}" - }, - { - "choice_index": 40, - "display_name": "LargeHotel LaundryRoom Equip", - "value": "{5cdd5a6c-4641-4752-a4ba-717e709895ca}" - }, - { - "choice_index": 41, - "display_name": "LargeHotel LaundryRoom Gas", - "value": "{f82a0876-69e3-49d2-b1fc-95912e480dec}" - }, - { - "choice_index": 42, - "display_name": "LargeHotel Lobby Occ", - "value": "{777ff84d-d6ee-4372-bf9b-7cc44c3506d1}" - }, - { - "choice_index": 43, - "display_name": "Medium Office ClgSetp", - "value": "{9d525b30-8a93-4bb1-8bfc-c4a19ff47982}" - }, - { - "choice_index": 44, - "display_name": "Medium Office ClgSetp 1", - "value": "{6993755e-63d1-4409-9aa8-1c5041183b86}" - }, - { - "choice_index": 45, - "display_name": "Medium Office ClgSetp 2", - "value": "{669d6e9c-dd49-48d3-8d9f-70aacb1fc19a}" - }, - { - "choice_index": 46, - "display_name": "Medium Office ClgSetp 3", - "value": "{5f755882-08ba-4a40-b436-e6b770b12bf7}" - }, - { - "choice_index": 47, - "display_name": "Medium Office ClgSetp 4", - "value": "{4390f38b-678c-42c7-9e7d-674d1416849c}" - }, - { - "choice_index": 48, - "display_name": "Medium Office HtgSetp", - "value": "{c3c9c831-5fe3-4a89-b11c-847740f6737b}" - }, - { - "choice_index": 49, - "display_name": "Medium Office HtgSetp 1", - "value": "{792a0a9c-e1d2-4501-82fa-38d6b5f4b088}" - }, - { - "choice_index": 50, - "display_name": "Medium Office HtgSetp 2", - "value": "{da6432ff-cc43-490e-98f6-18b20e5187d2}" - }, - { - "choice_index": 51, - "display_name": "Medium Office HtgSetp 3", - "value": "{23343262-58ee-4eb8-826e-5fc2c3ed149f}" - }, - { - "choice_index": 52, - "display_name": "Medium Office HtgSetp 4", - "value": "{ebbaa134-7c94-4d9b-a9ed-fa924d0fca88}" - }, - { - "choice_index": 53, - "display_name": "Medium Office_Activity", - "value": "{1670f099-048a-455f-ab96-a9ade7f93cee}" - }, - { - "choice_index": 54, - "display_name": "Medium Office_Bldg_Equip", - "value": "{a7367954-c730-4c5b-a997-483c128071f4}" - }, - { - "choice_index": 55, - "display_name": "Medium Office_Bldg_Light", - "value": "{b3976927-c85d-4300-9aa7-db5441672962}" - }, - { - "choice_index": 56, - "display_name": "Medium Office_Bldg_Occ", - "value": "{82c68f80-3ab3-4a88-83e6-01e402573d8d}" - }, - { - "choice_index": 57, - "display_name": "Medium Office_Infil_Quarter_On", - "value": "{350a848f-6959-4c1f-add7-25e9f3097f49}" - }, - { - "choice_index": 58, - "display_name": "SuperMarket ClgSetp", - "value": "{3621df89-ed84-4ed6-9c81-1744ebc3ecdd}" - }, - { - "choice_index": 59, - "display_name": "SuperMarket HtgSetp", - "value": "{7baf1dfb-3606-4b02-b7bd-3f1e8ccb9003}" - }, - { - "choice_index": 60, - "display_name": "SuperMarket_Activity", - "value": "{c6fc7370-221e-40b7-aef2-6af960b5121b}" - }, - { - "choice_index": 61, - "display_name": "SuperMarket_Activity 1", - "value": "{0b7c4f5b-b04e-4098-a67e-b7f31abe12b2}" - }, - { - "choice_index": 62, - "display_name": "SuperMarket_Activity 2", - "value": "{713f8e43-5176-46eb-8cf4-c7ddfde1eb48}" - }, - { - "choice_index": 63, - "display_name": "SuperMarket_Activity 3", - "value": "{8ef6001a-2c62-4a51-8dd3-aa6db28fe1df}" - }, - { - "choice_index": 64, - "display_name": "SuperMarket_Bldg_Equip", - "value": "{24c76f42-eda6-417b-a964-6acad404c9aa}" - }, - { - "choice_index": 65, - "display_name": "SuperMarket_Bldg_Equip 1", - "value": "{6279fe5f-1a56-4e6e-a9d0-9dc900e69948}" - }, - { - "choice_index": 66, - "display_name": "SuperMarket_Bldg_Equip 2", - "value": "{3f42a702-01fd-41b1-8985-f2fd06206e24}" - }, - { - "choice_index": 67, - "display_name": "SuperMarket_Bldg_Equip 3", - "value": "{09bbe5d3-05aa-45ac-a9d4-91666c5240a6}" - }, - { - "choice_index": 68, - "display_name": "SuperMarket_Bldg_Equip 4", - "value": "{307823db-9696-498c-8b8b-9050a40bafa6}" - }, - { - "choice_index": 69, - "display_name": "SuperMarket_Bldg_Light", - "value": "{59e9978e-9f27-413b-a9be-94c1242a2230}" - }, - { - "choice_index": 70, - "display_name": "SuperMarket_Bldg_Light 1", - "value": "{0f724e15-0b1c-46f6-9735-ac567ccd0fa3}" - }, - { - "choice_index": 71, - "display_name": "SuperMarket_Bldg_Light 2", - "value": "{2208629b-58a0-4a80-99e3-0d0a14123ffc}" - }, - { - "choice_index": 72, - "display_name": "SuperMarket_Bldg_Light 3", - "value": "{69e260aa-2fe3-4b92-882d-6a7fd528bc95}" - }, - { - "choice_index": 73, - "display_name": "SuperMarket_Bldg_Occ", - "value": "{e9296193-a469-4716-a2de-1dc1255ca935}" - }, - { - "choice_index": 74, - "display_name": "SuperMarket_Bldg_Occ 1", - "value": "{ec026f89-57cc-4067-9022-20adfcc687f6}" - }, - { - "choice_index": 75, - "display_name": "SuperMarket_Bldg_Occ 2", - "value": "{60a63ebe-1e0c-4bb7-82cc-3792c9ac9f05}" - }, - { - "choice_index": 76, - "display_name": "SuperMarket_Bldg_Occ 3", - "value": "{8c68ebed-3b0e-4f67-898d-70e7e0643ec3}" - }, - { - "choice_index": 77, - "display_name": "SuperMarket_Infil_Half_On", - "value": "{fd6dea4f-eb62-4fc2-b7f9-0daa3e9237f5}" - }, - { - "choice_index": 78, - "display_name": "SuperMarket_Infil_Half_On 1", - "value": "{bac04549-885f-4b77-9e9c-5211bb12022d}" - }, - { - "choice_index": 79, - "display_name": "SuperMarket_Infil_Half_On 2", - "value": "{bef93e51-f2a2-45cf-a2c5-4cb3905ad4e2}" - }, - { - "choice_index": 80, - "display_name": "SuperMarket_Infil_Half_On 3", - "value": "{feaf85f3-cd56-4d79-a1e8-431aaaf8da00}" - }, - { - "choice_index": 81, - "display_name": "*All Ruleset Schedules*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose a Schedule to Shift the Time For.", - "domain_type": "Enumeration", - "name": "schedule", - "required": true, - "type": "Choice", - "uuid": "67ab8b50-0652-49dc-9f10-9f8b04299dc3", - "version_uuid": "94035e5d-bb65-42c1-936d-e00d38484e77" - }, - { - "argument_index": 1, - "default_value": 1.0, - "display_name": "Shift Schedule Profiles Forward (24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "shift_value", - "required": true, - "type": "Double", - "uuid": "2c4c0803-ce71-4469-aee1-44ca4d235804", - "value": 1.0, - "version_uuid": "36901994-f7e0-4351-84fd-b60b6422dfdb" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ShiftScheduleProfileTime", - "bcl_measure_uuid": "4a428da9-16bb-46be-bbf0-1ad30c98d9ca", - "bcl_measure_version_uuid": "0bb35942-3f39-4ad1-9b3d-d333cbce1f6e", - "description": "Shift a single or all schedules in the building by the specified number of hours", - "display_name": "Shift Schedule Profile Time 1hr late", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Shift Schedule Profile Time 1hr late", - "output_file_type": "OSM", - "uuid": "0cee744d-21c4-4bc7-b0ce-2c83ac616d34", - "version_uuid": "a100c5fa-da86-4449-a254-ddd1d61f0149" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Always On", - "value": "{00a1ed71-5e25-494a-a707-7f899234d721}" - }, - { - "choice_index": 1, - "display_name": "Chilled_Water_Temperature", - "value": "{137a2e76-f315-4914-9307-0e7f810aaca3}" - }, - { - "choice_index": 2, - "display_name": "Deck Temperature", - "value": "{d2bf9763-d055-4c1e-8d8d-29be43442e3e}" - }, - { - "choice_index": 3, - "display_name": "Deck_Temperature", - "value": "{8648c828-a320-455c-a496-4ad439a154c5}" - }, - { - "choice_index": 4, - "display_name": "Deck_Temperature 1", - "value": "{f4f7c46f-a5cc-4097-9a4b-872342414d20}" - }, - { - "choice_index": 5, - "display_name": "Deck_Temperature 2", - "value": "{9c39732a-4d1a-4bed-9086-c10e584ea660}" - }, - { - "choice_index": 6, - "display_name": "FullServiceRestaurant ClgSetp", - "value": "{3a5d7f8b-b429-4b34-a4df-05a810e2f3e8}" - }, - { - "choice_index": 7, - "display_name": "FullServiceRestaurant ClgSetp Kitchen", - "value": "{fb765a63-71d2-4a1e-a6c3-72f525f0d436}" - }, - { - "choice_index": 8, - "display_name": "FullServiceRestaurant HtgSetp", - "value": "{fbbbf0de-b6e9-48c7-a3a3-d0ab0c68d4e0}" - }, - { - "choice_index": 9, - "display_name": "FullServiceRestaurant HtgSetp Kitchen", - "value": "{ab5866aa-f853-4ba1-a01a-f673c0c6294b}" - }, - { - "choice_index": 10, - "display_name": "FullServiceRestaurant_Activity", - "value": "{9249c6bd-76f3-4723-b081-df8ba3cded06}" - }, - { - "choice_index": 11, - "display_name": "FullServiceRestaurant_Activity 1", - "value": "{89c680b5-dff2-4cdf-979a-007d4c9717a1}" - }, - { - "choice_index": 12, - "display_name": "FullServiceRestaurant_Bldg_Equip", - "value": "{8804c77f-b638-4ebd-8169-7f4aa4e3835b}" - }, - { - "choice_index": 13, - "display_name": "FullServiceRestaurant_Bldg_Equip 1", - "value": "{44e5db6f-83b6-4f1e-97f9-74b801927c69}" - }, - { - "choice_index": 14, - "display_name": "FullServiceRestaurant_Bldg_Light", - "value": "{04c15481-3113-4d36-8f38-1c85afc47747}" - }, - { - "choice_index": 15, - "display_name": "FullServiceRestaurant_Bldg_Light 1", - "value": "{4259ab39-8523-4c59-9e77-da747eae162b}" - }, - { - "choice_index": 16, - "display_name": "FullServiceRestaurant_Bldg_Occ", - "value": "{358e7bb3-e9a7-44de-a72b-dbbb04f41d14}" - }, - { - "choice_index": 17, - "display_name": "FullServiceRestaurant_Bldg_Occ 1", - "value": "{ce9816b3-53e3-4ba0-93ff-b63ea0ddb0d5}" - }, - { - "choice_index": 18, - "display_name": "FullServiceRestaurant_Gas_Equip", - "value": "{ebc82f5b-a5bb-4ffe-ba10-0aca3e4091e8}" - }, - { - "choice_index": 19, - "display_name": "FullServiceRestaurant_Infil_Half_On", - "value": "{77561d43-a62d-4763-9e55-e02a4fa80cfa}" - }, - { - "choice_index": 20, - "display_name": "FullServiceRestaurant_Infil_Half_On 1", - "value": "{ec6e122f-fd3b-4692-856c-8f6752bf3afd}" - }, - { - "choice_index": 21, - "display_name": "Hot_Water_Temperature", - "value": "{9803d0cb-43e6-4322-9cb4-b517d78a5c63}" - }, - { - "choice_index": 22, - "display_name": "LargeHotel Activity", - "value": "{50908401-b0af-4dd5-b709-83e980790904}" - }, - { - "choice_index": 23, - "display_name": "LargeHotel Bldg Equip", - "value": "{d7538458-a8a8-4c5a-849e-1ad379eecd81}" - }, - { - "choice_index": 24, - "display_name": "LargeHotel Bldg Light", - "value": "{1b451283-1747-46d5-ad83-370a1efa1915}" - }, - { - "choice_index": 25, - "display_name": "LargeHotel Bldg Occ", - "value": "{abfdd7a7-4d80-4b31-a457-063e7a5f41a7}" - }, - { - "choice_index": 26, - "display_name": "LargeHotel ClgSetp", - "value": "{c67e65f8-e144-43de-9311-cf6c12d6750e}" - }, - { - "choice_index": 27, - "display_name": "LargeHotel Clothing", - "value": "{16fe509b-f335-4b42-9414-2df84bdf81b6}" - }, - { - "choice_index": 28, - "display_name": "LargeHotel Corr ClgSetp", - "value": "{32d58cc0-d8ac-459d-ad3e-12129b10dc00}" - }, - { - "choice_index": 29, - "display_name": "LargeHotel Corr HtgSetp", - "value": "{f55d7968-98e9-4dee-ae31-86d3607feb4e}" - }, - { - "choice_index": 30, - "display_name": "LargeHotel Guest ClgSetp", - "value": "{9f6f9bbc-b286-4a44-a16e-9ed75db49aa9}" - }, - { - "choice_index": 31, - "display_name": "LargeHotel Guest HtgSetp", - "value": "{419783ea-3b70-4bd2-850a-53553a22ebdb}" - }, - { - "choice_index": 32, - "display_name": "LargeHotel GuestRoom Equip", - "value": "{031fc005-e2d8-4642-9e7a-b6990c8a0c59}" - }, - { - "choice_index": 33, - "display_name": "LargeHotel GuestRoom Occ", - "value": "{8a99ca67-9a30-4ad7-8914-ec39c7a152bb}" - }, - { - "choice_index": 34, - "display_name": "LargeHotel HtgSetp", - "value": "{b9007151-b322-440c-adb0-e7809d53fe47}" - }, - { - "choice_index": 35, - "display_name": "LargeHotel Infil Quarter On", - "value": "{4880abe7-79a5-44a2-b607-fb8e85f8d35d}" - }, - { - "choice_index": 36, - "display_name": "LargeHotel Kitchen ClgSetp", - "value": "{0f5503c2-167b-4dd5-880d-4336c9594861}" - }, - { - "choice_index": 37, - "display_name": "LargeHotel Kitchen Equip", - "value": "{591ec727-058c-4388-8af0-c9ed623854c3}" - }, - { - "choice_index": 38, - "display_name": "LargeHotel Kitchen Gas", - "value": "{d20178bf-04f8-49f3-bf66-d9138731855c}" - }, - { - "choice_index": 39, - "display_name": "LargeHotel Kitchen HtgSetp", - "value": "{54f17980-9619-454b-b6c6-a5ea60a763b7}" - }, - { - "choice_index": 40, - "display_name": "LargeHotel LaundryRoom Equip", - "value": "{5cdd5a6c-4641-4752-a4ba-717e709895ca}" - }, - { - "choice_index": 41, - "display_name": "LargeHotel LaundryRoom Gas", - "value": "{f82a0876-69e3-49d2-b1fc-95912e480dec}" - }, - { - "choice_index": 42, - "display_name": "LargeHotel Lobby Occ", - "value": "{777ff84d-d6ee-4372-bf9b-7cc44c3506d1}" - }, - { - "choice_index": 43, - "display_name": "Medium Office ClgSetp", - "value": "{9d525b30-8a93-4bb1-8bfc-c4a19ff47982}" - }, - { - "choice_index": 44, - "display_name": "Medium Office ClgSetp 1", - "value": "{6993755e-63d1-4409-9aa8-1c5041183b86}" - }, - { - "choice_index": 45, - "display_name": "Medium Office ClgSetp 2", - "value": "{669d6e9c-dd49-48d3-8d9f-70aacb1fc19a}" - }, - { - "choice_index": 46, - "display_name": "Medium Office ClgSetp 3", - "value": "{5f755882-08ba-4a40-b436-e6b770b12bf7}" - }, - { - "choice_index": 47, - "display_name": "Medium Office ClgSetp 4", - "value": "{4390f38b-678c-42c7-9e7d-674d1416849c}" - }, - { - "choice_index": 48, - "display_name": "Medium Office HtgSetp", - "value": "{c3c9c831-5fe3-4a89-b11c-847740f6737b}" - }, - { - "choice_index": 49, - "display_name": "Medium Office HtgSetp 1", - "value": "{792a0a9c-e1d2-4501-82fa-38d6b5f4b088}" - }, - { - "choice_index": 50, - "display_name": "Medium Office HtgSetp 2", - "value": "{da6432ff-cc43-490e-98f6-18b20e5187d2}" - }, - { - "choice_index": 51, - "display_name": "Medium Office HtgSetp 3", - "value": "{23343262-58ee-4eb8-826e-5fc2c3ed149f}" - }, - { - "choice_index": 52, - "display_name": "Medium Office HtgSetp 4", - "value": "{ebbaa134-7c94-4d9b-a9ed-fa924d0fca88}" - }, - { - "choice_index": 53, - "display_name": "Medium Office_Activity", - "value": "{1670f099-048a-455f-ab96-a9ade7f93cee}" - }, - { - "choice_index": 54, - "display_name": "Medium Office_Bldg_Equip", - "value": "{a7367954-c730-4c5b-a997-483c128071f4}" - }, - { - "choice_index": 55, - "display_name": "Medium Office_Bldg_Light", - "value": "{b3976927-c85d-4300-9aa7-db5441672962}" - }, - { - "choice_index": 56, - "display_name": "Medium Office_Bldg_Occ", - "value": "{82c68f80-3ab3-4a88-83e6-01e402573d8d}" - }, - { - "choice_index": 57, - "display_name": "Medium Office_Infil_Quarter_On", - "value": "{350a848f-6959-4c1f-add7-25e9f3097f49}" - }, - { - "choice_index": 58, - "display_name": "SuperMarket ClgSetp", - "value": "{3621df89-ed84-4ed6-9c81-1744ebc3ecdd}" - }, - { - "choice_index": 59, - "display_name": "SuperMarket HtgSetp", - "value": "{7baf1dfb-3606-4b02-b7bd-3f1e8ccb9003}" - }, - { - "choice_index": 60, - "display_name": "SuperMarket_Activity", - "value": "{c6fc7370-221e-40b7-aef2-6af960b5121b}" - }, - { - "choice_index": 61, - "display_name": "SuperMarket_Activity 1", - "value": "{0b7c4f5b-b04e-4098-a67e-b7f31abe12b2}" - }, - { - "choice_index": 62, - "display_name": "SuperMarket_Activity 2", - "value": "{713f8e43-5176-46eb-8cf4-c7ddfde1eb48}" - }, - { - "choice_index": 63, - "display_name": "SuperMarket_Activity 3", - "value": "{8ef6001a-2c62-4a51-8dd3-aa6db28fe1df}" - }, - { - "choice_index": 64, - "display_name": "SuperMarket_Bldg_Equip", - "value": "{24c76f42-eda6-417b-a964-6acad404c9aa}" - }, - { - "choice_index": 65, - "display_name": "SuperMarket_Bldg_Equip 1", - "value": "{6279fe5f-1a56-4e6e-a9d0-9dc900e69948}" - }, - { - "choice_index": 66, - "display_name": "SuperMarket_Bldg_Equip 2", - "value": "{3f42a702-01fd-41b1-8985-f2fd06206e24}" - }, - { - "choice_index": 67, - "display_name": "SuperMarket_Bldg_Equip 3", - "value": "{09bbe5d3-05aa-45ac-a9d4-91666c5240a6}" - }, - { - "choice_index": 68, - "display_name": "SuperMarket_Bldg_Equip 4", - "value": "{307823db-9696-498c-8b8b-9050a40bafa6}" - }, - { - "choice_index": 69, - "display_name": "SuperMarket_Bldg_Light", - "value": "{59e9978e-9f27-413b-a9be-94c1242a2230}" - }, - { - "choice_index": 70, - "display_name": "SuperMarket_Bldg_Light 1", - "value": "{0f724e15-0b1c-46f6-9735-ac567ccd0fa3}" - }, - { - "choice_index": 71, - "display_name": "SuperMarket_Bldg_Light 2", - "value": "{2208629b-58a0-4a80-99e3-0d0a14123ffc}" - }, - { - "choice_index": 72, - "display_name": "SuperMarket_Bldg_Light 3", - "value": "{69e260aa-2fe3-4b92-882d-6a7fd528bc95}" - }, - { - "choice_index": 73, - "display_name": "SuperMarket_Bldg_Occ", - "value": "{e9296193-a469-4716-a2de-1dc1255ca935}" - }, - { - "choice_index": 74, - "display_name": "SuperMarket_Bldg_Occ 1", - "value": "{ec026f89-57cc-4067-9022-20adfcc687f6}" - }, - { - "choice_index": 75, - "display_name": "SuperMarket_Bldg_Occ 2", - "value": "{60a63ebe-1e0c-4bb7-82cc-3792c9ac9f05}" - }, - { - "choice_index": 76, - "display_name": "SuperMarket_Bldg_Occ 3", - "value": "{8c68ebed-3b0e-4f67-898d-70e7e0643ec3}" - }, - { - "choice_index": 77, - "display_name": "SuperMarket_Infil_Half_On", - "value": "{fd6dea4f-eb62-4fc2-b7f9-0daa3e9237f5}" - }, - { - "choice_index": 78, - "display_name": "SuperMarket_Infil_Half_On 1", - "value": "{bac04549-885f-4b77-9e9c-5211bb12022d}" - }, - { - "choice_index": 79, - "display_name": "SuperMarket_Infil_Half_On 2", - "value": "{bef93e51-f2a2-45cf-a2c5-4cb3905ad4e2}" - }, - { - "choice_index": 80, - "display_name": "SuperMarket_Infil_Half_On 3", - "value": "{feaf85f3-cd56-4d79-a1e8-431aaaf8da00}" - }, - { - "choice_index": 81, - "display_name": "*All Ruleset Schedules*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose a Schedule to Shift the Time For.", - "domain_type": "Enumeration", - "name": "schedule", - "required": true, - "type": "Choice", - "uuid": "7ac4fc50-feb8-4565-8d8a-898838c6d99a", - "version_uuid": "1ce43e15-43f0-4c24-9e2a-66360d4cc090" - }, - { - "argument_index": 1, - "default_value": 1.0, - "display_name": "Shift Schedule Profiles Forward (24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "shift_value", - "required": true, - "type": "Double", - "uuid": "e512f36f-dcc0-4587-a2d9-ddeb8608853a", - "value": 2.0, - "version_uuid": "bd9341ec-9a92-41a8-98fe-22523f210418" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ShiftScheduleProfileTime", - "bcl_measure_uuid": "4a428da9-16bb-46be-bbf0-1ad30c98d9ca", - "bcl_measure_version_uuid": "0bb35942-3f39-4ad1-9b3d-d333cbce1f6e", - "description": "Shift a single or all schedules in the building by the specified number of hours", - "display_name": "Shift Schedule Profile Time 2hr late", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Shift Schedule Profile Time 2hr late", - "output_file_type": "OSM", - "uuid": "8543e4c8-e6bf-4002-a922-a3d62ebf8ac0", - "version_uuid": "e4c76bdc-d18c-4204-838a-3ca420af9ba3" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Always On", - "value": "{00a1ed71-5e25-494a-a707-7f899234d721}" - }, - { - "choice_index": 1, - "display_name": "Chilled_Water_Temperature", - "value": "{137a2e76-f315-4914-9307-0e7f810aaca3}" - }, - { - "choice_index": 2, - "display_name": "Deck Temperature", - "value": "{d2bf9763-d055-4c1e-8d8d-29be43442e3e}" - }, - { - "choice_index": 3, - "display_name": "Deck_Temperature", - "value": "{8648c828-a320-455c-a496-4ad439a154c5}" - }, - { - "choice_index": 4, - "display_name": "Deck_Temperature 1", - "value": "{f4f7c46f-a5cc-4097-9a4b-872342414d20}" - }, - { - "choice_index": 5, - "display_name": "Deck_Temperature 2", - "value": "{9c39732a-4d1a-4bed-9086-c10e584ea660}" - }, - { - "choice_index": 6, - "display_name": "FullServiceRestaurant ClgSetp", - "value": "{3a5d7f8b-b429-4b34-a4df-05a810e2f3e8}" - }, - { - "choice_index": 7, - "display_name": "FullServiceRestaurant ClgSetp Kitchen", - "value": "{fb765a63-71d2-4a1e-a6c3-72f525f0d436}" - }, - { - "choice_index": 8, - "display_name": "FullServiceRestaurant HtgSetp", - "value": "{fbbbf0de-b6e9-48c7-a3a3-d0ab0c68d4e0}" - }, - { - "choice_index": 9, - "display_name": "FullServiceRestaurant HtgSetp Kitchen", - "value": "{ab5866aa-f853-4ba1-a01a-f673c0c6294b}" - }, - { - "choice_index": 10, - "display_name": "FullServiceRestaurant_Activity", - "value": "{9249c6bd-76f3-4723-b081-df8ba3cded06}" - }, - { - "choice_index": 11, - "display_name": "FullServiceRestaurant_Activity 1", - "value": "{89c680b5-dff2-4cdf-979a-007d4c9717a1}" - }, - { - "choice_index": 12, - "display_name": "FullServiceRestaurant_Bldg_Equip", - "value": "{8804c77f-b638-4ebd-8169-7f4aa4e3835b}" - }, - { - "choice_index": 13, - "display_name": "FullServiceRestaurant_Bldg_Equip 1", - "value": "{44e5db6f-83b6-4f1e-97f9-74b801927c69}" - }, - { - "choice_index": 14, - "display_name": "FullServiceRestaurant_Bldg_Light", - "value": "{04c15481-3113-4d36-8f38-1c85afc47747}" - }, - { - "choice_index": 15, - "display_name": "FullServiceRestaurant_Bldg_Light 1", - "value": "{4259ab39-8523-4c59-9e77-da747eae162b}" - }, - { - "choice_index": 16, - "display_name": "FullServiceRestaurant_Bldg_Occ", - "value": "{358e7bb3-e9a7-44de-a72b-dbbb04f41d14}" - }, - { - "choice_index": 17, - "display_name": "FullServiceRestaurant_Bldg_Occ 1", - "value": "{ce9816b3-53e3-4ba0-93ff-b63ea0ddb0d5}" - }, - { - "choice_index": 18, - "display_name": "FullServiceRestaurant_Gas_Equip", - "value": "{ebc82f5b-a5bb-4ffe-ba10-0aca3e4091e8}" - }, - { - "choice_index": 19, - "display_name": "FullServiceRestaurant_Infil_Half_On", - "value": "{77561d43-a62d-4763-9e55-e02a4fa80cfa}" - }, - { - "choice_index": 20, - "display_name": "FullServiceRestaurant_Infil_Half_On 1", - "value": "{ec6e122f-fd3b-4692-856c-8f6752bf3afd}" - }, - { - "choice_index": 21, - "display_name": "Hot_Water_Temperature", - "value": "{9803d0cb-43e6-4322-9cb4-b517d78a5c63}" - }, - { - "choice_index": 22, - "display_name": "LargeHotel Activity", - "value": "{50908401-b0af-4dd5-b709-83e980790904}" - }, - { - "choice_index": 23, - "display_name": "LargeHotel Bldg Equip", - "value": "{d7538458-a8a8-4c5a-849e-1ad379eecd81}" - }, - { - "choice_index": 24, - "display_name": "LargeHotel Bldg Light", - "value": "{1b451283-1747-46d5-ad83-370a1efa1915}" - }, - { - "choice_index": 25, - "display_name": "LargeHotel Bldg Occ", - "value": "{abfdd7a7-4d80-4b31-a457-063e7a5f41a7}" - }, - { - "choice_index": 26, - "display_name": "LargeHotel ClgSetp", - "value": "{c67e65f8-e144-43de-9311-cf6c12d6750e}" - }, - { - "choice_index": 27, - "display_name": "LargeHotel Clothing", - "value": "{16fe509b-f335-4b42-9414-2df84bdf81b6}" - }, - { - "choice_index": 28, - "display_name": "LargeHotel Corr ClgSetp", - "value": "{32d58cc0-d8ac-459d-ad3e-12129b10dc00}" - }, - { - "choice_index": 29, - "display_name": "LargeHotel Corr HtgSetp", - "value": "{f55d7968-98e9-4dee-ae31-86d3607feb4e}" - }, - { - "choice_index": 30, - "display_name": "LargeHotel Guest ClgSetp", - "value": "{9f6f9bbc-b286-4a44-a16e-9ed75db49aa9}" - }, - { - "choice_index": 31, - "display_name": "LargeHotel Guest HtgSetp", - "value": "{419783ea-3b70-4bd2-850a-53553a22ebdb}" - }, - { - "choice_index": 32, - "display_name": "LargeHotel GuestRoom Equip", - "value": "{031fc005-e2d8-4642-9e7a-b6990c8a0c59}" - }, - { - "choice_index": 33, - "display_name": "LargeHotel GuestRoom Occ", - "value": "{8a99ca67-9a30-4ad7-8914-ec39c7a152bb}" - }, - { - "choice_index": 34, - "display_name": "LargeHotel HtgSetp", - "value": "{b9007151-b322-440c-adb0-e7809d53fe47}" - }, - { - "choice_index": 35, - "display_name": "LargeHotel Infil Quarter On", - "value": "{4880abe7-79a5-44a2-b607-fb8e85f8d35d}" - }, - { - "choice_index": 36, - "display_name": "LargeHotel Kitchen ClgSetp", - "value": "{0f5503c2-167b-4dd5-880d-4336c9594861}" - }, - { - "choice_index": 37, - "display_name": "LargeHotel Kitchen Equip", - "value": "{591ec727-058c-4388-8af0-c9ed623854c3}" - }, - { - "choice_index": 38, - "display_name": "LargeHotel Kitchen Gas", - "value": "{d20178bf-04f8-49f3-bf66-d9138731855c}" - }, - { - "choice_index": 39, - "display_name": "LargeHotel Kitchen HtgSetp", - "value": "{54f17980-9619-454b-b6c6-a5ea60a763b7}" - }, - { - "choice_index": 40, - "display_name": "LargeHotel LaundryRoom Equip", - "value": "{5cdd5a6c-4641-4752-a4ba-717e709895ca}" - }, - { - "choice_index": 41, - "display_name": "LargeHotel LaundryRoom Gas", - "value": "{f82a0876-69e3-49d2-b1fc-95912e480dec}" - }, - { - "choice_index": 42, - "display_name": "LargeHotel Lobby Occ", - "value": "{777ff84d-d6ee-4372-bf9b-7cc44c3506d1}" - }, - { - "choice_index": 43, - "display_name": "Medium Office ClgSetp", - "value": "{9d525b30-8a93-4bb1-8bfc-c4a19ff47982}" - }, - { - "choice_index": 44, - "display_name": "Medium Office ClgSetp 1", - "value": "{6993755e-63d1-4409-9aa8-1c5041183b86}" - }, - { - "choice_index": 45, - "display_name": "Medium Office ClgSetp 2", - "value": "{669d6e9c-dd49-48d3-8d9f-70aacb1fc19a}" - }, - { - "choice_index": 46, - "display_name": "Medium Office ClgSetp 3", - "value": "{5f755882-08ba-4a40-b436-e6b770b12bf7}" - }, - { - "choice_index": 47, - "display_name": "Medium Office ClgSetp 4", - "value": "{4390f38b-678c-42c7-9e7d-674d1416849c}" - }, - { - "choice_index": 48, - "display_name": "Medium Office HtgSetp", - "value": "{c3c9c831-5fe3-4a89-b11c-847740f6737b}" - }, - { - "choice_index": 49, - "display_name": "Medium Office HtgSetp 1", - "value": "{792a0a9c-e1d2-4501-82fa-38d6b5f4b088}" - }, - { - "choice_index": 50, - "display_name": "Medium Office HtgSetp 2", - "value": "{da6432ff-cc43-490e-98f6-18b20e5187d2}" - }, - { - "choice_index": 51, - "display_name": "Medium Office HtgSetp 3", - "value": "{23343262-58ee-4eb8-826e-5fc2c3ed149f}" - }, - { - "choice_index": 52, - "display_name": "Medium Office HtgSetp 4", - "value": "{ebbaa134-7c94-4d9b-a9ed-fa924d0fca88}" - }, - { - "choice_index": 53, - "display_name": "Medium Office_Activity", - "value": "{1670f099-048a-455f-ab96-a9ade7f93cee}" - }, - { - "choice_index": 54, - "display_name": "Medium Office_Bldg_Equip", - "value": "{a7367954-c730-4c5b-a997-483c128071f4}" - }, - { - "choice_index": 55, - "display_name": "Medium Office_Bldg_Light", - "value": "{b3976927-c85d-4300-9aa7-db5441672962}" - }, - { - "choice_index": 56, - "display_name": "Medium Office_Bldg_Occ", - "value": "{82c68f80-3ab3-4a88-83e6-01e402573d8d}" - }, - { - "choice_index": 57, - "display_name": "Medium Office_Infil_Quarter_On", - "value": "{350a848f-6959-4c1f-add7-25e9f3097f49}" - }, - { - "choice_index": 58, - "display_name": "SuperMarket ClgSetp", - "value": "{3621df89-ed84-4ed6-9c81-1744ebc3ecdd}" - }, - { - "choice_index": 59, - "display_name": "SuperMarket HtgSetp", - "value": "{7baf1dfb-3606-4b02-b7bd-3f1e8ccb9003}" - }, - { - "choice_index": 60, - "display_name": "SuperMarket_Activity", - "value": "{c6fc7370-221e-40b7-aef2-6af960b5121b}" - }, - { - "choice_index": 61, - "display_name": "SuperMarket_Activity 1", - "value": "{0b7c4f5b-b04e-4098-a67e-b7f31abe12b2}" - }, - { - "choice_index": 62, - "display_name": "SuperMarket_Activity 2", - "value": "{713f8e43-5176-46eb-8cf4-c7ddfde1eb48}" - }, - { - "choice_index": 63, - "display_name": "SuperMarket_Activity 3", - "value": "{8ef6001a-2c62-4a51-8dd3-aa6db28fe1df}" - }, - { - "choice_index": 64, - "display_name": "SuperMarket_Bldg_Equip", - "value": "{24c76f42-eda6-417b-a964-6acad404c9aa}" - }, - { - "choice_index": 65, - "display_name": "SuperMarket_Bldg_Equip 1", - "value": "{6279fe5f-1a56-4e6e-a9d0-9dc900e69948}" - }, - { - "choice_index": 66, - "display_name": "SuperMarket_Bldg_Equip 2", - "value": "{3f42a702-01fd-41b1-8985-f2fd06206e24}" - }, - { - "choice_index": 67, - "display_name": "SuperMarket_Bldg_Equip 3", - "value": "{09bbe5d3-05aa-45ac-a9d4-91666c5240a6}" - }, - { - "choice_index": 68, - "display_name": "SuperMarket_Bldg_Equip 4", - "value": "{307823db-9696-498c-8b8b-9050a40bafa6}" - }, - { - "choice_index": 69, - "display_name": "SuperMarket_Bldg_Light", - "value": "{59e9978e-9f27-413b-a9be-94c1242a2230}" - }, - { - "choice_index": 70, - "display_name": "SuperMarket_Bldg_Light 1", - "value": "{0f724e15-0b1c-46f6-9735-ac567ccd0fa3}" - }, - { - "choice_index": 71, - "display_name": "SuperMarket_Bldg_Light 2", - "value": "{2208629b-58a0-4a80-99e3-0d0a14123ffc}" - }, - { - "choice_index": 72, - "display_name": "SuperMarket_Bldg_Light 3", - "value": "{69e260aa-2fe3-4b92-882d-6a7fd528bc95}" - }, - { - "choice_index": 73, - "display_name": "SuperMarket_Bldg_Occ", - "value": "{e9296193-a469-4716-a2de-1dc1255ca935}" - }, - { - "choice_index": 74, - "display_name": "SuperMarket_Bldg_Occ 1", - "value": "{ec026f89-57cc-4067-9022-20adfcc687f6}" - }, - { - "choice_index": 75, - "display_name": "SuperMarket_Bldg_Occ 2", - "value": "{60a63ebe-1e0c-4bb7-82cc-3792c9ac9f05}" - }, - { - "choice_index": 76, - "display_name": "SuperMarket_Bldg_Occ 3", - "value": "{8c68ebed-3b0e-4f67-898d-70e7e0643ec3}" - }, - { - "choice_index": 77, - "display_name": "SuperMarket_Infil_Half_On", - "value": "{fd6dea4f-eb62-4fc2-b7f9-0daa3e9237f5}" - }, - { - "choice_index": 78, - "display_name": "SuperMarket_Infil_Half_On 1", - "value": "{bac04549-885f-4b77-9e9c-5211bb12022d}" - }, - { - "choice_index": 79, - "display_name": "SuperMarket_Infil_Half_On 2", - "value": "{bef93e51-f2a2-45cf-a2c5-4cb3905ad4e2}" - }, - { - "choice_index": 80, - "display_name": "SuperMarket_Infil_Half_On 3", - "value": "{feaf85f3-cd56-4d79-a1e8-431aaaf8da00}" - }, - { - "choice_index": 81, - "display_name": "*All Ruleset Schedules*", - "value": "{a3a51906-9a84-471c-8162-778785896008}" - } - ], - "default_value": "{a3a51906-9a84-471c-8162-778785896008}", - "display_name": "Choose a Schedule to Shift the Time For.", - "domain_type": "Enumeration", - "name": "schedule", - "required": true, - "type": "Choice", - "uuid": "3af87885-bac0-488d-9b0e-32761e79c576", - "version_uuid": "7c0843a7-7158-46bb-8fb1-08b4d7eb59de" - }, - { - "argument_index": 1, - "default_value": 1.0, - "display_name": "Shift Schedule Profiles Forward (24hr, use decimal for sub hour).", - "domain_type": "Interval", - "name": "shift_value", - "required": true, - "type": "Double", - "uuid": "d7a522d0-940f-495c-99bd-9a5c51a3d077", - "value": 3.0, - "version_uuid": "723e0805-034a-4ef2-80f6-f1920c80f2d8" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/ShiftScheduleProfileTime", - "bcl_measure_uuid": "4a428da9-16bb-46be-bbf0-1ad30c98d9ca", - "bcl_measure_version_uuid": "0bb35942-3f39-4ad1-9b3d-d333cbce1f6e", - "description": "Shift a single or all schedules in the building by the specified number of hours", - "display_name": "Shift Schedule Profile Time 3hr late", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Shift Schedule Profile Time 3hr late", - "output_file_type": "OSM", - "uuid": "c50b492c-45a6-4221-8dd2-6f4ebe09e795", - "version_uuid": "e55153ba-5381-48e3-a226-3e5ffd347456" - } - ], - "name": "Shift Schedule Profile Time Group", - "uuid": "3e1cc19c-69e7-403e-be9d-27c38fa7b61d", - "version_uuid": "e747b973-6f3c-4b7d-877f-293cff8f23b4", - "workflow_index": 30, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Test Test Measure Had a Ruby Error Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "9e2c631b-a1f0-4d49-b57f-83b33be7ff53", - "version_uuid": "1b5ee664-539c-467d-ad79-1caf11c3b4ff" - }, - { - "arguments": [ - { - "argument_index": 0, - "display_name": "What is your name?", - "domain_type": "Enumeration", - "name": "user_name", - "required": true, - "type": "String", - "uuid": "5f530264-9814-425f-bfab-695e4176f26a", - "value": "David", - "version_uuid": "fe5ae70a-03b2-41ba-922f-9ec8f5880370" - }, - { - "argument_index": 1, - "default_value": "true", - "display_name": "Add a space to your model?", - "domain_type": "Enumeration", - "name": "add_space", - "required": true, - "type": "Boolean", - "uuid": "6042c2c7-75a2-4fc6-866a-eb202e71b135", - "version_uuid": "b079cf05-f573-4abc-a124-3ea172ef3d70" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/TestTestMeasureHadaRubyError", - "bcl_measure_uuid": "161e177f-bf00-4f8d-bda3-033b7b369d49", - "bcl_measure_version_uuid": "dee5f20f-0165-4c2b-a7e7-10a26e520b2d", - "description": "This is a dummy measure just to test ruby failure on cloud demo", - "display_name": "Test Test Measure Had a Ruby Error Alternative", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Test Test Measure Had a Ruby Error Alternative", - "output_file_type": "OSM", - "uuid": "a37c0c5f-b3bb-40d4-8c02-be6f71ef297c", - "version_uuid": "10838c4d-64c1-40b3-baf9-929f0ab5fc80" - } - ], - "name": "Test Test Measure Had a Ruby Error Group", - "uuid": "07cb18a2-2950-4ed9-8ea6-6aa911072abc", - "version_uuid": "7c4e943f-3660-4b13-8323-ae9728b8233e", - "workflow_index": 31, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Add Output Variable Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "9bd174ed-d482-4698-ad91-fea6bf476eec", - "version_uuid": "d0df9407-077e-4657-bd5f-594f30b07881" - }, - { - "arguments": [ - { - "argument_index": 0, - "display_name": "Enter Variable Name.", - "domain_type": "Enumeration", - "name": "variable_name", - "required": true, - "type": "String", - "uuid": "87d2c72b-27c9-430d-8a73-8f0b131eb78f", - "value": "Zone Mechanical Ventilation Mass Flow Rate", - "version_uuid": "4466823d-40bb-4c58-a53a-b443df28f4e7" - }, - { - "argument_index": 1, - "choices": [ - { - "choice_index": 0, - "display_name": "detailed", - "value": "detailed" - }, - { - "choice_index": 1, - "display_name": "timestep", - "value": "timestep" - }, - { - "choice_index": 2, - "display_name": "hourly", - "value": "hourly" - }, - { - "choice_index": 3, - "display_name": "daily", - "value": "daily" - }, - { - "choice_index": 4, - "display_name": "monthly", - "value": "monthly" - } - ], - "default_value": "hourly", - "display_name": "Reporting Frequency.", - "domain_type": "Enumeration", - "name": "reporting_frequency", - "required": true, - "type": "Choice", - "uuid": "fbad6497-d5d4-4f56-963e-b11573fb4754", - "version_uuid": "edd65ea5-ef6b-410c-859d-a1f2ba7e2b4e" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddOutputVariable", - "bcl_measure_uuid": "2a058afb-e349-49ae-a4bf-2c56a42b4352", - "bcl_measure_version_uuid": "0872cbc8-f384-43fb-9ee9-2da063790e77", - "description": "This measure adds an output variable at the requested reporting frequency.", - "display_name": "Add Output Variable Alternative", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Add Output Variable Alternative", - "output_file_type": "OSM", - "uuid": "b2dac42d-60f6-4f35-a36f-ccb8e00de322", - "version_uuid": "965eb0c6-7345-4123-9c25-c9e6fd4048fb" - } - ], - "name": "Add Output Variable Group", - "uuid": "5e87d63d-6e08-4b79-9605-4e61507d5ce1", - "version_uuid": "a1e5fa8b-dbe9-49ed-8687-c0fe75e63342", - "workflow_index": 32, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Predicted Mean Vote Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "f7c3ca83-5d00-4a01-8139-8027a55fd225", - "version_uuid": "bddc6227-0e61-4222-bb3d-1ee4904f7603" - }, - { - "arguments": [ - { - "argument_index": 0, - "default_value": "false", - "display_name": "Enable ASHRAE 55 Comfort Warnings?", - "domain_type": "Enumeration", - "name": "comfortWarnings", - "required": true, - "type": "Boolean", - "uuid": "3910633c-8e51-4fa9-bcfc-1fc431183391", - "value": "true", - "version_uuid": "dc3cf468-b267-4c9a-ac47-1dd613676c1f" - }, - { - "argument_index": 1, - "choices": [ - { - "choice_index": 0, - "display_name": "ZoneAveraged", - "value": "ZoneAveraged" - }, - { - "choice_index": 1, - "display_name": "SurfaceWeighted", - "value": "SurfaceWeighted" - } - ], - "default_value": "ZoneAveraged", - "display_name": "Mean Radiant Temperature Calculation Type.", - "domain_type": "Enumeration", - "name": "meanRadiantCalcType", - "required": true, - "type": "Choice", - "uuid": "e55c3ac5-de46-4896-b1f1-c561634a49bb", - "version_uuid": "981501a4-e319-4333-8ff3-dc87a2d447cc" - }, - { - "argument_index": 2, - "choices": [ - { - "choice_index": 0, - "display_name": "Always Off", - "value": "{1a9affda-2724-4c64-bcc0-247b90f1ed58}" - }, - { - "choice_index": 1, - "display_name": "Always On", - "value": "{00a1ed71-5e25-494a-a707-7f899234d721}" - }, - { - "choice_index": 2, - "display_name": "FullServiceRestaurant_Bldg_Equip", - "value": "{8804c77f-b638-4ebd-8169-7f4aa4e3835b}" - }, - { - "choice_index": 3, - "display_name": "FullServiceRestaurant_Bldg_Equip 1", - "value": "{44e5db6f-83b6-4f1e-97f9-74b801927c69}" - }, - { - "choice_index": 4, - "display_name": "FullServiceRestaurant_Bldg_Light", - "value": "{04c15481-3113-4d36-8f38-1c85afc47747}" - }, - { - "choice_index": 5, - "display_name": "FullServiceRestaurant_Bldg_Light 1", - "value": "{4259ab39-8523-4c59-9e77-da747eae162b}" - }, - { - "choice_index": 6, - "display_name": "FullServiceRestaurant_Bldg_Occ", - "value": "{358e7bb3-e9a7-44de-a72b-dbbb04f41d14}" - }, - { - "choice_index": 7, - "display_name": "FullServiceRestaurant_Bldg_Occ 1", - "value": "{ce9816b3-53e3-4ba0-93ff-b63ea0ddb0d5}" - }, - { - "choice_index": 8, - "display_name": "FullServiceRestaurant_Gas_Equip", - "value": "{ebc82f5b-a5bb-4ffe-ba10-0aca3e4091e8}" - }, - { - "choice_index": 9, - "display_name": "FullServiceRestaurant_Infil_Half_On", - "value": "{77561d43-a62d-4763-9e55-e02a4fa80cfa}" - }, - { - "choice_index": 10, - "display_name": "FullServiceRestaurant_Infil_Half_On 1", - "value": "{ec6e122f-fd3b-4692-856c-8f6752bf3afd}" - }, - { - "choice_index": 11, - "display_name": "LargeHotel BLDG ELEVATORS", - "value": "{b8b1fc96-b90f-4190-9279-6cc7d275d90e}" - }, - { - "choice_index": 12, - "display_name": "LargeHotel Bldg Equip", - "value": "{d7538458-a8a8-4c5a-849e-1ad379eecd81}" - }, - { - "choice_index": 13, - "display_name": "LargeHotel Bldg Light", - "value": "{1b451283-1747-46d5-ad83-370a1efa1915}" - }, - { - "choice_index": 14, - "display_name": "LargeHotel Bldg Occ", - "value": "{abfdd7a7-4d80-4b31-a457-063e7a5f41a7}" - }, - { - "choice_index": 15, - "display_name": "LargeHotel GuestRoom Equip", - "value": "{031fc005-e2d8-4642-9e7a-b6990c8a0c59}" - }, - { - "choice_index": 16, - "display_name": "LargeHotel GuestRoom Occ", - "value": "{8a99ca67-9a30-4ad7-8914-ec39c7a152bb}" - }, - { - "choice_index": 17, - "display_name": "LargeHotel Infil Quarter On", - "value": "{4880abe7-79a5-44a2-b607-fb8e85f8d35d}" - }, - { - "choice_index": 18, - "display_name": "LargeHotel Kitchen Equip", - "value": "{591ec727-058c-4388-8af0-c9ed623854c3}" - }, - { - "choice_index": 19, - "display_name": "LargeHotel Kitchen Exhaust", - "value": "{3c6557be-5628-4d32-8f6c-8f42c45e0b12}" - }, - { - "choice_index": 20, - "display_name": "LargeHotel Kitchen Gas", - "value": "{d20178bf-04f8-49f3-bf66-d9138731855c}" - }, - { - "choice_index": 21, - "display_name": "LargeHotel LaundryRoom Equip", - "value": "{5cdd5a6c-4641-4752-a4ba-717e709895ca}" - }, - { - "choice_index": 22, - "display_name": "LargeHotel LaundryRoom Gas", - "value": "{f82a0876-69e3-49d2-b1fc-95912e480dec}" - }, - { - "choice_index": 23, - "display_name": "LargeHotel Lobby Occ", - "value": "{777ff84d-d6ee-4372-bf9b-7cc44c3506d1}" - }, - { - "choice_index": 24, - "display_name": "LargeHotel Work Eff", - "value": "{ecdf8072-7fad-40d6-be54-c11aa4e4f8c5}" - }, - { - "choice_index": 25, - "display_name": "Medium Office_Bldg_Equip", - "value": "{a7367954-c730-4c5b-a997-483c128071f4}" - }, - { - "choice_index": 26, - "display_name": "Medium Office_Bldg_Light", - "value": "{b3976927-c85d-4300-9aa7-db5441672962}" - }, - { - "choice_index": 27, - "display_name": "Medium Office_Bldg_Occ", - "value": "{82c68f80-3ab3-4a88-83e6-01e402573d8d}" - }, - { - "choice_index": 28, - "display_name": "Medium Office_Infil_Quarter_On", - "value": "{350a848f-6959-4c1f-add7-25e9f3097f49}" - }, - { - "choice_index": 29, - "display_name": "SuperMarket_Bldg_Equip", - "value": "{24c76f42-eda6-417b-a964-6acad404c9aa}" - }, - { - "choice_index": 30, - "display_name": "SuperMarket_Bldg_Equip 1", - "value": "{6279fe5f-1a56-4e6e-a9d0-9dc900e69948}" - }, - { - "choice_index": 31, - "display_name": "SuperMarket_Bldg_Equip 2", - "value": "{3f42a702-01fd-41b1-8985-f2fd06206e24}" - }, - { - "choice_index": 32, - "display_name": "SuperMarket_Bldg_Equip 3", - "value": "{09bbe5d3-05aa-45ac-a9d4-91666c5240a6}" - }, - { - "choice_index": 33, - "display_name": "SuperMarket_Bldg_Equip 4", - "value": "{307823db-9696-498c-8b8b-9050a40bafa6}" - }, - { - "choice_index": 34, - "display_name": "SuperMarket_Bldg_Light", - "value": "{59e9978e-9f27-413b-a9be-94c1242a2230}" - }, - { - "choice_index": 35, - "display_name": "SuperMarket_Bldg_Light 1", - "value": "{0f724e15-0b1c-46f6-9735-ac567ccd0fa3}" - }, - { - "choice_index": 36, - "display_name": "SuperMarket_Bldg_Light 2", - "value": "{2208629b-58a0-4a80-99e3-0d0a14123ffc}" - }, - { - "choice_index": 37, - "display_name": "SuperMarket_Bldg_Light 3", - "value": "{69e260aa-2fe3-4b92-882d-6a7fd528bc95}" - }, - { - "choice_index": 38, - "display_name": "SuperMarket_Bldg_Occ", - "value": "{e9296193-a469-4716-a2de-1dc1255ca935}" - }, - { - "choice_index": 39, - "display_name": "SuperMarket_Bldg_Occ 1", - "value": "{ec026f89-57cc-4067-9022-20adfcc687f6}" - }, - { - "choice_index": 40, - "display_name": "SuperMarket_Bldg_Occ 2", - "value": "{60a63ebe-1e0c-4bb7-82cc-3792c9ac9f05}" - }, - { - "choice_index": 41, - "display_name": "SuperMarket_Bldg_Occ 3", - "value": "{8c68ebed-3b0e-4f67-898d-70e7e0643ec3}" - }, - { - "choice_index": 42, - "display_name": "SuperMarket_Infil_Half_On", - "value": "{fd6dea4f-eb62-4fc2-b7f9-0daa3e9237f5}" - }, - { - "choice_index": 43, - "display_name": "SuperMarket_Infil_Half_On 1", - "value": "{bac04549-885f-4b77-9e9c-5211bb12022d}" - }, - { - "choice_index": 44, - "display_name": "SuperMarket_Infil_Half_On 2", - "value": "{bef93e51-f2a2-45cf-a2c5-4cb3905ad4e2}" - }, - { - "choice_index": 45, - "display_name": "SuperMarket_Infil_Half_On 3", - "value": "{feaf85f3-cd56-4d79-a1e8-431aaaf8da00}" - }, - { - "choice_index": 46, - "display_name": "Work Eff", - "value": "{82d0efb0-1268-4d52-9bd2-c4e7e5584671}" - } - ], - "display_name": "Choose a Work Efficiency Schedule.", - "domain_type": "Enumeration", - "name": "workEfficiencySchedule", - "required": true, - "type": "Choice", - "uuid": "b302f346-e45d-46a5-9d21-bac9dea87de6", - "value": "{82d0efb0-1268-4d52-9bd2-c4e7e5584671}", - "version_uuid": "3a514f45-db40-4572-a438-1ef9bedd0e04" - }, - { - "argument_index": 3, - "choices": [ - { - "choice_index": 0, - "display_name": "Clothing", - "value": "{e6324299-0ef4-43cd-9197-1eb414786820}" - } - ], - "default_value": "{e6324299-0ef4-43cd-9197-1eb414786820}", - "display_name": "Choose a Clothing Insulation Schedule.", - "domain_type": "Enumeration", - "name": "clothingSchedule", - "required": true, - "type": "Choice", - "uuid": "3069b529-b8e3-46b9-9aa3-b68522d379a2", - "version_uuid": "ac9057e3-abe2-4144-820c-c4706302e32d" - }, - { - "argument_index": 4, - "choices": [ - { - "choice_index": 0, - "display_name": "Air Velocity", - "value": "{98d37cdf-f772-4cf3-8bbd-73bb14fb0738}" - } - ], - "default_value": "{98d37cdf-f772-4cf3-8bbd-73bb14fb0738}", - "display_name": "Choose an Air Velocity Schedule.", - "domain_type": "Enumeration", - "name": "airVelocitySchedule", - "required": true, - "type": "Choice", - "uuid": "438669a2-d255-4fee-b8d0-a6c82816b5b8", - "version_uuid": "4ccce8f5-38fd-43c7-92e6-e86eb47da8b0" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/PredictedMeanVote", - "bcl_measure_uuid": "d26890c0-1281-4384-a676-5d38fa2e9e75", - "bcl_measure_version_uuid": "2f6048c5-14b1-4ffc-bbdc-781203232477", - "description": "This measure adds the necessary data to people objects to support Predicted Mean Vote output data. It also adds the variable request.", - "display_name": "Predicted Mean Vote Alternative", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Predicted Mean Vote Alternative", - "output_file_type": "OSM", - "uuid": "226d9ebb-ac9c-46a0-aa3c-1c46372a4542", - "version_uuid": "c39b4250-8f73-41c7-b10b-3d571a548c2b" - } - ], - "name": "Predicted Mean Vote Group", - "uuid": "6d1f236a-d6d6-4ff3-9410-27f2f45968ff", - "version_uuid": "df61eb4c-aff1-47e9-b5dc-fd4a0586a9f5", - "workflow_index": 33, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Set Lifecycle Cost Parameters Group", - "measures": [ - { - "arguments": [ - { - "argument_index": 0, - "default_value": 25, - "display_name": "Set the Length of the Study Period (years).", - "domain_type": "Interval", - "name": "study_period", - "required": true, - "type": "Integer", - "uuid": "3a49f98a-0d57-4243-adb4-3350e549fc96", - "version_uuid": "81755f79-770c-4cbf-9a0b-93bc755f4f1e" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/SetLifecycleCostParameters", - "bcl_measure_uuid": "2c6aee30-6e8f-49d3-99fb-7ea0b674bf6a", - "bcl_measure_version_uuid": "843591b7-6f55-49ab-9066-e888fa9f935c", - "description": "This measure sets the analysis type to \"FEMP\" and has an argument for the length of the study period in years.", - "display_name": "Set Lifecycle Cost Parameters", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 0, - "measure_type": "RubyMeasure", - "name": "Set Lifecycle Cost Parameters", - "output_file_type": "OSM", - "uuid": "b7010a00-e763-4c41-8ff3-a0b083f12ed8", - "version_uuid": "a99719ef-4c3c-4192-8d9f-bdfa25afa602" - } - ], - "name": "Set Lifecycle Cost Parameters Group", - "uuid": "7b7e8454-fe9e-43f8-87ec-55a44390787d", - "version_uuid": "122034fb-fa12-4104-b27a-b8e180131fc6", - "workflow_index": 34, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Add Cost per Floor Area to Building Group", - "measures": [ - { - "arguments": [ - { - "argument_index": 0, - "default_value": "true", - "display_name": "Remove Existing Costs?", - "domain_type": "Enumeration", - "name": "remove_costs", - "required": true, - "type": "Boolean", - "uuid": "bebabdcc-2f69-4bd5-851d-b56b8cf5c2a2", - "version_uuid": "9fbb436a-ac42-4a28-8ac3-2062fe02072a" - }, - { - "argument_index": 1, - "default_value": "Building - Life Cycle Costs", - "display_name": "Name for Life Cycle Cost Object.", - "domain_type": "Enumeration", - "name": "lcc_name", - "required": true, - "type": "String", - "uuid": "77ce4c94-fd73-4e9c-ad0e-e9c51299b30f", - "version_uuid": "995bc780-2803-4037-a905-e9f91c2f9d44" - }, - { - "argument_index": 2, - "default_value": 0.0, - "display_name": "Material and Installation Costs for the Building per Floor Area ($/ft^2).", - "domain_type": "Interval", - "name": "material_cost_ip", - "required": true, - "type": "Double", - "uuid": "d35cc6de-9de3-4570-8f3a-d202ba2c5df6", - "value": 100.0, - "version_uuid": "e3ec4ba1-7ccd-4252-af24-347f5efcc71f" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Demolition Costs for Construction per Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "demolition_cost_ip", - "required": true, - "type": "Double", - "uuid": "81ce2d2a-1aa3-44b6-9255-bce1db61a7fe", - "version_uuid": "31def724-e411-4bf9-85b5-56c8c65b376f" - }, - { - "argument_index": 4, - "default_value": 0, - "display_name": "Years Until Costs Start (whole years).", - "domain_type": "Interval", - "name": "years_until_costs_start", - "required": true, - "type": "Integer", - "uuid": "ca8a36bc-4b67-4972-a800-0c9db674cba1", - "version_uuid": "0d84a9af-fa15-4b37-b3bf-3d70e8767892" - }, - { - "argument_index": 5, - "default_value": "false", - "display_name": "Demolition Costs Occur During Initial Construction?", - "domain_type": "Enumeration", - "name": "demo_cost_initial_const", - "required": true, - "type": "Boolean", - "uuid": "d9a63c77-236a-4f8b-b5ba-c77e3a2d7386", - "version_uuid": "befcebb7-b9e1-4958-becd-336467a68cd6" - }, - { - "argument_index": 6, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "c8cc71cf-b97e-4896-96c8-f28005af43b1", - "value": 50, - "version_uuid": "18c94b55-c8ce-4a74-9d5a-c72735ca0fc8" - }, - { - "argument_index": 7, - "default_value": 0.0, - "display_name": "O & M Costs for the Builiding per Floor Area Used ($/ft^2).", - "domain_type": "Interval", - "name": "om_cost_ip", - "required": true, - "type": "Double", - "uuid": "96fe257d-bce8-471b-9728-4e04dbfb1f42", - "version_uuid": "5298f96e-c3de-4cfe-931a-30f1ccd4207e" - }, - { - "argument_index": 8, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "1c35863c-b223-4caf-b762-6497c8fffa04", - "version_uuid": "a46f6684-12e7-4f34-95f4-ca9714d58b10" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddCostPerFloorAreaToBuilding", - "bcl_measure_uuid": "153992bb-0202-424b-9fbb-57fcf0285e65", - "bcl_measure_version_uuid": "3ecca1bf-4f06-4d6c-8c12-927e00bbac18", - "description": "This measure will create life cycle cost objects associated with a the building. You can set a material & installation cost, demolition cost, and O&M costs. Optionally existing cost objects already associated with building can be deleted. This measure will not affect energy use of the building.", - "display_name": "Add Cost per Floor Area to Building", - "input_file_type": "OSM", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 0, - "measure_type": "RubyMeasure", - "name": "Add Cost per Floor Area to Building", - "output_file_type": "OSM", - "uuid": "7c090398-1983-4354-be64-7d969b02cb7e", - "version_uuid": "26ee4766-05da-4eac-a3fc-64e9be5f04e6" - } - ], - "name": "Add Cost per Floor Area to Building Group", - "uuid": "505aaf30-826a-4960-ade2-b3adb510f984", - "version_uuid": "3700ecf3-56bc-42d1-85bb-29733fa8bbf8", - "workflow_index": 35, - "workflow_step_type": "MeasureGroup" - }, - { - "params": [ - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 0 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 1 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 2 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 3 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 4 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 5 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 6 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 7 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 8 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 9 - }, - { - "param": { - "children": [ - { - "param": { - "value": "a44fda63095ba2688aa8c4a03a991e03" - }, - "param_index": 0 - } - ], - "value": "workflowkey" - }, - "param_index": 10 - } - ], - "type": "ModelToIdf", - "workflow_index": 36, - "workflow_step_type": "WorkItem" - }, - { - "params": [ - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 0 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 1 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 2 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 3 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 4 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 5 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 6 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 7 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 8 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 9 - } - ], - "type": "ExpandObjects", - "workflow_index": 37, - "workflow_step_type": "WorkItem" - }, - { - "display_name": "Add Simple PV to Shading Surfaces By Type Group", - "measures": [ - { - "is_selected": true, - "measure_group_index": 0, - "measure_type": "NullMeasure", - "uuid": "fea4a9e2-8d6b-4a66-afd9-117552c57abe", - "version_uuid": "2fc1ede1-a3ee-4374-8331-00115e3c1a80" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Site Shading", - "value": "Site Shading" - }, - { - "choice_index": 1, - "display_name": "Building Shading", - "value": "Building Shading" - }, - { - "choice_index": 2, - "display_name": "Space/Zone Shading", - "value": "Space/Zone Shading" - } - ], - "default_value": "Building Shading", - "display_name": "Choose the Type of Shading Surfaces to add PV to", - "domain_type": "Enumeration", - "name": "shading_type", - "required": true, - "type": "Choice", - "uuid": "891df664-8073-49f9-b66b-7659245805a5", - "version_uuid": "65b5a8c2-5062-459c-937d-6c2a7673102a" - }, - { - "argument_index": 1, - "default_value": 0.5, - "display_name": "Fraction of Included Surface Area with PV", - "domain_type": "Interval", - "name": "fraction_surfacearea_with_pv", - "required": true, - "type": "Double", - "uuid": "d32f2462-4941-4a25-9a1e-696e1eb0ad85", - "value": 0.4, - "version_uuid": "3667b526-01a6-455f-bd9d-e5ddc63220de" - }, - { - "argument_index": 2, - "default_value": 0.12, - "display_name": "Fractional Value for Cell Efficiency", - "domain_type": "Interval", - "name": "value_for_cell_efficiency", - "required": true, - "type": "Double", - "uuid": "8fd8b6a1-5f5a-4932-9511-ba8403e5194b", - "version_uuid": "c01fd994-200d-45f2-9dbb-5081283ad70d" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Material and Installation Costs for the PV ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "fc961d4e-ff60-4a4b-9342-29dfe05cd8dd", - "version_uuid": "5acdeb3a-bbb0-4d26-bab8-6abcf2562651" - }, - { - "argument_index": 4, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "360f8e7c-6b66-42c0-a5ca-ce14adb9b142", - "version_uuid": "35bd8ae8-f95d-4660-850d-e6d0234f1c90" - }, - { - "argument_index": 5, - "default_value": 0.0, - "display_name": "O & M Costs for the PV ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "efa8e281-9ffb-4488-ba41-70dbbf03c963", - "version_uuid": "a5f33c8e-4e89-41c3-a87e-d51d1507035f" - }, - { - "argument_index": 6, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "e24b8ae3-dd23-4769-ac23-b4f81eaecf7c", - "version_uuid": "01403781-ee39-452a-aa6e-8e7e0a28598f" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddSimplePvToShadingSurfacesByType", - "bcl_measure_uuid": "27627c16-75d4-4fc3-add9-2d7d538c0130", - "bcl_measure_version_uuid": "8f37aa14-e9bd-4e1e-a1f9-c6ec8b5e95ef", - "description": "This measure will add Simple PV objects to site, building or space/zone shading surfaces. This will not create any new geometry, but will just make PV objects out of existing shading geometry. Optionally a cost can be added for the PV.", - "display_name": "Add Simple PV to Shading Surfaces By Type 40% 12%eff", - "input_file_type": "IDF", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 1, - "measure_type": "RubyMeasure", - "name": "Add Simple PV to Shading Surfaces By Type 40% 12%eff", - "output_file_type": "IDF", - "uuid": "f1f4ef0b-b7f4-4b81-979d-8f07ee620c3a", - "version_uuid": "48193378-eae8-4685-8c99-cfca807fbdd1" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Site Shading", - "value": "Site Shading" - }, - { - "choice_index": 1, - "display_name": "Building Shading", - "value": "Building Shading" - }, - { - "choice_index": 2, - "display_name": "Space/Zone Shading", - "value": "Space/Zone Shading" - } - ], - "default_value": "Building Shading", - "display_name": "Choose the Type of Shading Surfaces to add PV to", - "domain_type": "Enumeration", - "name": "shading_type", - "required": true, - "type": "Choice", - "uuid": "2573712d-4666-4edf-9ed7-ad91d352ca6b", - "version_uuid": "34887bd4-ed0f-44d5-8712-d2eb8a2f4a59" - }, - { - "argument_index": 1, - "default_value": 0.5, - "display_name": "Fraction of Included Surface Area with PV", - "domain_type": "Interval", - "name": "fraction_surfacearea_with_pv", - "required": true, - "type": "Double", - "uuid": "dac4456e-ba90-413f-8871-f843708b3885", - "value": 0.6, - "version_uuid": "a9b1a478-1ea0-4e29-84d2-8a4841405a48" - }, - { - "argument_index": 2, - "default_value": 0.12, - "display_name": "Fractional Value for Cell Efficiency", - "domain_type": "Interval", - "name": "value_for_cell_efficiency", - "required": true, - "type": "Double", - "uuid": "c3245ce1-2559-4795-950d-19b301e5964a", - "version_uuid": "a706832b-51a5-43a2-93c3-39feda7b9f21" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Material and Installation Costs for the PV ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "c8dbeb62-b249-4d19-92af-150976508aee", - "version_uuid": "8ff18ff2-9de3-4219-a1a4-bee85e20a26f" - }, - { - "argument_index": 4, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "709804b0-227a-4756-a34d-ac50de89210c", - "version_uuid": "62507033-76d2-4432-b098-983d5ff561f0" - }, - { - "argument_index": 5, - "default_value": 0.0, - "display_name": "O & M Costs for the PV ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "7e432ab2-66e9-4b86-aadd-b72e03bef9b9", - "version_uuid": "e295fc5a-a5c2-4cad-ac3c-add3f27ad699" - }, - { - "argument_index": 6, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "809469bf-eaf1-4fbd-ab5a-0f84df51f07f", - "version_uuid": "f02bd87d-ee5a-435b-a0a5-02658e3a43e7" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddSimplePvToShadingSurfacesByType", - "bcl_measure_uuid": "27627c16-75d4-4fc3-add9-2d7d538c0130", - "bcl_measure_version_uuid": "8f37aa14-e9bd-4e1e-a1f9-c6ec8b5e95ef", - "description": "This measure will add Simple PV objects to site, building or space/zone shading surfaces. This will not create any new geometry, but will just make PV objects out of existing shading geometry. Optionally a cost can be added for the PV.", - "display_name": "Add Simple PV to Shading Surfaces By Type 60% 12%eff", - "input_file_type": "IDF", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 2, - "measure_type": "RubyMeasure", - "name": "Add Simple PV to Shading Surfaces By Type 60% 12%eff", - "output_file_type": "IDF", - "uuid": "ff2b1f0a-7211-45e6-b45a-6e3a5a48b0d1", - "version_uuid": "ab90bb6b-16e1-455c-a7d9-90a8e8e0e532" - }, - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Site Shading", - "value": "Site Shading" - }, - { - "choice_index": 1, - "display_name": "Building Shading", - "value": "Building Shading" - }, - { - "choice_index": 2, - "display_name": "Space/Zone Shading", - "value": "Space/Zone Shading" - } - ], - "default_value": "Building Shading", - "display_name": "Choose the Type of Shading Surfaces to add PV to", - "domain_type": "Enumeration", - "name": "shading_type", - "required": true, - "type": "Choice", - "uuid": "3c7bc497-35f0-4a55-b555-f358fc691c23", - "version_uuid": "831ac415-934e-4713-aab2-cf55b5742259" - }, - { - "argument_index": 1, - "default_value": 0.5, - "display_name": "Fraction of Included Surface Area with PV", - "domain_type": "Interval", - "name": "fraction_surfacearea_with_pv", - "required": true, - "type": "Double", - "uuid": "f7174e0c-64f8-4a69-8e19-c09acfb31c13", - "value": 0.8, - "version_uuid": "064bd704-d9db-4e4c-8c55-e527b0d6121a" - }, - { - "argument_index": 2, - "default_value": 0.12, - "display_name": "Fractional Value for Cell Efficiency", - "domain_type": "Interval", - "name": "value_for_cell_efficiency", - "required": true, - "type": "Double", - "uuid": "a9c18773-7262-4b02-b7c8-053e94787b8a", - "version_uuid": "1da12699-be99-4ad4-b211-85698f0b2b4c" - }, - { - "argument_index": 3, - "default_value": 0.0, - "display_name": "Material and Installation Costs for the PV ($).", - "domain_type": "Interval", - "name": "material_cost", - "required": true, - "type": "Double", - "uuid": "ed41fb85-89bd-45a9-a76a-d371664b8bb0", - "version_uuid": "ef675d8b-fb3b-4a74-a060-5ff2f2ce4aaf" - }, - { - "argument_index": 4, - "default_value": 20, - "display_name": "Expected Life (whole years).", - "domain_type": "Interval", - "name": "expected_life", - "required": true, - "type": "Integer", - "uuid": "4103e020-cf61-43cb-a8f6-f71753fdb551", - "version_uuid": "d670248c-b339-47ab-ab61-3ff1632923a4" - }, - { - "argument_index": 5, - "default_value": 0.0, - "display_name": "O & M Costs for the PV ($).", - "domain_type": "Interval", - "name": "om_cost", - "required": true, - "type": "Double", - "uuid": "c328eb1f-9e19-4c58-bf86-295f968bacd3", - "version_uuid": "2108dc62-10a2-4a17-a9f3-fc90b54bf489" - }, - { - "argument_index": 6, - "default_value": 1, - "display_name": "O & M Frequency (whole years).", - "domain_type": "Interval", - "name": "om_frequency", - "required": true, - "type": "Integer", - "uuid": "19171524-6b8f-4813-a9a6-8d7c458de2d6", - "version_uuid": "b14f6eda-56b2-4ed7-990b-ccd83fc3d63c" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/AddSimplePvToShadingSurfacesByType", - "bcl_measure_uuid": "27627c16-75d4-4fc3-add9-2d7d538c0130", - "bcl_measure_version_uuid": "8f37aa14-e9bd-4e1e-a1f9-c6ec8b5e95ef", - "description": "This measure will add Simple PV objects to site, building or space/zone shading surfaces. This will not create any new geometry, but will just make PV objects out of existing shading geometry. Optionally a cost can be added for the PV.", - "display_name": "Add Simple PV to Shading Surfaces By Type 80% 12%eff", - "input_file_type": "IDF", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 3, - "measure_type": "RubyMeasure", - "name": "Add Simple PV to Shading Surfaces By Type 80% 12%eff", - "output_file_type": "IDF", - "uuid": "68d3c57d-5c63-4760-8e0f-2425b83ddd9f", - "version_uuid": "d62ec444-4f86-42fa-9454-c488c0374112" - } - ], - "name": "Add Simple PV to Shading Surfaces By Type Group", - "uuid": "c9422ab6-5f1c-40b1-975a-2a3770ca1c39", - "version_uuid": "4ee0c235-00c0-49be-90f7-200b01264d21", - "workflow_index": 38, - "workflow_step_type": "MeasureGroup" - }, - { - "display_name": "Xcel EDA Tariff Selection and Model Setup Group", - "measures": [ - { - "arguments": [ - { - "argument_index": 0, - "choices": [ - { - "choice_index": 0, - "display_name": "Residential General", - "value": "Residential General" - }, - { - "choice_index": 1, - "display_name": "Commercial", - "value": "Commercial" - }, - { - "choice_index": 2, - "display_name": "Primary General", - "value": "Primary General" - }, - { - "choice_index": 3, - "display_name": "Secondary General Low Load Factor", - "value": "Secondary General Low Load Factor" - }, - { - "choice_index": 4, - "display_name": "Secondary General", - "value": "Secondary General" - }, - { - "choice_index": 5, - "display_name": "Secondary Photovoltaic Time-of-Use", - "value": "Secondary Photovoltaic Time-of-Use" - }, - { - "choice_index": 6, - "display_name": "Transmission General", - "value": "Transmission General" - }, - { - "choice_index": 7, - "display_name": "Non-Xcel Commercial", - "value": "Non-Xcel Commercial" - }, - { - "choice_index": 8, - "display_name": "Non-Xcel Primary General", - "value": "Non-Xcel Primary General" - }, - { - "choice_index": 9, - "display_name": "Non-Xcel Secondary General Low Load Factor", - "value": "Non-Xcel Secondary General Low Load Factor" - }, - { - "choice_index": 10, - "display_name": "Non-Xcel Secondary General", - "value": "Non-Xcel Secondary General" - }, - { - "choice_index": 11, - "display_name": "Non-Xcel Transmission General", - "value": "Non-Xcel Transmission General" - } - ], - "default_value": "Secondary General", - "display_name": "Select an Electricity Tariff.", - "domain_type": "Enumeration", - "name": "elec_tar", - "required": true, - "type": "Choice", - "uuid": "0d6e423a-5864-41c3-ba90-5342ca60b61e", - "version_uuid": "d9523926-600e-4670-abd4-ea4b7eb0c273" - }, - { - "argument_index": 1, - "choices": [ - { - "choice_index": 0, - "display_name": "Residential Gas", - "value": "Residential Gas" - }, - { - "choice_index": 1, - "display_name": "Small CG", - "value": "Small CG" - }, - { - "choice_index": 2, - "display_name": "Large CG", - "value": "Large CG" - }, - { - "choice_index": 3, - "display_name": "Interruptible Industrial G", - "value": "Interruptible Industrial G" - }, - { - "choice_index": 4, - "display_name": "Non-Xcel Gas Firm", - "value": "Non-Xcel Gas Firm" - }, - { - "choice_index": 5, - "display_name": "Non-Xcel Gas Interruptible", - "value": "Non-Xcel Gas Interruptible" - } - ], - "default_value": "Large CG", - "display_name": "Select a Gas Tariff.", - "domain_type": "Enumeration", - "name": "gas_tar", - "required": true, - "type": "Choice", - "uuid": "dde2deb2-fa69-4694-87d1-72d32d3fc6d0", - "version_uuid": "c5b0ba95-666a-4fb6-b8a6-f17031a1916c" - } - ], - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/XcelEDATariffSelectionandModelSetup", - "bcl_measure_uuid": "c5ab60e9-b8e5-4653-a502-5ed030f1335d", - "bcl_measure_version_uuid": "49bff05e-8793-4375-8c4c-da9731cdb7e5", - "description": "Add the selected Xcel utility rate, as well as set the timestep and lifecycle costing parameters as required by the Xcel EDA program.", - "display_name": "Xcel EDA Tariff Selection and Model Setup", - "input_file_type": "IDF", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 0, - "measure_type": "RubyMeasure", - "name": "Xcel EDA Tariff Selection and Model Setup", - "output_file_type": "IDF", - "uuid": "35881d18-5494-48dd-96e8-cd0fd258de54", - "version_uuid": "41a0d51b-c95f-4a13-ac89-6dc2ee40e9cd" - } - ], - "name": "Xcel EDA Tariff Selection and Model Setup Group", - "uuid": "0b0ead70-1fed-4bd4-b75e-ca69f6fc884e", - "version_uuid": "6a2baa85-e298-45b5-91de-cc06e48f90a7", - "workflow_index": 39, - "workflow_step_type": "MeasureGroup" - }, - { - "params": [ - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 0 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 1 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 2 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 3 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 4 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 5 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 6 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 7 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 8 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 9 - }, - { - "param": { - "children": [ - { - "param": { - "value": "63ffa7777b3b7696ef04d4fc1a84a217" - }, - "param_index": 0 - } - ], - "value": "workflowkey" - }, - "param_index": 10 - } - ], - "type": "EnergyPlusPreProcess", - "workflow_index": 40, - "workflow_step_type": "WorkItem" - }, - { - "params": [ - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 0 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 1 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 2 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 3 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 4 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 5 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 6 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 7 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 8 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 9 - } - ], - "type": "EnergyPlus", - "workflow_index": 41, - "workflow_step_type": "WorkItem" - }, - { - "display_name": "Just the Sample Reporting Measure you get when you create a new reporting measure Group", - "measures": [ - { - "bcl_measure_directory": "C:/working/openstudio-server/prototype/pat/BigPATTest/scripts/JusttheSampleReportingMeasureyougetwhenyoucreateanewreportingmeasure", - "bcl_measure_uuid": "17f78b20-cddb-4ab2-9b4e-9cbdb5613711", - "bcl_measure_version_uuid": "5a5e5bf2-22ce-4dcb-a8ef-e4e37844fecb", - "description": "Replace this text with an explanation of what the measure does in terms that can be understood by a general building professional audience (building owners, architects, engineers, contractors, etc.). This description will be used to create reports aimed at convincing the owner and/or design team to implement the measure in the actual building design. For this reason, the description may include details about how the measure would be implemented, along with explanations of qualitative benefits associated with the measure. It is good practice to include citations in the measure if the description is taken from a known source or if specific benefits are listed.", - "display_name": "Just the Sample Reporting Measure you get when you create a new reporting measure", - "input_file_type": "Unknown", - "is_selected": true, - "is_user_script": false, - "measure_group_index": 0, - "measure_type": "RubyMeasure", - "name": "Just the Sample Reporting Measure you get when you create a new reporting measure", - "output_file_type": "Unknown", - "uuid": "927d6553-b5ba-46b0-af6c-57bb661725cd", - "version_uuid": "7b4b5e47-8365-4444-b998-7cea6982fe52" - } - ], - "name": "Just the Sample Reporting Measure you get when you create a new reporting measure Group", - "uuid": "359f3cb6-3c14-4482-ab6d-a12a41baf983", - "version_uuid": "12f563e5-c1c9-45d3-8ae3-2ee15d4aa9b5", - "workflow_index": 42, - "workflow_step_type": "MeasureGroup" - }, - { - "params": [ - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 0 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 1 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 2 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 3 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 4 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 5 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 6 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 7 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 8 - }, - { - "param": { - "children": [ - { - "param": { - "value": "" - }, - "param_index": 0 - } - ], - "value": "workflowjobkey" - }, - "param_index": 9 - }, - { - "param": { - "children": [ - { - "param": { - "value": "f41cf77d90757e902f8f0fa29e88fddd" - }, - "param_index": 0 - } - ], - "value": "workflowkey" - }, - "param_index": 10 - } - ], - "type": "OpenStudioPostProcess", - "workflow_index": 43, - "workflow_step_type": "WorkItem" - } - ] - }, - "results_are_invalid": false, - "seed": { - "checksum_create": "B2B085D2", - "checksum_last": "B2B085D2", - "display_name": "0924_demo_e.osm", - "file_type": "OSM", - "name": "C:/Users/dgoldwas/Documents/Working/PAT 0924 2344/seed/0924_demo_e.osm", - "path": "C:/working/openstudio-server/prototype/pat/BigPATTest/seed/0924_demo_e.osm", - "timestamp_create": "20130925T133705", - "timestamp_last": "20131007T125036", - "uuid": "3c96c21f-71b6-47c6-a8fb-fa8b4de4ecba", - "version_uuid": "913f2b0a-803a-4e0a-a421-0e1c336dcbe5" - }, - "uuid": "4e3b61a7-aa6f-4f22-8dfe-503be6cd4e83", - "version_uuid": "dbf5226d-8dff-4103-a455-24effed30434", - "weather_file": { - "checksum_create": "3CF64E88", - "checksum_last": "3CF64E88", - "display_name": "USA_CO_Golden-NREL.724666_TMY3.epw", - "file_type": "EPW", - "name": "C:/Users/dgoldwas/Documents/Working/PAT 0924 2344/seed/0924_demo_e/files/USA_CO_Golden-NREL.724666_TMY3.epw", - "path": "C:/working/openstudio-server/prototype/pat/BigPATTest/seed/0924_demo_e/files/USA_CO_Golden-NREL.724666_TMY3.epw", - "timestamp_create": "20130925T133705", - "timestamp_last": "20131007T125036", - "uuid": "4ddee523-1444-4797-b318-0c4d8cf70d53", - "version_uuid": "960201dc-6477-4115-90df-02303427cb06" - } - }, - "metadata": { - "openstudio_version": "1.1.0", - "project_dir": "C:/working/openstudio-server/prototype/pat/BigPATTest", - "variables": [ - { - "display_name": "Alternative Model", - "maximum": 0, - "minimum": 0, - "name": "Alternative Model", - "type": "Integer", - "uuid": "b87a835d-7c42-4866-8350-3148bd8baa29", - "variable_index": 0, - "version_uuid": "b87a835d-7c42-4866-8350-3148bd8baa29" - }, - { - "display_name": "Rotate Building Relative to Current Orientation Group", - "maximum": 3, - "minimum": 0, - "name": "Rotate Building Relative to Current Orientation Group", - "type": "Integer", - "uuid": "1b178f13-8dc5-4ee3-86cf-4476bbbce770", - "variable_index": 1, - "version_uuid": "1b178f13-8dc5-4ee3-86cf-4476bbbce770" - }, - { - "display_name": "Set Ext Wall To Ground Boundary Condition By Story Group", - "maximum": 1, - "minimum": 0, - "name": "Set Ext Wall To Ground Boundary Condition By Story Group", - "type": "Integer", - "uuid": "c39a3ee0-3c8d-4c2d-9d91-f1daa71445ff", - "variable_index": 2, - "version_uuid": "c39a3ee0-3c8d-4c2d-9d91-f1daa71445ff" - }, - { - "display_name": "Set Interior Walls to Adiabatic Group", - "maximum": 1, - "minimum": 0, - "name": "Set Interior Walls to Adiabatic Group", - "type": "Integer", - "uuid": "5093638d-6b6b-4727-8f9e-24c7edd25de5", - "variable_index": 3, - "version_uuid": "5093638d-6b6b-4727-8f9e-24c7edd25de5" - }, - { - "display_name": "Set R-value of Insulation for Exterior Walls to a Specific Value Group", - "maximum": 3, - "minimum": 0, - "name": "Set R-value of Insulation for Exterior Walls to a Specific Value Group", - "type": "Integer", - "uuid": "cc60b9cb-e4b2-4494-86c1-a6afe0a60b89", - "variable_index": 4, - "version_uuid": "cc60b9cb-e4b2-4494-86c1-a6afe0a60b89" - }, - { - "display_name": "Set R-value of Insulation for Roofs to a Specific Value Group", - "maximum": 3, - "minimum": 0, - "name": "Set R-value of Insulation for Roofs to a Specific Value Group", - "type": "Integer", - "uuid": "5fefacc8-9af7-4d8d-947f-e8ec678480f8", - "variable_index": 5, - "version_uuid": "5fefacc8-9af7-4d8d-947f-e8ec678480f8" - }, - { - "display_name": "Add Cost per Area to Construction Group", - "maximum": 0, - "minimum": 0, - "name": "Add Cost per Area to Construction Group", - "type": "Integer", - "uuid": "b048de81-9bc7-4118-854b-c5e03cd87565", - "variable_index": 6, - "version_uuid": "b048de81-9bc7-4118-854b-c5e03cd87565" - }, - { - "display_name": "Add Cost per Area to Unused Construction Group", - "maximum": 0, - "minimum": 0, - "name": "Add Cost per Area to Unused Construction Group", - "type": "Integer", - "uuid": "a3840fbe-efdf-4e52-b419-d89e7d762633", - "variable_index": 7, - "version_uuid": "a3840fbe-efdf-4e52-b419-d89e7d762633" - }, - { - "display_name": "Replace Exterior Window Constructions with a Different Construction from the Model Group", - "maximum": 3, - "minimum": 0, - "name": "Replace Exterior Window Constructions with a Different Construction from the Model Group", - "type": "Integer", - "uuid": "a07b5885-f09e-4d0c-9088-367fd3690d62", - "variable_index": 8, - "version_uuid": "a07b5885-f09e-4d0c-9088-367fd3690d62" - }, - { - "display_name": "Set Window to Wall Ratio by Facade Group", - "maximum": 3, - "minimum": 0, - "name": "Set Window to Wall Ratio by Facade Group", - "type": "Integer", - "uuid": "df78f824-e28e-4efd-84cf-3acae5c6b668", - "variable_index": 9, - "version_uuid": "df78f824-e28e-4efd-84cf-3acae5c6b668" - }, - { - "display_name": "Add Overhangs by Projection Factor Group", - "maximum": 3, - "minimum": 0, - "name": "Add Overhangs by Projection Factor Group", - "type": "Integer", - "uuid": "ded29d04-56b2-4e74-bdde-db8db8379bf7", - "variable_index": 10, - "version_uuid": "ded29d04-56b2-4e74-bdde-db8db8379bf7" - }, - { - "display_name": "ReduceSpaceInfiltrationByPercentage Group (Only use one infiltration Group)", - "maximum": 3, - "minimum": 0, - "name": "ReduceSpaceInfiltrationByPercentage Group (Only use one infiltration Group)", - "type": "Integer", - "uuid": "7c0c2c88-866a-41a4-8a09-d835ea6ad2ee", - "variable_index": 11, - "version_uuid": "7c0c2c88-866a-41a4-8a09-d835ea6ad2ee" - }, - { - "display_name": "Set Space Infiltration by Exterior Surface Area Group (Only use one infiltration Group)", - "maximum": 3, - "minimum": 0, - "name": "Set Space Infiltration by Exterior Surface Area Group (Only use one infiltration Group)", - "type": "Integer", - "uuid": "1dafa1cd-5e76-4499-ba8e-9a2a915de061", - "variable_index": 12, - "version_uuid": "1dafa1cd-5e76-4499-ba8e-9a2a915de061" - }, - { - "display_name": "Reduce Night Time Lighting Loads Group", - "maximum": 3, - "minimum": 0, - "name": "Reduce Night Time Lighting Loads Group", - "type": "Integer", - "uuid": "b7a0a6d3-b50f-4b52-88c7-42b32254b3f5", - "variable_index": 13, - "version_uuid": "b7a0a6d3-b50f-4b52-88c7-42b32254b3f5" - }, - { - "display_name": "Add Daylight Sensor at Center of Spaces with a Specified Space Type Assigned Group", - "maximum": 1, - "minimum": 0, - "name": "Add Daylight Sensor at Center of Spaces with a Specified Space Type Assigned Group", - "type": "Integer", - "uuid": "713ff9f3-e160-4be7-832d-84c4f7a8d8ab", - "variable_index": 14, - "version_uuid": "713ff9f3-e160-4be7-832d-84c4f7a8d8ab" - }, - { - "display_name": "Add Cost per Floor Area to Lights Group", - "maximum": 0, - "minimum": 0, - "name": "Add Cost per Floor Area to Lights Group", - "type": "Integer", - "uuid": "bb14a79c-41fe-478c-9f52-ec878e8ab639", - "variable_index": 15, - "version_uuid": "bb14a79c-41fe-478c-9f52-ec878e8ab639" - }, - { - "display_name": "Reduce Lighting Loads by Percentage Group", - "maximum": 3, - "minimum": 0, - "name": "Reduce Lighting Loads by Percentage Group", - "type": "Integer", - "uuid": "6ee67130-25d1-41e7-9f93-adcea76b9fc5", - "variable_index": 16, - "version_uuid": "6ee67130-25d1-41e7-9f93-adcea76b9fc5" - }, - { - "display_name": "Swap Lights Definition Group", - "maximum": 1, - "minimum": 0, - "name": "Swap Lights Definition Group", - "type": "Integer", - "uuid": "2eed4503-78b3-4b98-b9ca-a3f463267876", - "variable_index": 17, - "version_uuid": "2eed4503-78b3-4b98-b9ca-a3f463267876" - }, - { - "display_name": "Add Exterior Lights Group", - "maximum": 1, - "minimum": 0, - "name": "Add Exterior Lights Group", - "type": "Integer", - "uuid": "9f877f52-aa42-4b53-b8e0-01218c4d6df8", - "variable_index": 18, - "version_uuid": "9f877f52-aa42-4b53-b8e0-01218c4d6df8" - }, - { - "display_name": "Reduce Night Time Electric Equipment Loads Group", - "maximum": 3, - "minimum": 0, - "name": "Reduce Night Time Electric Equipment Loads Group", - "type": "Integer", - "uuid": "5cd07fd1-ae22-46c7-a11a-56f58dd5f65f", - "variable_index": 19, - "version_uuid": "5cd07fd1-ae22-46c7-a11a-56f58dd5f65f" - }, - { - "display_name": "Add Cost per Floor Area to Electric Equipment Group", - "maximum": 0, - "minimum": 0, - "name": "Add Cost per Floor Area to Electric Equipment Group", - "type": "Integer", - "uuid": "85422c64-0a80-471d-9e26-646efc4da23b", - "variable_index": 20, - "version_uuid": "85422c64-0a80-471d-9e26-646efc4da23b" - }, - { - "display_name": "Reduce Electric Equipment Loads by Percentage Group", - "maximum": 3, - "minimum": 0, - "name": "Reduce Electric Equipment Loads by Percentage Group", - "type": "Integer", - "uuid": "b7b149b6-a73a-4267-90f3-818571965b0c", - "variable_index": 21, - "version_uuid": "b7b149b6-a73a-4267-90f3-818571965b0c" - }, - { - "display_name": "Adjust Thermostat Setpoints by Degrees Group", - "maximum": 3, - "minimum": 0, - "name": "Adjust Thermostat Setpoints by Degrees Group", - "type": "Integer", - "uuid": "5e4ea31c-e0e8-43a4-8427-4498f9d495a5", - "variable_index": 22, - "version_uuid": "5e4ea31c-e0e8-43a4-8427-4498f9d495a5" - }, - { - "display_name": "Add Cost To Supply Side HVAC Component by Air Loop Group", - "maximum": 0, - "minimum": 0, - "name": "Add Cost To Supply Side HVAC Component by Air Loop Group", - "type": "Integer", - "uuid": "40d29c7c-6eb5-4d05-8394-d2a6eb8db359", - "variable_index": 23, - "version_uuid": "40d29c7c-6eb5-4d05-8394-d2a6eb8db359" - }, - { - "display_name": "Set COP for Two Speed DX Cooling Units Group", - "maximum": 3, - "minimum": 0, - "name": "Set COP for Two Speed DX Cooling Units Group", - "type": "Integer", - "uuid": "869e2083-d247-4dd6-807a-a868133f3a30", - "variable_index": 24, - "version_uuid": "869e2083-d247-4dd6-807a-a868133f3a30" - }, - { - "display_name": "Improve Fan Belt Efficiency Group", - "maximum": 3, - "minimum": 0, - "name": "Improve Fan Belt Efficiency Group", - "type": "Integer", - "uuid": "4f01fd30-4f79-498f-bdbb-1d30589f006d", - "variable_index": 25, - "version_uuid": "4f01fd30-4f79-498f-bdbb-1d30589f006d" - }, - { - "display_name": "Improve Motor Efficiency Group", - "maximum": 3, - "minimum": 0, - "name": "Improve Motor Efficiency Group", - "type": "Integer", - "uuid": "c0b17acd-05ac-4e82-8c63-79acaf658716", - "variable_index": 26, - "version_uuid": "c0b17acd-05ac-4e82-8c63-79acaf658716" - }, - { - "display_name": "Enable Demand Controlled Ventilation Group", - "maximum": 1, - "minimum": 0, - "name": "Enable Demand Controlled Ventilation Group", - "type": "Integer", - "uuid": "6188be08-1b14-451f-9224-54a4ae1fb8fe", - "variable_index": 27, - "version_uuid": "6188be08-1b14-451f-9224-54a4ae1fb8fe" - }, - { - "display_name": "Enable Economizer Control Group", - "maximum": 3, - "minimum": 0, - "name": "Enable Economizer Control Group", - "type": "Integer", - "uuid": "7d36de8e-b573-4270-bdb1-06f33298a173", - "variable_index": 28, - "version_uuid": "7d36de8e-b573-4270-bdb1-06f33298a173" - }, - { - "display_name": "Reduce Ventilation By Percentage Group", - "maximum": 3, - "minimum": 0, - "name": "Reduce Ventilation By Percentage Group", - "type": "Integer", - "uuid": "c6cd37c4-3353-4d17-9c6f-63e84b8cfd8c", - "variable_index": 29, - "version_uuid": "c6cd37c4-3353-4d17-9c6f-63e84b8cfd8c" - }, - { - "display_name": "Shift Schedule Profile Time Group", - "maximum": 3, - "minimum": 0, - "name": "Shift Schedule Profile Time Group", - "type": "Integer", - "uuid": "3e1cc19c-69e7-403e-be9d-27c38fa7b61d", - "variable_index": 30, - "version_uuid": "3e1cc19c-69e7-403e-be9d-27c38fa7b61d" - }, - { - "display_name": "Test Test Measure Had a Ruby Error Group", - "maximum": 1, - "minimum": 0, - "name": "Test Test Measure Had a Ruby Error Group", - "type": "Integer", - "uuid": "07cb18a2-2950-4ed9-8ea6-6aa911072abc", - "variable_index": 31, - "version_uuid": "07cb18a2-2950-4ed9-8ea6-6aa911072abc" - }, - { - "display_name": "Add Output Variable Group", - "maximum": 1, - "minimum": 0, - "name": "Add Output Variable Group", - "type": "Integer", - "uuid": "5e87d63d-6e08-4b79-9605-4e61507d5ce1", - "variable_index": 32, - "version_uuid": "5e87d63d-6e08-4b79-9605-4e61507d5ce1" - }, - { - "display_name": "Predicted Mean Vote Group", - "maximum": 1, - "minimum": 0, - "name": "Predicted Mean Vote Group", - "type": "Integer", - "uuid": "6d1f236a-d6d6-4ff3-9410-27f2f45968ff", - "variable_index": 33, - "version_uuid": "6d1f236a-d6d6-4ff3-9410-27f2f45968ff" - }, - { - "display_name": "Set Lifecycle Cost Parameters Group", - "maximum": 0, - "minimum": 0, - "name": "Set Lifecycle Cost Parameters Group", - "type": "Integer", - "uuid": "7b7e8454-fe9e-43f8-87ec-55a44390787d", - "variable_index": 34, - "version_uuid": "7b7e8454-fe9e-43f8-87ec-55a44390787d" - }, - { - "display_name": "Add Cost per Floor Area to Building Group", - "maximum": 0, - "minimum": 0, - "name": "Add Cost per Floor Area to Building Group", - "type": "Integer", - "uuid": "505aaf30-826a-4960-ade2-b3adb510f984", - "variable_index": 35, - "version_uuid": "505aaf30-826a-4960-ade2-b3adb510f984" - }, - { - "display_name": "Add Simple PV to Shading Surfaces By Type Group", - "maximum": 3, - "minimum": 0, - "name": "Add Simple PV to Shading Surfaces By Type Group", - "type": "Integer", - "uuid": "c9422ab6-5f1c-40b1-975a-2a3770ca1c39", - "variable_index": 36, - "version_uuid": "c9422ab6-5f1c-40b1-975a-2a3770ca1c39" - }, - { - "display_name": "Xcel EDA Tariff Selection and Model Setup Group", - "maximum": 0, - "minimum": 0, - "name": "Xcel EDA Tariff Selection and Model Setup Group", - "type": "Integer", - "uuid": "0b0ead70-1fed-4bd4-b75e-ca69f6fc884e", - "variable_index": 37, - "version_uuid": "0b0ead70-1fed-4bd4-b75e-ca69f6fc884e" - }, - { - "display_name": "Just the Sample Reporting Measure you get when you create a new reporting measure Group", - "maximum": 0, - "minimum": 0, - "name": "Just the Sample Reporting Measure you get when you create a new reporting measure Group", - "type": "Integer", - "uuid": "359f3cb6-3c14-4482-ab6d-a12a41baf983", - "variable_index": 38, - "version_uuid": "359f3cb6-3c14-4482-ab6d-a12a41baf983" - } - ] - } -} diff --git a/server/spec/files/jsons/sweep_smalloffice.json b/server/spec/files/jsons/sweep_smalloffice.json new file mode 100644 index 000000000..830c113c0 --- /dev/null +++ b/server/spec/files/jsons/sweep_smalloffice.json @@ -0,0 +1,1478 @@ +{ + "analysis": { + "display_name": "sweep smalloffice", + "name": "sweep smalloffice", + "output_variables": [ + { + "objective_function": false, + "objective_function_index": null, + "objective_function_target": null, + "objective_function_group": null, + "scaling_factor": null, + "display_name": "electricity_ip", + "display_name_short": "electricity_ip", + "metadata_id": null, + "name": "openstudio_results.electricity_ip", + "visualize": true, + "export": true, + "variable_type": "double" + }, + { + "objective_function": false, + "objective_function_index": null, + "objective_function_target": null, + "objective_function_group": null, + "scaling_factor": null, + "display_name": "district_heating_ip", + "display_name_short": "district_heating_ip", + "metadata_id": null, + "name": "openstudio_results.district_heating_ip", + "visualize": true, + "export": true, + "variable_type": "double" + }, + { + "objective_function": false, + "objective_function_index": null, + "objective_function_target": null, + "objective_function_group": null, + "scaling_factor": null, + "display_name": "district_cooling_ip", + "display_name_short": "district_cooling_ip", + "metadata_id": null, + "name": "openstudio_results.district_cooling_ip", + "visualize": true, + "export": true, + "variable_type": "double" + }, + { + "objective_function": false, + "objective_function_index": null, + "objective_function_target": null, + "objective_function_group": null, + "scaling_factor": null, + "display_name": "total_site_eui", + "display_name_short": "total_site_eui", + "metadata_id": null, + "name": "openstudio_results.total_site_eui", + "visualize": true, + "export": true, + "variable_type": "double" + }, + { + "objective_function": false, + "objective_function_index": null, + "objective_function_target": null, + "objective_function_group": null, + "scaling_factor": null, + "display_name": "eui", + "display_name_short": "eui", + "metadata_id": null, + "name": "openstudio_results.eui", + "visualize": true, + "export": true, + "variable_type": "double" + }, + { + "objective_function": false, + "objective_function_index": null, + "objective_function_target": null, + "objective_function_group": null, + "scaling_factor": null, + "display_name": "annual_peak_electric_demand", + "display_name_short": "annual_peak_electric_demand", + "metadata_id": null, + "name": "openstudio_results.annual_peak_electric_demand", + "visualize": true, + "export": true, + "variable_type": "double" + }, + { + "objective_function": false, + "objective_function_index": null, + "objective_function_target": null, + "objective_function_group": null, + "scaling_factor": null, + "display_name": "unmet_hours_during_occupied_cooling", + "display_name_short": "unmet_hours_during_occupied_cooling", + "metadata_id": null, + "name": "openstudio_results.unmet_hours_during_occupied_cooling", + "visualize": true, + "export": true, + "variable_type": "double" + }, + { + "objective_function": false, + "objective_function_index": null, + "objective_function_target": null, + "objective_function_group": null, + "scaling_factor": null, + "display_name": "unmet_hours_during_occupied_heating", + "display_name_short": "unmet_hours_during_occupied_heating", + "metadata_id": null, + "name": "openstudio_results.unmet_hours_during_occupied_heating", + "visualize": true, + "export": true, + "variable_type": "double" + } + ], + "problem": { + "workflow": [ + { + "name": "ambient_loop_prototype_building_by_location", + "display_name": "Ambient Loop Prototype Building By Location", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "AmbientLoopPrototypeBuildingByLocation", + "measure_definition_directory": "./measures/ambient_loop_prototype_building_by_location", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/ambient_loop_prototype_building_by_location", + "measure_definition_display_name": "Ambient Loop Prototype Building By Location", + "measure_definition_name": "ambient_loop_prototype_building_by_location", + "measure_definition_name_xml": null, + "measure_definition_uuid": "eed65df5-3517-44d5-8ecd-35631aadcc24", + "measure_definition_version_uuid": "bce99553-beb5-4dec-8943-eb563cd2443d", + "uuid": "eed65df5-3517-44d5-8ecd-35631aadcc24", + "version_uuid": "bce99553-beb5-4dec-8943-eb563cd2443d", + "description": "Change the building location", + "taxonomy": "Whole Building.Space Types", + "arguments": [ + { + "display_name": "Building Type", + "display_name_short": "building_type", + "name": "building_type", + "value_type": "string", + "default_value": "SmallOffice", + "value": "SmallOffice" + }, + { + "display_name": "Template", + "display_name_short": "template", + "name": "template", + "value_type": "string", + "default_value": "90.1-2010", + "value": "90.1-2010" + }, + { + "display_name": "Weather File Name", + "display_name_short": "weather_file_name", + "name": "weather_file_name", + "value_type": "string", + "default_value": "USA_CO_Golden-NREL.724666_TMY3.epw", + "value": "USA_CO_Golden-NREL.724666_TMY3.epw" + } + ], + "variables": [], + "workflow_index": 0 + }, + { + "name": "ambient_loop_add_ets_system", + "display_name": "Ambient Loop Add ETS System", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "AmbientLoopAddEtsSystem", + "measure_definition_directory": "./measures/ambient_loop_add_ets_system", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/ambient_loop_add_ets_system", + "measure_definition_display_name": "Ambient Loop Add ETS System", + "measure_definition_name": "ambient_loop_add_ets_system", + "measure_definition_name_xml": null, + "measure_definition_uuid": "ef83af59-3005-4d3e-9477-6de226168580", + "measure_definition_version_uuid": "733aedca-4edf-471b-82a0-fa8de0a5265b", + "uuid": "ef83af59-3005-4d3e-9477-6de226168580", + "version_uuid": "733aedca-4edf-471b-82a0-fa8de0a5265b", + "description": "Apply an ETS system to a model", + "taxonomy": "Whole Building.Space Types", + "arguments": [], + "variables": [], + "workflow_index": 1 + }, + { + "name": "ambient_loop_temperature_setpoint", + "display_name": "Ambient Loop Temperature Setpoint", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "AmbientLoopTemperatureSetpoint", + "measure_definition_directory": "./measures/ambient_loop_temperature_setpoint", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/ambient_loop_temperature_setpoint", + "measure_definition_display_name": "Ambient Loop Temperature Setpoint", + "measure_definition_name": "ambient_loop_temperature_setpoint", + "measure_definition_name_xml": null, + "measure_definition_uuid": "b7cf0cbd-f752-4e43-9c9c-62705a3b7613", + "measure_definition_version_uuid": "db323978-64d0-419f-8e71-4df40b83b226", + "uuid": "b7cf0cbd-f752-4e43-9c9c-62705a3b7613", + "version_uuid": "db323978-64d0-419f-8e71-4df40b83b226", + "description": "Set the temperature of the ambient loop to a specific value.", + "taxonomy": "HVAC.Heating", + "arguments": [], + "variables": [ + { + "argument": { + "display_name": "Ambient Loop Temperature", + "display_name_short": "setpoint_temperature", + "name": "setpoint_temperature", + "value_type": "double", + "default_value": 20, + "value": 20 + }, + "display_name": "Ambient Loop Temperature", + "display_name_short": "setpoint_temperature", + "variable_type": "variable", + "units": "Degrees Celsius", + "minimum": 15, + "maximum": 25, + "static_value": 20, + "uuid": "", + "version_uuid": "", + "variable": true, + "uncertainty_description": { + "type": "uniform", + "attributes": [ + { + "name": "lower_bounds", + "value": 15 + }, + { + "name": "upper_bounds", + "value": 25 + }, + { + "name": "modes", + "value": 0 + }, + { + "name": "delta_x", + "value": 0 + }, + { + "name": "stddev", + "value": 0 + } + ] + }, + "workflow_index": 0 + }, + { + "argument": { + "display_name": "Delta Design Loop Temperature", + "display_name_short": "design_delta", + "name": "design_delta", + "value_type": "double", + "default_value": 5.55, + "value": 5.55 + }, + "display_name": "Delta Design Loop Temperature", + "display_name_short": "design_delta", + "variable_type": "variable", + "units": "Delta Temperature", + "minimum": 1, + "maximum": 7, + "static_value": 5.55, + "uuid": "", + "version_uuid": "", + "variable": true, + "uncertainty_description": { + "type": "uniform", + "attributes": [ + { + "name": "lower_bounds", + "value": 1 + }, + { + "name": "upper_bounds", + "value": 7 + }, + { + "name": "modes", + "value": 5.55 + }, + { + "name": "delta_x", + "value": 5.55 + }, + { + "name": "stddev", + "value": 5.55 + } + ] + }, + "workflow_index": 1 + } + ], + "workflow_index": 2 + }, + { + "name": "hot_water_loop_design_temperature", + "display_name": "Hot Water Loop Design Temperature", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "HotWaterLoopDesignTemperature", + "measure_definition_directory": "./measures/hot_water_loop_design_temperature", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/hot_water_loop_design_temperature", + "measure_definition_display_name": "Hot Water Loop Design Temperature", + "measure_definition_name": "hot_water_loop_design_temperature", + "measure_definition_name_xml": null, + "measure_definition_uuid": "c4674445-7dad-4ba9-8b06-11028fd76904", + "measure_definition_version_uuid": "b1c318f6-c194-4914-9031-1642fecc8000", + "uuid": "c4674445-7dad-4ba9-8b06-11028fd76904", + "version_uuid": "b1c318f6-c194-4914-9031-1642fecc8000", + "description": "Set the design temperature of the Hot Water Loop to the specified value.", + "taxonomy": "HVAC.Heating", + "arguments": [ + { + "display_name": "Hot Water Temperature", + "display_name_short": "hot_water_temperature", + "name": "hot_water_temperature", + "value_type": "double", + "default_value": 60, + "value": 60 + } + ], + "variables": [], + "workflow_index": 3 + }, + { + "name": "remove_all_doors", + "display_name": "Remove All Doors", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "RemoveAllDoors", + "measure_definition_directory": "./measures/remove_all_doors", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/remove_all_doors", + "measure_definition_display_name": "Remove All Doors", + "measure_definition_name": "remove_all_doors", + "measure_definition_name_xml": null, + "measure_definition_uuid": "2248ab73-e210-4c44-85cc-d18c39fe50f5", + "measure_definition_version_uuid": "5976a0d7-95ea-47fc-bc1b-c10133d520e3", + "uuid": "2248ab73-e210-4c44-85cc-d18c39fe50f5", + "version_uuid": "5976a0d7-95ea-47fc-bc1b-c10133d520e3", + "description": "Removes all doors from building envelope.", + "taxonomy": "Envelope.Opaque", + "arguments": [], + "variables": [], + "workflow_index": 4 + }, + { + "name": "set_window_to_wall_ratio", + "display_name": "Set Window to Wall Ratio", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "SetWindowToWallRatio", + "measure_definition_directory": "./measures/set_window_to_wall_ratio", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/set_window_to_wall_ratio", + "measure_definition_display_name": "Set Window to Wall Ratio", + "measure_definition_name": "set_window_to_wall_ratio", + "measure_definition_name_xml": null, + "measure_definition_uuid": "73ac3246-3170-4853-bed9-0ca14ea7981c", + "measure_definition_version_uuid": "68a81245-27ce-408c-9b30-59f84f44555d", + "uuid": "73ac3246-3170-4853-bed9-0ca14ea7981c", + "version_uuid": "68a81245-27ce-408c-9b30-59f84f44555d", + "description": "Set the window to wall ratio for all facades to a specific value.", + "taxonomy": "Envelope.Fenestration", + "arguments": [ + { + "display_name": "Sill Height (in)", + "display_name_short": "sillHeight", + "name": "sillHeight", + "value_type": "double", + "default_value": 30, + "value": 30 + } + ], + "variables": [ + { + "argument": { + "display_name": "Window to Wall Ratio (fraction)", + "display_name_short": "wwr", + "name": "wwr", + "value_type": "double", + "default_value": 0.2, + "value": 0.2 + }, + "display_name": "Window to Wall Ratio (fraction)", + "display_name_short": "wwr", + "variable_type": "variable", + "minimum": 0.2, + "maximum": 0.8, + "static_value": 0.2, + "uuid": "", + "version_uuid": "", + "variable": true, + "uncertainty_description": { + "type": "uniform", + "attributes": [ + { + "name": "lower_bounds", + "value": 0.2 + }, + { + "name": "upper_bounds", + "value": 0.8 + }, + { + "name": "modes", + "value": 0.2 + }, + { + "name": "delta_x", + "value": 0.2 + }, + { + "name": "stddev", + "value": 0 + } + ] + }, + "workflow_index": 0 + } + ], + "workflow_index": 5 + }, + { + "name": "set_roof_insulation_r_value", + "display_name": "Set Roof Insulation R Value", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "SetRoofInsulationRValue", + "measure_definition_directory": "./measures/set_roof_insulation_r_value", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/set_roof_insulation_r_value", + "measure_definition_display_name": "Set Roof Insulation R Value", + "measure_definition_name": "set_roof_insulation_r_value", + "measure_definition_name_xml": null, + "measure_definition_uuid": "65b798f4-207f-4aed-987a-386c865d0ccd", + "measure_definition_version_uuid": "8fce54b6-4076-4a7a-9390-848187f0ff03", + "uuid": "65b798f4-207f-4aed-987a-386c865d0ccd", + "version_uuid": "8fce54b6-4076-4a7a-9390-848187f0ff03", + "description": "Set the R-Value of roof insulation to a specified value. Higher R-Values provide better insulation, lowering heat loss and heat gain through the roof.", + "taxonomy": "Envelope.Opaque", + "arguments": [], + "variables": [ + { + "argument": { + "display_name": "Roof Insulation R-value (ft^2*h*R/Btu)", + "display_name_short": "roof_r", + "name": "roof_r", + "value_type": "double", + "default_value": 30, + "value": 30 + }, + "display_name": "Roof Insulation R-value (ft^2*h*R/Btu)", + "display_name_short": "roof_r", + "variable_type": "variable", + "minimum": 30, + "maximum": 80, + "static_value": 30, + "uuid": "", + "version_uuid": "", + "variable": true, + "uncertainty_description": { + "type": "uniform", + "attributes": [ + { + "name": "lower_bounds", + "value": 30 + }, + { + "name": "upper_bounds", + "value": 80 + }, + { + "name": "modes", + "value": 30 + }, + { + "name": "delta_x", + "value": 30 + }, + { + "name": "stddev", + "value": 30 + } + ] + }, + "workflow_index": 0 + } + ], + "workflow_index": 6 + }, + { + "name": "set_exterior_wall_insulation_r_value", + "display_name": "Set Exterior Wall Insulation R Value", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "SetExteriorWallInsulationRValue", + "measure_definition_directory": "./measures/set_exterior_wall_insulation_r_value", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/set_exterior_wall_insulation_r_value", + "measure_definition_display_name": "Set Exterior Wall Insulation R Value", + "measure_definition_name": "set_exterior_wall_insulation_r_value", + "measure_definition_name_xml": null, + "measure_definition_uuid": "3fdf9c39-d305-449b-a4b5-077166af5a67", + "measure_definition_version_uuid": "ad2ad825-b9ef-463c-aa25-fde1b5492e05", + "uuid": "3fdf9c39-d305-449b-a4b5-077166af5a67", + "version_uuid": "ad2ad825-b9ef-463c-aa25-fde1b5492e05", + "description": "Set the R-Value of exterior wall insulation to a specified value. Higher R-Values provide better insulation, lowering heat loss and heat gain through the exterior walls.", + "taxonomy": "Envelope.Opaque", + "arguments": [], + "variables": [ + { + "argument": { + "display_name": "Exterior Wall Insulation R-value (ft^2*h*R/Btu)", + "display_name_short": "wall_r", + "name": "wall_r", + "value_type": "double", + "default_value": 13, + "value": 13 + }, + "display_name": "Exterior Wall Insulation R-value (ft^2*h*R/Btu)", + "display_name_short": "wall_r", + "variable_type": "variable", + "minimum": 13, + "maximum": 60, + "static_value": 13, + "uuid": "", + "version_uuid": "", + "variable": true, + "uncertainty_description": { + "type": "uniform", + "attributes": [ + { + "name": "lower_bounds", + "value": 13 + }, + { + "name": "upper_bounds", + "value": 60 + }, + { + "name": "modes", + "value": 13 + }, + { + "name": "delta_x", + "value": 13 + }, + { + "name": "stddev", + "value": 13 + } + ] + }, + "workflow_index": 0 + } + ], + "workflow_index": 7 + }, + { + "name": "set_heat_pump_heating_coil_rated_cop", + "display_name": "Set Heat Pump Heating Coil Rated COP", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "SetHeatPumpHeatingCoilRatedCop", + "measure_definition_directory": "./measures/set_heat_pump_heating_coil_rated_cop", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/set_heat_pump_heating_coil_rated_cop", + "measure_definition_display_name": "Set Heat Pump Heating Coil Rated COP", + "measure_definition_name": "set_heat_pump_heating_coil_rated_cop", + "measure_definition_name_xml": null, + "measure_definition_uuid": "550419ad-c73a-4e5f-b7b0-ab3768584ce4", + "measure_definition_version_uuid": "f1b401f4-eea5-43b2-aa6e-5e9f56b3d527", + "uuid": "550419ad-c73a-4e5f-b7b0-ab3768584ce4", + "version_uuid": "f1b401f4-eea5-43b2-aa6e-5e9f56b3d527", + "description": "Set heat pump heating coil gross rated COP.", + "taxonomy": "HVAC.Cooling", + "arguments": [], + "variables": [ + { + "argument": { + "display_name": "Cooling Coil Rated COP", + "display_name_short": "heat_cop", + "name": "heat_cop", + "value_type": "double", + "default_value": 3.74, + "value": 3.74 + }, + "display_name": "Cooling Coil Rated COP", + "display_name_short": "heat_cop", + "variable_type": "variable", + "minimum": 3.75, + "maximum": 5, + "static_value": 3.74, + "uuid": "", + "version_uuid": "", + "variable": true, + "uncertainty_description": { + "type": "uniform", + "attributes": [ + { + "name": "lower_bounds", + "value": 3.75 + }, + { + "name": "upper_bounds", + "value": 5 + }, + { + "name": "modes", + "value": 3.74 + }, + { + "name": "delta_x", + "value": 3.74 + }, + { + "name": "stddev", + "value": 3.74 + } + ] + }, + "workflow_index": 0 + } + ], + "workflow_index": 8 + }, + { + "name": "set_heat_pump_cooling_coil_rated_cop", + "display_name": "Set Heat Pump Cooling Coil Rated COP", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "SetHeatPumpCoolingCoilRatedCop", + "measure_definition_directory": "./measures/set_heat_pump_cooling_coil_rated_cop", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/set_heat_pump_cooling_coil_rated_cop", + "measure_definition_display_name": "Set Heat Pump Cooling Coil Rated COP", + "measure_definition_name": "set_heat_pump_cooling_coil_rated_cop", + "measure_definition_name_xml": null, + "measure_definition_uuid": "9d74eeb6-9557-4d83-a96a-c5b8bfa1b6d2", + "measure_definition_version_uuid": "e6c8a742-1e31-439e-8aaa-29726fd1c3ad", + "uuid": "9d74eeb6-9557-4d83-a96a-c5b8bfa1b6d2", + "version_uuid": "e6c8a742-1e31-439e-8aaa-29726fd1c3ad", + "description": "Set heat pump cooling coil gross rated COP.", + "taxonomy": "HVAC.Cooling", + "arguments": [], + "variables": [ + { + "argument": { + "display_name": "Cooling Coil Rated COP", + "display_name_short": "cool_cop", + "name": "cool_cop", + "value_type": "double", + "default_value": 3.65, + "value": 3.65 + }, + "display_name": "Cooling Coil Rated COP", + "display_name_short": "cool_cop", + "variable_type": "variable", + "minimum": 3.65, + "maximum": 5, + "static_value": 3.65, + "uuid": "", + "version_uuid": "", + "variable": true, + "uncertainty_description": { + "type": "uniform", + "attributes": [ + { + "name": "lower_bounds", + "value": 3.65 + }, + { + "name": "upper_bounds", + "value": 5 + }, + { + "name": "modes", + "value": 3.65 + }, + { + "name": "delta_x", + "value": 3.65 + }, + { + "name": "stddev", + "value": 3.65 + } + ] + }, + "workflow_index": 0 + } + ], + "workflow_index": 9 + }, + { + "name": "internal_loads_multiplier", + "display_name": "Internal Loads Multiplier", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "InternalLoadsMultiplier", + "measure_definition_directory": "./measures/internal_loads_multiplier", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/internal_loads_multiplier", + "measure_definition_display_name": "Internal Loads Multiplier", + "measure_definition_name": "internal_loads_multiplier", + "measure_definition_name_xml": null, + "measure_definition_uuid": "8c10b18d-c66d-43dc-9ef5-b82dfed0edde", + "measure_definition_version_uuid": "8b9e078c-393a-44ad-a57b-c616827f0271", + "uuid": "8c10b18d-c66d-43dc-9ef5-b82dfed0edde", + "version_uuid": "8b9e078c-393a-44ad-a57b-c616827f0271", + "description": "Multipliers for LPD, EPD, and people densities.", + "taxonomy": "Whole Building.Space Types", + "arguments": [ + { + "display_name": "People per floor area multipleir", + "display_name_short": "people_per_floor_area_multiplier", + "name": "people_per_floor_area_multiplier", + "value_type": "double", + "default_value": 1, + "value": 1 + } + ], + "variables": [ + { + "argument": { + "display_name": "LPD Multiplier", + "display_name_short": "lpd_multiplier", + "name": "lpd_multiplier", + "value_type": "double", + "default_value": 1, + "value": 1 + }, + "display_name": "LPD Multiplier", + "display_name_short": "lpd_multiplier", + "variable_type": "variable", + "units": "W/ft^2", + "minimum": 0.33, + "maximum": 3, + "static_value": 1, + "uuid": "", + "version_uuid": "", + "variable": true, + "uncertainty_description": { + "type": "uniform", + "attributes": [ + { + "name": "lower_bounds", + "value": 0.33 + }, + { + "name": "upper_bounds", + "value": 3 + }, + { + "name": "modes", + "value": 1 + }, + { + "name": "delta_x", + "value": 1 + }, + { + "name": "stddev", + "value": 1 + } + ] + }, + "workflow_index": 0 + }, + { + "argument": { + "display_name": "Electric Equipment Power Density Multiplier", + "display_name_short": "epd_multiplier", + "name": "epd_multiplier", + "value_type": "double", + "default_value": 1, + "value": 1 + }, + "display_name": "Electric Equipment Power Density Multiplier", + "display_name_short": "epd_multiplier", + "variable_type": "variable", + "units": "W/ft^2", + "minimum": 0.33, + "maximum": 3, + "static_value": 1, + "uuid": "", + "version_uuid": "", + "variable": true, + "uncertainty_description": { + "type": "uniform", + "attributes": [ + { + "name": "lower_bounds", + "value": 0.33 + }, + { + "name": "upper_bounds", + "value": 3 + }, + { + "name": "modes", + "value": 1 + }, + { + "name": "delta_x", + "value": 1 + }, + { + "name": "stddev", + "value": 1 + } + ] + }, + "workflow_index": 1 + } + ], + "workflow_index": 10 + }, + { + "name": "shift_schedule_profile_time", + "display_name": "Shift Schedule Profile Time", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "ShiftScheduleProfileTime", + "measure_definition_directory": "./measures/shift_schedule_profile_time", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/shift_schedule_profile_time", + "measure_definition_display_name": "Shift Schedule Profile Time", + "measure_definition_name": "shift_schedule_profile_time", + "measure_definition_name_xml": null, + "measure_definition_uuid": "1c642348-f074-4ad1-98ee-2208ddc89ac7", + "measure_definition_version_uuid": "26b0598a-8619-4a81-95d7-e4a753614b5e", + "uuid": "1c642348-f074-4ad1-98ee-2208ddc89ac7", + "version_uuid": "26b0598a-8619-4a81-95d7-e4a753614b5e", + "description": "Shift a single or all schedules in the building by the specified number of hours", + "taxonomy": "Whole Building.Whole Building Schedules", + "arguments": [ + { + "display_name": "Choose a Schedule to Shift the Time For.", + "display_name_short": "schedule", + "name": "schedule", + "value_type": "string", + "default_value": "*All Ruleset Schedules*", + "value": "*All Ruleset Schedules*" + }, + { + "display_name": "Distribution for Random Shift Value Generator.", + "display_name_short": "dist", + "name": "dist", + "value_type": "string", + "default_value": "Uniform", + "value": "Uniform" + }, + { + "display_name": "Shift Schedule Profiles Forward Lower Limit (24hr, use decimal for sub hour).", + "display_name_short": "shift_ll", + "name": "shift_ll", + "value_type": "double", + "default_value": 0, + "value": -2 + }, + { + "display_name": "Shift Schedule Profiles Forward Upper Limit (24hr, use decimal for sub hour).", + "display_name_short": "shift_ul", + "name": "shift_ul", + "value_type": "double", + "default_value": 1, + "value": 2 + }, + { + "display_name": "Shift Schedule Profiles Peak for Triangular Distribution.", + "display_name_short": "shift_ct", + "name": "shift_ct", + "value_type": "double", + "default_value": 0, + "value": 0 + } + ], + "variables": [], + "workflow_index": 11 + }, + { + "name": "set_schedule_profile_start_end_times", + "display_name": "Set Schedule Profile Start End Times", + "measure_type": "RubyMeasure", + "measure_definition_class_name": "SetScheduleProfileStartEndTimes", + "measure_definition_directory": "./measures/set_schedule_profile_start_end_times", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/set_schedule_profile_start_end_times", + "measure_definition_display_name": "Set Schedule Profile Start End Times", + "measure_definition_name": "set_schedule_profile_start_end_times", + "measure_definition_name_xml": null, + "measure_definition_uuid": "d7477df5-e482-44be-9be5-fe9875013229", + "measure_definition_version_uuid": "ade842ca-0fe8-43b6-9c85-6479491ca0b9", + "uuid": "d7477df5-e482-44be-9be5-fe9875013229", + "version_uuid": "ade842ca-0fe8-43b6-9c85-6479491ca0b9", + "description": "Expand or contract schedule profile by specifying new start and end times. The schedule profile shape is preserved.", + "taxonomy": "Whole Building.Whole Building Schedules", + "arguments": [ + { + "display_name": "Schedule to Expand or Contract", + "display_name_short": "schedule", + "name": "schedule", + "value_type": "string", + "default_value": "*All Ruleset Schedules*", + "value": "*All Ruleset Schedules*" + } + ], + "variables": [ + { + "argument": { + "display_name": "Schedule Start (hr)", + "display_name_short": "new_start", + "name": "new_start", + "value_type": "integer", + "default_value": 8, + "value": 8 + }, + "display_name": "Schedule Start (hr)", + "display_name_short": "new_start", + "variable_type": "variable", + "minimum": 8, + "maximum": 8, + "static_value": 8, + "uuid": "", + "version_uuid": "", + "variable": true, + "uncertainty_description": { + "type": "discrete", + "attributes": [ + { + "name": "discrete", + "values_and_weights": [ + { + "value": 5, + "weight": 0.2 + }, + { + "value": 6, + "weight": 0.2 + }, + { + "value": 7, + "weight": 0.2 + }, + { + "value": 8, + "weight": 0.2 + }, + { + "value": 9, + "weight": 0.2 + } + ] + }, + { + "name": "lower_bounds", + "value": 8 + }, + { + "name": "upper_bounds", + "value": 8 + }, + { + "name": "modes", + "value": 8 + }, + { + "name": "delta_x", + "value": 8 + }, + { + "name": "stddev", + "value": 8 + } + ] + }, + "workflow_index": 0 + }, + { + "argument": { + "display_name": "Schedule End (hr)", + "display_name_short": "new_end", + "name": "new_end", + "value_type": "integer", + "default_value": 18, + "value": 18 + }, + "display_name": "Schedule End (hr)", + "display_name_short": "new_end", + "variable_type": "variable", + "minimum": 18, + "maximum": 18, + "static_value": 18, + "uuid": "", + "version_uuid": "", + "variable": true, + "uncertainty_description": { + "type": "discrete", + "attributes": [ + { + "name": "discrete", + "values_and_weights": [ + { + "value": 16, + "weight": 0.2 + }, + { + "value": 17, + "weight": 0.2 + }, + { + "value": 18, + "weight": 0.2 + }, + { + "value": 19, + "weight": 0.2 + }, + { + "value": 20, + "weight": 0.2 + } + ] + }, + { + "name": "lower_bounds", + "value": 18 + }, + { + "name": "upper_bounds", + "value": 18 + }, + { + "name": "modes", + "value": 18 + }, + { + "name": "delta_x", + "value": 18 + }, + { + "name": "stddev", + "value": 18 + } + ] + }, + "workflow_index": 1 + } + ], + "workflow_index": 12 + }, + { + "name": "openstudio_results", + "display_name": "OpenStudio Results", + "measure_type": "ReportingMeasure", + "measure_definition_class_name": "OpenStudioResults", + "measure_definition_directory": "./measures/openstudio_results", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/openstudio_results", + "measure_definition_display_name": "OpenStudio Results", + "measure_definition_name": "openstudio_results", + "measure_definition_name_xml": null, + "measure_definition_uuid": "a25386cd-60e4-46bc-8b11-c755f379d916", + "measure_definition_version_uuid": "05ad855b-6ae3-431e-991b-80e5133a56f2", + "uuid": "a25386cd-60e4-46bc-8b11-c755f379d916", + "version_uuid": "05ad855b-6ae3-431e-991b-80e5133a56f2", + "description": "This measure creates high level tables and charts pulling both from model inputs and EnergyPlus results. It has building level information as well as detail on space types, thermal zones, HVAC systems, envelope characteristics, and economics. Click the heading above a chart to view a table of the chart data.", + "taxonomy": "Reporting.QAQC", + "arguments": [ + { + "display_name": "Model Summary", + "display_name_short": "building_summary_section", + "name": "building_summary_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Annual Overview", + "display_name_short": "annual_overview_section", + "name": "annual_overview_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Monthly Overview", + "display_name_short": "monthly_overview_section", + "name": "monthly_overview_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Utility Bills/Rates", + "display_name_short": "utility_bills_rates_section", + "name": "utility_bills_rates_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Envelope", + "display_name_short": "envelope_section_section", + "name": "envelope_section_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Space Type Breakdown", + "display_name_short": "space_type_breakdown_section", + "name": "space_type_breakdown_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Space Type Summary", + "display_name_short": "space_type_details_section", + "name": "space_type_details_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Interior Lighting Summary", + "display_name_short": "interior_lighting_section", + "name": "interior_lighting_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Plug Loads Summary", + "display_name_short": "plug_loads_section", + "name": "plug_loads_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Exterior Lighting", + "display_name_short": "exterior_light_section", + "name": "exterior_light_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Water Use Equipment", + "display_name_short": "water_use_section", + "name": "water_use_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "HVAC Load Profiles", + "display_name_short": "hvac_load_profile", + "name": "hvac_load_profile", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Zone Conditions", + "display_name_short": "zone_condition_section", + "name": "zone_condition_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Zone Overview", + "display_name_short": "zone_summary_section", + "name": "zone_summary_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Zone Equipment Detail", + "display_name_short": "zone_equipment_detail_section", + "name": "zone_equipment_detail_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Air Loops Detail", + "display_name_short": "air_loops_detail_section", + "name": "air_loops_detail_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Plant Loops Detail", + "display_name_short": "plant_loops_detail_section", + "name": "plant_loops_detail_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Outdoor Air", + "display_name_short": "outdoor_air_section", + "name": "outdoor_air_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Cash Flow", + "display_name_short": "cost_summary_section", + "name": "cost_summary_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Site and Source Summary", + "display_name_short": "source_energy_section", + "name": "source_energy_section", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Schedule Overview", + "display_name_short": "schedules_overview_section", + "name": "schedules_overview_section", + "value_type": "boolean", + "default_value": true, + "value": true + } + ], + "variables": [], + "workflow_index": 13 + }, + { + "name": "generic_qaqc", + "display_name": "Generic QAQC", + "measure_type": "ReportingMeasure", + "measure_definition_class_name": "GenericQAQC", + "measure_definition_directory": "./measures/generic_qaqc", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/generic_qaqc", + "measure_definition_display_name": "Generic QAQC", + "measure_definition_name": "generic_qaqc", + "measure_definition_name_xml": null, + "measure_definition_uuid": "d58d6b29-69ba-4915-b907-3c2c37ddb7c7", + "measure_definition_version_uuid": "c3a65f4b-fe7d-4349-960d-bb4b1fe3e0d1", + "uuid": "d58d6b29-69ba-4915-b907-3c2c37ddb7c7", + "version_uuid": "c3a65f4b-fe7d-4349-960d-bb4b1fe3e0d1", + "description": "This measure extracts key simulation results and performs basic model QAQC checks. Each category of checks provides a description of the source of the check. In some cases the target standards and tollerances are adjustable.", + "taxonomy": "Reporting.QAQC", + "arguments": [ + { + "display_name": "Target ASHRAE Standard", + "display_name_short": "template", + "name": "template", + "value_type": "string", + "default_value": "90.1-2013", + "value": "90.1-2013" + }, + { + "display_name": "EUI Reasonableness (General)", + "display_name_short": "check_eui_reasonableness", + "name": "check_eui_reasonableness", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "EUI Reasonableness Tolerance", + "display_name_short": "check_eui_reasonableness_tol", + "name": "check_eui_reasonableness_tol", + "value_type": "double", + "default_value": 0.1, + "value": 0.1 + }, + { + "display_name": "End Use by Category (General)", + "display_name_short": "check_eui_by_end_use", + "name": "check_eui_by_end_use", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "End Use by Category Tolerance", + "display_name_short": "check_eui_by_end_use_tol", + "name": "check_eui_by_end_use_tol", + "value_type": "double", + "default_value": 0.25, + "value": 0.25 + }, + { + "display_name": "Mechanical System Part Load Efficiency (General)", + "display_name_short": "check_mech_sys_part_load_eff", + "name": "check_mech_sys_part_load_eff", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Mechanical System Part Load Efficiency Tolerance", + "display_name_short": "check_mech_sys_part_load_eff_tol", + "name": "check_mech_sys_part_load_eff_tol", + "value_type": "double", + "default_value": 0.05, + "value": 0.05 + }, + { + "display_name": "Mechanical System Capacity (General)", + "display_name_short": "check_mech_sys_capacity", + "name": "check_mech_sys_capacity", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Simultaneous Heating and Cooling (General)", + "display_name_short": "check_simultaneous_heating_and_cooling", + "name": "check_simultaneous_heating_and_cooling", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Simultaneous Heating and Cooling Max Tolerance", + "display_name_short": "check_simultaneous_heating_and_cooling_max_tol", + "name": "check_simultaneous_heating_and_cooling_max_tol", + "value_type": "double", + "default_value": 0.05, + "value": 0.05 + }, + { + "display_name": "Internal Loads (Baseline)", + "display_name_short": "check_internal_loads", + "name": "check_internal_loads", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Internal Loads Tolerance", + "display_name_short": "check_internal_loads_tol", + "name": "check_internal_loads_tol", + "value_type": "double", + "default_value": 0.1, + "value": 0.1 + }, + { + "display_name": "Schedules (Baseline)", + "display_name_short": "check_schedules", + "name": "check_schedules", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Schedules Tolerance", + "display_name_short": "check_schedules_tol", + "name": "check_schedules_tol", + "value_type": "double", + "default_value": 0.05, + "value": 0.05 + }, + { + "display_name": "Envelope R-Value (Baseline)", + "display_name_short": "check_envelope_conductance", + "name": "check_envelope_conductance", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Envelope R-Value Tolerance", + "display_name_short": "check_envelope_conductance_tol", + "name": "check_envelope_conductance_tol", + "value_type": "double", + "default_value": 0.1, + "value": 0.1 + }, + { + "display_name": "Domestic Hot Water (Baseline)", + "display_name_short": "check_domestic_hot_water", + "name": "check_domestic_hot_water", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Domestic Hot Water Tolerance", + "display_name_short": "check_domestic_hot_water_tol", + "name": "check_domestic_hot_water_tol", + "value_type": "double", + "default_value": 0.25, + "value": 0.25 + }, + { + "display_name": "Mechanical System Efficiency (Baseline)", + "display_name_short": "check_mech_sys_efficiency", + "name": "check_mech_sys_efficiency", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Mechanical System Efficiency Tolerance", + "display_name_short": "check_mech_sys_efficiency_tol", + "name": "check_mech_sys_efficiency_tol", + "value_type": "double", + "default_value": 0.1, + "value": 0.1 + }, + { + "display_name": "Mechanical System Type (Baseline)", + "display_name_short": "check_mech_sys_type", + "name": "check_mech_sys_type", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Supply and Zone Air Temperature (Baseline)", + "display_name_short": "check_supply_air_and_thermostat_temp_difference", + "name": "check_supply_air_and_thermostat_temp_difference", + "value_type": "boolean", + "default_value": true, + "value": true + }, + { + "display_name": "Supply and Zone Air Temperature Tolerance", + "display_name_short": "check_supply_air_and_thermostat_temp_difference_tol", + "name": "check_supply_air_and_thermostat_temp_difference_tol", + "value_type": "double", + "default_value": 0.5, + "value": 0.5 + } + ], + "variables": [], + "workflow_index": 14 + }, + { + "name": "ambient_loop_reports", + "display_name": "Ambient Loop Reports", + "measure_type": "ReportingMeasure", + "measure_definition_class_name": "AmbientLoopReports", + "measure_definition_directory": "./measures/ambient_loop_reports", + "measure_definition_directory_local": "/Users/nlong/working-simulations/pat-projects/ambient-loop-pat-projects/sweep_smalloffice_v2/measures/ambient_loop_reports", + "measure_definition_display_name": "Ambient Loop Reports", + "measure_definition_name": "ambient_loop_reports", + "measure_definition_name_xml": null, + "measure_definition_uuid": "9b470a52-d218-4b50-80dd-d229ce73438d", + "measure_definition_version_uuid": "7b5763ec-8502-477b-9941-21a4211cd7e7", + "uuid": "9b470a52-d218-4b50-80dd-d229ce73438d", + "version_uuid": "7b5763ec-8502-477b-9941-21a4211cd7e7", + "description": "Add report variables for post processing the ambient loop data.", + "taxonomy": "Reporting.QAQC", + "arguments": [], + "variables": [], + "workflow_index": 15 + } + ], + "algorithm": { + "sample_method": "all_variables", + "number_of_samples": 4, + "seed": null, + "failed_f_value": 1000000000000000000, + "debug_messages": 0, + "objective_functions": [] + }, + "analysis_type": "lhs" + }, + "seed": { + "file_type": "OSM", + "path": "./seeds/example_model.osm" + }, + "weather_file": { + "file_type": "EPW", + "path": "./weather/USA_CO_Golden-NREL.724666_TMY3.epw" + }, + "file_format_version": 1, + "server_scripts": { + "worker_initialization": "./scripts/worker_initialization/initialize.sh" + } + } +} \ No newline at end of file diff --git a/server/spec/files/simple_cont_example.json b/server/spec/files/simple_cont_example.json deleted file mode 100644 index d6b697870..000000000 --- a/server/spec/files/simple_cont_example.json +++ /dev/null @@ -1,189 +0,0 @@ -{ - "analysis": { - "display_name": "Ruby Continuous Variables Example Problem", - "name": "ruby_continuous_variables_example_problem", - "output_variables": [ - { - "display_name": "Heating Natural Gas", - "name": "heating_natural_gas", - "units": "MJ/m2", - "objective_function": false, - "objective_function_index": null, - "objective_function_target": 462.1635, - "scaling_factor": null, - "objective_function_group": 1 - }, - { - "display_name": "Cooling Electricity", - "name": "cooling_electricity", - "units": "MJ/m2", - "objective_function": false, - "objective_function_index": null, - "objective_function_target": 84.16202, - "scaling_factor": null, - "objective_function_group": 2 - } - ], - "problem": { - "algorithm": { - "sample_method": "all_variables", - "number_of_samples": 2, - "objective_functions": [ - - ] - }, - "name": "Problem", - "workflow": [ - { - "arguments": [ - { - "display_name": "Apply the Measure to a Specific Space Type or to the Entire Model.", - "machine_name": "apply_the_measure_to_a_specific_space_type_or_to_the_entire_model.", - "name": "space_type", - "value": "*Entire Building*", - "value_type": "choice", - "uuid": "7e85d590-ac91-0131-71cc-14109fdf0b37", - "version_uuid": "7e85daa0-ac91-0131-71cd-14109fdf0b37" - }, - { - "display_name": "Increase in Material and Installation Cost for Lighting per Floor Area (%).", - "machine_name": "increase_in_material_and_installation_cost_for_lighting_per_floor_area_(%).", - "name": "material_and_installation_cost", - "value": 150.0, - "value_type": "double", - "uuid": "7e85f380-ac91-0131-71cf-14109fdf0b37", - "version_uuid": "7e85f890-ac91-0131-71d0-14109fdf0b37" - }, - { - "display_name": "Increase in Demolition Costs for Lighting per Floor Area (%).", - "machine_name": "increase_in_demolition_costs_for_lighting_per_floor_area_(%).", - "name": "demolition_cost", - "value": 0.0, - "value_type": "double", - "uuid": "7e8600b0-ac91-0131-71d1-14109fdf0b37", - "version_uuid": "7e860840-ac91-0131-71d2-14109fdf0b37" - }, - { - "display_name": "Years Until Costs Start (whole years).", - "machine_name": "years_until_costs_start_(whole_years).", - "name": "years_until_costs_start", - "value": 0, - "value_type": "integer", - "uuid": "7e861210-ac91-0131-71d3-14109fdf0b37", - "version_uuid": "7e861770-ac91-0131-71d4-14109fdf0b37" - }, - { - "display_name": "Demolition Costs Occur During Initial Construction?", - "machine_name": "demolition_costs_occur_during_initial_construction?", - "name": "demo_cost_initial_const", - "value": false, - "value_type": "bool", - "uuid": "7e862020-ac91-0131-71d5-14109fdf0b37", - "version_uuid": "7e862570-ac91-0131-71d6-14109fdf0b37" - }, - { - "display_name": "Expected Life (whole years).", - "machine_name": "expected_life_(whole_years).", - "name": "expected_life", - "value": 15, - "value_type": "integer", - "uuid": "7e862da0-ac91-0131-71d7-14109fdf0b37", - "version_uuid": "7e8633d0-ac91-0131-71d8-14109fdf0b37" - }, - { - "display_name": "Increase O & M Costs for Lighting per Floor Area (%).", - "machine_name": "increase_o_&_m_costs_for_lighting_per_floor_area_(%).", - "name": "om_cost", - "value": 0.0, - "value_type": "double", - "uuid": "7e863c70-ac91-0131-71d9-14109fdf0b37", - "version_uuid": "7e8641f0-ac91-0131-71da-14109fdf0b37" - }, - { - "display_name": "O & M Frequency (whole years).", - "machine_name": "o_&_m_frequency_(whole_years).", - "name": "om_frequency", - "value": 1, - "value_type": "integer", - "uuid": "7e864a30-ac91-0131-71db-14109fdf0b37", - "version_uuid": "7e864f60-ac91-0131-71dc-14109fdf0b37" - } - ], - "bcl_measure_directory": "./measures/reduce_lighting_loads_by_percentage", - "measure_definition_directory_CHANGE_TO_ME": "./measures/reduce_lighting_loads_by_percentage", - "bcl_measure_class_name_ADDME": "ReduceLightingLoadsByPercentage", - "measure_definition_class_name_CHANGE_TO_ME": "ReduceLightingLoadsByPercentage", - "measure_definition_class_name": "ReduceLightingLoadsByPercentage", - "bcl_measure_uuid": "7e8567e0-ac91-0131-71c6-14109fdf0b37", - "measure_definition_uuid_CHANGE_TO_ME": "7e85adc0-ac91-0131-71c7-14109fdf0b37", - "bcl_measure_version_uuid": "7e85b8c0-ac91-0131-71c8-14109fdf0b37", - "measure_definition_version_uuid_CHANGE_TO_ME": "7e85bf40-ac91-0131-71c9-14109fdf0b37", - "measure_type": "RubyMeasure", - "name": "reduce_lighting_loads_by_percentage", - "display_name": "Reduce Lighting Loads by Percentage", - "uuid": "7e85c4c0-ac91-0131-71ca-14109fdf0b37", - "variables": [ - { - "argument": { - "display_name": "Lighting Power Reduction", - "machine_name": "lighting_power_reduction", - "name": "lighting_power_reduction_percent", - "uuid": "7e85e7f0-ac91-0131-71ce-14109fdf0b37", - "version_uuid": "b33cf6b0-f1aa-4706-afab-9470e6bd1912" - }, - "display_name": "Lighting Power Reduction", - "machine_name": "lighting_power_reduction", - "name": "lighting_power_reduction", - "minimum": 0.0, - "maximum": 70.0, - "units": "", - "value_type": "double", - "variable": true, - "relation_to_output": "", - "uncertainty_description": { - "attributes": [ - { - "name": "modes", - "value": 20.0 - }, - { - "name": "lower_bounds", - "value": 0.0 - }, - { - "name": "upper_bounds", - "value": 70.0 - }, - { - "name": "stddev", - "value": 11.666666666666666 - }, - { - "name": "delta_x", - "value": null - } - ], - "type": "triangle" - }, - "uuid": "d157d709-b83e-42bd-bd30-1bc3a7979672", - "variable_type": "RubyContinuousVariable", - "version_uuid": "26e7d8de-83e3-4a53-938b-45d3e0f29953" - } - ], - "version_uuid": "7e85ca10-ac91-0131-71cb-14109fdf0b37", - "workflow_index": 0, - "workflow_step_type": "Measure" - } - ], - "analysis_type": "lhs" - }, - "seed": { - "file_type": "OSM", - "path": "./seed/seed.osm" - }, - "weather_file": { - "file_type": "EPW", - "path": "./weather/USA_CO_Denver.Intl.AP.725650_TMY3.epw" - } - } -} \ No newline at end of file diff --git a/server/spec/files/simple_cont_example.zip b/server/spec/files/simple_cont_example.zip deleted file mode 100644 index 7db073d64..000000000 Binary files a/server/spec/files/simple_cont_example.zip and /dev/null differ diff --git a/server/spec/files/test_model/test_model.json b/server/spec/files/test_model/test_model.json index 9ed8ee560..b9e72fc74 100644 --- a/server/spec/files/test_model/test_model.json +++ b/server/spec/files/test_model/test_model.json @@ -322,7 +322,7 @@ "problem": { "analysis_type": "nsga_nrel", "algorithm": { - "number_of_samples": "all_variables", + "number_of_samples": 50, "generations": 2, "cprob": 0.85, "xoverdistidx": 5, diff --git a/server/spec/models/schema_validation_spec.rb b/server/spec/models/schema_validation_spec.rb new file mode 100644 index 000000000..d976b8ccd --- /dev/null +++ b/server/spec/models/schema_validation_spec.rb @@ -0,0 +1,85 @@ +# ******************************************************************************* +# OpenStudio(R), Copyright (c) 2008-2020, Alliance for Sustainable Energy, LLC. +# All rights reserved. +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# (1) Redistributions of source code must retain the above copyright notice, +# this list of conditions and the following disclaimer. +# +# (2) Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# +# (3) Neither the name of the copyright holder nor the names of any contributors +# may be used to endorse or promote products derived from this software without +# specific prior written permission from the respective party. +# +# (4) Other than as required in clauses (1) and (2), distributions in any form +# of modifications or other derivative works may not use the "OpenStudio" +# trademark, "OS", "os", or any other confusingly similar designation without +# specific prior written permission from Alliance for Sustainable Energy, LLC. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER, THE UNITED STATES +# GOVERNMENT, OR ANY CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, +# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT +# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR +# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF +# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING +# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +# EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +# ******************************************************************************* + +require 'rails_helper' +require 'json-schema' + +def get_osa(relative_path) + osa = nil + osa_path = File.expand_path("../../../#{relative_path}", __dir__) + + expect(File.exist?(osa_path)).to eq(true), "Could not find OSA file #{osa_path}" + File.open(osa_path) do |f| + osa = JSON.parse(f.read, symbolize_names: true) + end + expect(osa).to_not be_nil + + osa +end + +def validate_osa(path, schema) + osa = get_osa(path) + + puts "**** Checking validity of OSA: #{path} *****" + + errors = JSON::Validator.fully_validate(schema, osa) + expect(errors.empty?).to eq(true), "OSA '#{path}' is not valid, #{errors}" +end + +RSpec.describe 'OSA Schema' do + before :all do + @schema = nil + schema_path = File.expand_path('../../app/lib/analysis_library/schema/osa.json', __dir__) + expect(File.exist?(schema_path)).to be true + File.open(schema_path) do |f| + @schema = JSON.parse(f.read, symbolize_names: true) + end + expect(@schema).to_not be_nil + end + + it 'should be a valid osa file' do + # Make sure to use the copy of the spec/files/example_csv.json and da_measures.json as some + # of the tests run in Docker and the /spec folder is not mounted, only the /server is mounted. + [ + 'server/spec/files/batch_datapoints/example_csv.json', + 'server/spec/files/batch_datapoints/example_csv_with_scripts.json', + 'server/spec/files/batch_datapoints/the_project.json', + 'server/spec/files/jsons/sweep_smalloffice.json', + 'server/spec/files/jsons/copy_of_root_da_measures.json', + 'server/spec/files/jsons/copy_of_root_example_csv.json', + 'server/spec/files/test_model/test_model.json', + ].each { |f| validate_osa(f, @schema) } + end +end