-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
101 enhc add ability to disable individual ldar sim outputs (#103)
* feat: Add ability to disable outputs Reason for change: This allows users to disable LDAR-Sim results that are not of interest. Resolution: Created flags under simulation settings outputs to allow users to disable the site_visits, leaks, sites, timeseries, plots and batch reporting outputs. Also modified LDAR-Sim running scripts so that if any of the sites, leaks or timeseries csv outputs are disabled, batch reporting will also be disabled. Effect(s) of change: Site visits, leaks, sites and timeseries csv's can now be disabled, along with plots and batch reporting functionality. Removed write_data and make_plots.
- Loading branch information
1 parent
d2ea41a
commit 5273638
Showing
64 changed files
with
626 additions
and
145,723 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
program_name: P_OGI | ||
parameter_level: program | ||
version: "3.0" | ||
version: "3.2" | ||
method_labels: | ||
- OGI |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
program_name: P_aircraft | ||
parameter_level: program | ||
version: "3.0" | ||
version: "3.2" | ||
method_labels: | ||
- aircraft | ||
- OGI_FU |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
program_name: P_aircraft_ex_sensor | ||
parameter_level: program | ||
version: "3.0" | ||
version: "3.2" | ||
method_labels: | ||
- aircraft_ex_sensor | ||
- OGI_FU |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
program_name: P_drone | ||
parameter_level: program | ||
version: "3.0" | ||
version: "3.2" | ||
method_labels: | ||
- drone | ||
- OGI_FU |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
program_name: P_none | ||
parameter_level: program | ||
version: "3.0" | ||
version: "3.2" | ||
method_labels: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
program_name: P_truck | ||
parameter_level: program | ||
version: "3.0" | ||
version: "3.2" | ||
method_labels: | ||
- truck | ||
- OGI_FU |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
parameter_level: simulation_settings | ||
version: "3.0" | ||
version: "3.2" | ||
pregenerate_leaks: True | ||
reference_program: P_OGI | ||
baseline_program: P_none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
version: "3.0" | ||
version: "3.2" | ||
parameter_level: "virtual_world" |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# ------------------------------------------------------------------------------ | ||
# Program: The LDAR Simulator (LDAR-Sim) | ||
# File: output_flag_mapping | ||
# Purpose: Variables mapping to the expected string for output flags, | ||
# making it easier to refactor output flags in the future | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the MIT License as published | ||
# by the Free Software Foundation, version 3. | ||
|
||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# MIT License for more details. | ||
|
||
# You should have received a copy of the MIT License | ||
# along with this program. If not, see <https://opensource.org/licenses/MIT>. | ||
# | ||
# ------------------------------------------------------------------------------ | ||
|
||
OUTPUTS = 'outputs' | ||
SITE_VISITS = 'site_visits' | ||
LEAKS = "leaks" | ||
SITES = "sites" | ||
TIMESERIES = "timeseries" | ||
PLOTS = "plots" | ||
BATCH_REPORTING = "batch_reporting" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.