Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
distaixweb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ACS
Public
Power System Simulation and Optimization
DistAIXFramework
distaixweb
Merge requests
!1
An error occurred while fetching the assigned milestone of the selected merge_request.
Dockerize distaixweb
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Dockerize distaixweb
dockerize-distaixweb
into
master
Overview
0
Commits
22
Pipelines
0
Changes
111
Merged
Sonja Happ
requested to merge
dockerize-distaixweb
into
master
3 years ago
Overview
0
Commits
22
Pipelines
0
Changes
111
Expand
See
#1 (closed)
Edited
3 years ago
by
Sonja Happ
0
0
Merge request reports
Compare
master
version 12
3f249096
3 years ago
version 11
637aa83e
3 years ago
version 10
0b0407b0
3 years ago
version 9
bdc689d8
3 years ago
version 8
50657a24
3 years ago
version 7
ef857621
3 years ago
version 6
65d97c25
3 years ago
version 5
60a3a426
3 years ago
version 4
32004509
3 years ago
version 3
a076f3aa
3 years ago
version 2
eedf3606
3 years ago
version 1
cb4123cd
3 years ago
master (base)
and
latest version
latest version
2a48d839
22 commits,
3 years ago
version 12
3f249096
19 commits,
3 years ago
version 11
637aa83e
17 commits,
3 years ago
version 10
0b0407b0
16 commits,
3 years ago
version 9
bdc689d8
14 commits,
3 years ago
version 8
50657a24
12 commits,
3 years ago
version 7
ef857621
11 commits,
3 years ago
version 6
65d97c25
10 commits,
3 years ago
version 5
60a3a426
9 commits,
3 years ago
version 4
32004509
8 commits,
3 years ago
version 3
a076f3aa
7 commits,
3 years ago
version 2
eedf3606
6 commits,
3 years ago
version 1
cb4123cd
5 commits,
3 years ago
111 files
+
5901
−
1224
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
111
Search (e.g. *.vue) (Ctrl+P)
backend/agents_proto_files/battery_agent.proto
0 → 100644
+
22
−
0
Options
syntax
=
"proto3"
;
option
go_package
=
"./agentsProtobuf"
;
message
BatteryResult
{
double
P_min
=
1
;
double
P_optimal
=
2
;
double
P_max
=
3
;
double
P
=
4
;
double
Q_min
=
5
;
double
Q_optimal
=
6
;
double
Q_max
=
7
;
double
Q
=
8
;
uint32
msg_sent
=
9
;
uint32
msg_received
=
10
;
uint32
swarm_size_p
=
11
;
uint32
swarm_size_q
=
12
;
double
v_meas
=
13
;
double
SOC_el
=
14
;
double
Eth
=
15
;
bool
connected
=
16
;
bool
used
=
17
;
}
Loading