Skip to content

Commit

Permalink
Update output data and fix minor bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
namakshenas committed Apr 17, 2024
1 parent 99947e0 commit 9401f8f
Show file tree
Hide file tree
Showing 20 changed files with 318,793 additions and 349,965 deletions.
7 changes: 4 additions & 3 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,12 @@
dcc.Store("data_layout_c_row_a"),
dcc.Store("data_layout_c_row_b"),
dcc.Store("data_layout_c_row_c"),
dcc.Store("data_layout_d_row_a")
dcc.Store("data_layout_d_row_a"),
create_notification_progress(),
],
),
),
create_notification_progress(),

],
withGlobalStyles=True,
inherit=True,
Expand Down Expand Up @@ -104,4 +105,4 @@
clb_display_notif_progress.serve_clb_display_notif_stage_b(app)
clb_display_loading.serve_clb_display_loading(app)

app.run_server(debug=True)
app.run_server(debug=False)
4 changes: 2 additions & 2 deletions callbacks/clb_display_notif_progress.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def display_notification1(n_clicks):
title="First pass!",
id="simple-notify2",
action="show",
message="Engine passed the first step (inverse-model) successfully!",
message="Engine passed the inverse-model cache successfully!",
)


Expand All @@ -31,5 +31,5 @@ def display_notification2(n_clicks):
title="Second pass!",
id="simple-notify4",
action="show",
message="Engine fetched the final solution successfully!",
message="Engine fetched the final cache solution successfully!",
)
1 change: 0 additions & 1 deletion components/c_display_chart_group_out2.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from dash import html
from utils.fig_out_elec_price_forecast import serve_fig_out_elec_price_forecast
from utils.fig_out_solar_capture_price import serve_fig_out_solar_capture_price
from utils.fig_out_wind_capture_price import serve_fig_out_wind_capture_price
from utils.fig_out_capture_price import serve_fig_out_capture_price
from utils.fig_price_curve import serve_fig_price_curve
from controls.cl_json_parser import parse_json
Expand Down
Loading

0 comments on commit 9401f8f

Please sign in to comment.