This repository has been archived by the owner on Sep 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop-create-tools-folder' into develop
- Loading branch information
Showing
42 changed files
with
379,573 additions
and
87 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
See https://docs.gridlabd.us/. |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,12 @@ | ||
dist_pkgdata_DATA += tools/create_player.py | ||
dist_pkgdata_DATA += tools/create_poles.py | ||
dist_pkgdata_DATA += tools/eia_recs.py | ||
dist_pkgdata_DATA += tools/fit_filter.py | ||
dist_pkgdata_DATA += tools/gridlabd-editor.png | ||
dist_pkgdata_DATA += tools/gridlabd-editor.py | ||
dist_pkgdata_DATA += tools/insights.py | ||
dist_pkgdata_DATA += tools/market_data.py | ||
dist_pkgdata_DATA += tools/metar2glm.py | ||
dist_pkgdata_DATA += tools/noaa_forecast.py | ||
dist_pkgdata_DATA += tools/nsrdb_weather.py | ||
dist_pkgdata_DATA += tools/ucar_weather.py |
File renamed without changes.
File renamed without changes.
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,43 @@ | ||
// Example: create_player.glm | ||
// | ||
// Load a panel of hourly loads as a CSV player | ||
// | ||
|
||
#ifexist ../test_create_player.csv | ||
#define DIR=.. | ||
#endif | ||
|
||
#python -m create_player -i=${DIR:-.}/test_create_player.csv --stack -o=test_create_player_power_opt_ignore.csv -p=test_create_player_power_opt_ignore.glm -t=test | ||
|
||
class test | ||
{ | ||
double value; | ||
} | ||
|
||
module tape | ||
{ | ||
csv_header_type NONE; | ||
} | ||
|
||
object test | ||
{ | ||
name test; | ||
object recorder | ||
{ | ||
property "value"; | ||
file "test_create_player_out.csv"; | ||
}; | ||
} | ||
|
||
#include "test_create_player_power_opt_ignore.glm" | ||
|
||
clock | ||
{ | ||
timezone "PST+8PDT"; | ||
starttime ${test_create_player_startdate}; | ||
stoptime ${test_create_player_stopdate}; | ||
} | ||
|
||
#ifexist ../test_create_player_out.csv | ||
#on_exit 0 diff ../test_create_player_out.csv test_create_player_out.csv > gridlabd.diff | ||
#endif |
Oops, something went wrong.