mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
fix typos in example configs
This commit is contained in:
parent
634d95362a
commit
cd0430d8f8
10 changed files with 18 additions and 18 deletions
|
@ -44,7 +44,7 @@ paths = (
|
|||
# fields:
|
||||
# - sequence The sequence number of the sample.
|
||||
# - flags The flags field of the sample.
|
||||
# - ts_origin The origin timesamp as a Lua table containing
|
||||
# - ts_origin The origin timestamp as a Lua table containing
|
||||
# the following keys:
|
||||
# 0: seconds
|
||||
# 1: nanoseconds
|
||||
|
@ -56,7 +56,7 @@ paths = (
|
|||
# numeric indices or the signal names depending
|
||||
# on the 'use_names' option of the hook.
|
||||
#
|
||||
# periodic() Called periodicalled with the rate of the global 'stats' option.
|
||||
# periodic() Called periodically with the rate of the global 'stats' option.
|
||||
script = "../lua/hooks/test.lua"
|
||||
|
||||
# Expression mode: We provide a mangled signal list including Lua expressions
|
||||
|
|
|
@ -16,14 +16,14 @@ paths = (
|
|||
sample_rate = 1000, # sample rate of the input signal
|
||||
dft_rate = 10, # number of phasors calculated per second
|
||||
|
||||
start_freqency = 49.7, # lowest freqyency bin
|
||||
end_freqency = 50.3, # highst freqyency bin
|
||||
frequency_resolution = 0.1, # freqyency bin resolution
|
||||
start_frequency = 49.7, # lowest frequency bin
|
||||
end_frequency = 50.3, # highest frequency bin
|
||||
frequency_resolution = 0.1, # frequency bin resolution
|
||||
|
||||
window_size_factor = 1, # a factor with which the window will be increased
|
||||
window_type = "hamming", # one of: flattop, hamming, hann
|
||||
padding_type = "zero", # one of: signal_repeat, zero
|
||||
ffrequency_estimate_type = "quadratic", # one of: quadratic
|
||||
frequency_estimate_type = "quadratic", # one of: quadratic
|
||||
|
||||
pps_index = 0, # signal index of the PPS signal
|
||||
|
||||
|
|
|
@ -10,11 +10,11 @@ nodes = {
|
|||
address = "127.0.0.1:12001" # This node only received messages on this IP:Port pair
|
||||
},
|
||||
out = {
|
||||
address = "127.0.0.1:12000", # This node sents outgoing messages to this IP:Port pair
|
||||
address = "127.0.0.1:12000", # This node sends outgoing messages to this IP:Port pair
|
||||
|
||||
netem = { # Network emulation settings
|
||||
enabled = true,
|
||||
# Those settings can be specified for each node invidually!
|
||||
# Those settings can be specified for each node individually!
|
||||
delay = 100000, # Additional latency in microseconds
|
||||
jitter = 30000, # Jitter in uS
|
||||
distribution = "normal", # Distribution of delay: uniform, normal, pareto, paretonormal
|
||||
|
|
|
@ -22,7 +22,7 @@ nodes = {
|
|||
verify_source = true # Check if source address of incoming packets matches the remote address.
|
||||
},
|
||||
out = {
|
||||
address = "127.0.0.1:12000", # This node sents outgoing messages to this IP:Port pair
|
||||
address = "127.0.0.1:12000", # This node sends outgoing messages to this IP:Port pair
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -70,7 +70,7 @@ nodes = {
|
|||
}
|
||||
},
|
||||
out = {
|
||||
address = "127.0.0.1:12000", # This node sents outgoing messages to this IP:Port pair
|
||||
address = "127.0.0.1:12000", # This node sends outgoing messages to this IP:Port pair
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,7 +5,7 @@ nodes = {
|
|||
|
||||
prefix = "test_rtt_%y-%m-%d_%H-%M-%S", # An optional prefix in the filename
|
||||
output = "./results", # The output directory for all results
|
||||
# The results of each test case will be written to a seperate file.
|
||||
# The results of each test case will be written to a separate file.
|
||||
format = "villas.human", # The output format of the result files.
|
||||
|
||||
cases = ( # The list of test cases
|
||||
|
@ -39,4 +39,4 @@ paths = (
|
|||
# }
|
||||
# )
|
||||
}
|
||||
)
|
||||
)
|
||||
|
|
|
@ -22,7 +22,7 @@ nodes = {
|
|||
"tcp://localhost:12444"
|
||||
]
|
||||
|
||||
filter = "ab184" # A prefix which is prepended to each send message.
|
||||
filter = "ab184" # A prefix which is pre-pended to each message.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
@include "lab10_nodes.conf"
|
||||
|
||||
paths = (
|
||||
# Each path dictionary corresponds to one way communnication
|
||||
# Each path dictionary corresponds to one way communication
|
||||
{
|
||||
in = [ "rpi-1" ],
|
||||
out = [ "rtds-1" ]
|
||||
|
|
|
@ -68,14 +68,14 @@ paths = (
|
|||
reverse = false,
|
||||
|
||||
# The mode of a path determines when the path is triggered
|
||||
# and forwarding samples to its destintation nodes.
|
||||
# and forwarding samples to its destination nodes.
|
||||
mode = "any",
|
||||
|
||||
# List of nodes which trigger the path
|
||||
mask = [ "rtds_gtnet1", "rtds_gtnet2" ],
|
||||
|
||||
hooks = (
|
||||
# We dont want to overload the WebBrowsers
|
||||
# We do not want to overload the WebBrowsers
|
||||
{
|
||||
type = "decimate",
|
||||
ratio = 10
|
||||
|
|
|
@ -34,7 +34,7 @@ paths = (
|
|||
out = [ "web_node1" ],
|
||||
|
||||
hooks = (
|
||||
# We dont want to overload the WebBrowsers
|
||||
# We do not want to overload the WebBrowsers
|
||||
{ type = "decimate", ratio = 2 }
|
||||
)
|
||||
},
|
||||
|
|
|
@ -30,7 +30,7 @@ paths = (
|
|||
priority = 1
|
||||
|
||||
# Hook specific parameters follow
|
||||
# [paramter1] = [value1]
|
||||
# [parameter1] = [value1]
|
||||
ratio = 2
|
||||
},
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue