Closed padmassun closed 7 years ago
Modify the cli-spreadsheet.rb's simulations.json file generation algorithm to add measures' arguments information
EDIT: July-07 completed
Add Feature: Output a csv file instead of a .log file for error logging
EDIT: DONE July-06-2017
From now on the simulations.json and qaqc.json file will have a is_baseline
key (Default value set to false)
I will be adding a new options switch to specify whether the current run is a baseline.
-b
or --baseline
is_baseline
to true for qaqc.json and simulations.json file.TODO: modify btap_results_extractor to include the is_baseline
key for the qaqc and simulations json file.
EDIT: Also change the folder structure of btap_results_extracter to be consistent with the necb-analysis-spreadsheet
Added baseline switch and changed folder structure https://github.com/canmet-energy/necb-analysis-spreadsheet/commit/e2720f77ad0b31f0e5aaf8847a749189e1ee407
Added ECM data to qaqc and simulations.json file https://github.com/canmet-energy/necb-analysis-spreadsheet/commit/d89a5a4bb11ca7ea140ba20e856cde948b4fb549
There seems to be an issue with long file names, and windows not recognizing the filepath.
I will try to run this from a linux system and see If I encounter this error.
The linux system also had this issue.
The main cause of this issue was due to threading process from the parallel gem. After the threads has been changed to processes this problem was not encountered again.
Parallel.map(comp_datapoint_list, in_threads: 20) { |dp|
was changed to
processess = Parallel::processor_count
Parallel.map(comp_datapoint_list, in_processes: processess) { |dp|
There was no more errors encountered. The simulations runs fine.
Will be adding an index file which
This file will be used to optimize the parallel coordinates plot #256
Currently the cities and the building types are generated using the config file. Additionaly, each time the user regenerates the plot, the whole simulations.json file is iterated to find the information based on uuid, building_type and cities. This slows down the page...
Completed
Padmassun:
Need to correct output folder structurecomplete July-06Add commentscomplete July-07Modify btap_results_extractor to include theEliminate the use of btap_results_extractor July-10is_baseline
key for the qaqc and simulations json file.Also change the folder structure of btap_results_extracter to be consistent with the necb-analysis-spreadsheetEliminate the use of btap_results_extractor July-10Source: https://github.com/canmet-energy/necb-analysis-spreadsheet