Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Simonstrator
PeerfactSim.KOM
Commits
4d4d15f7
Commit
4d4d15f7
authored
Sep 11, 2018
by
Julian Zobel
Browse files
New phyType for UAV Wifi
parent
0390eb0b
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/de/tud/kom/p2psim/api/linklayer/mac/PhyType.java
View file @
4d4d15f7
...
...
@@ -78,7 +78,13 @@ public enum PhyType {
* 500us latency, 1kByte MTU
*/
BLUETOOTH
(
NetInterfaceName
.
BLUETOOTH
,
0.0
,
3
*
Rate
.
Mbit_s
,
500
*
Simulator
.
MICROSECOND_UNIT
,
1024
,
true
);
500
*
Simulator
.
MICROSECOND_UNIT
,
1024
,
true
),
/**
* WiFi for UAV communication
*/
WIFI_UAV_NET
(
NetInterfaceName
.
WIFI_UAV_NET
,
0.01
,
5
*
Rate
.
Mbit_s
,
500
*
Time
.
MICROSECOND
,
2334
,
true
);
private
double
defaultDropProbability
;
...
...
src/de/tud/kom/p2psim/impl/energy/components/ActuatorEnergyComponent.java
View file @
4d4d15f7
...
...
@@ -30,7 +30,7 @@ import de.tudarmstadt.maki.simonstrator.api.Time;
/**
* Energy component for actuaors, representing the electrical consumers of actuators.
* Energy component for actua
t
ors, representing the electrical consumers of actuators.
* This models several states, where energy is consumed differently.
*
* @author Julian Zobel
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment