mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
remove old RTSuperLab INL configs
This commit is contained in:
parent
1c0510d28a
commit
d1745ba2a9
44 changed files with 0 additions and 3717 deletions
|
@ -1,200 +0,0 @@
|
|||
# configuration file for the setup for integration testing: inl-csu-usc-nrel
|
||||
# Test with acs-rtds (nrel), acs-opal1 (csu), acs-opal2 (usc)
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds73, inl-rtds74, inl-rtds83
|
||||
# remote nodes: csu-villas, usc-villas, nrel-rtds
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 5.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
|
||||
# ss1-ss4 (inl-csu)
|
||||
inl-rtds84 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12084";
|
||||
remote = "141.221.118.84:12084";
|
||||
},
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
#remote = "10.10.15.1:12004"; # test with acs-opal
|
||||
},
|
||||
|
||||
|
||||
results-ss4 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/ss1ss4_inl-csu_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel)
|
||||
inl-rtds74 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12074";
|
||||
remote = "141.221.118.74:12074";
|
||||
},
|
||||
|
||||
#ss5 (in demo schematic)
|
||||
nrel-rtds = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12001"; #TODO: this should be changed to 12005, ask nrel
|
||||
remote = "192.174.56.96:12001";
|
||||
},
|
||||
|
||||
results-ss5 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/ss1ss5_inl-nrel_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc)
|
||||
inl-rtds83 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12083";
|
||||
remote = "141.221.118.83:12083";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
#we have to use two nodes and different ports for usc (some weird behavior of VPN/Firewall)
|
||||
inl-to-usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007"; #TODO: the idea is to use ports > 13000 for inl-web, take care to avoid conflict
|
||||
},
|
||||
|
||||
usc-to-inl-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
},
|
||||
|
||||
results-ss7 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/ss1ss7_inl-usc_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
#we introduce a path for each direction as later we need it for writing to a file
|
||||
|
||||
paths = (
|
||||
|
||||
# ss1-ss4 (inl-csu) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds84",
|
||||
out = ["csu-villas", "results-ss4"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "csu-villas",
|
||||
out = "inl-rtds84",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds74",
|
||||
out = ["nrel-rtds", "results-ss5"]
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "nrel-rtds",
|
||||
out = "inl-rtds74",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds83",
|
||||
out = ["inl-to-usc-villas", "results-ss7"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "usc-to-inl-villas",
|
||||
out = "inl-rtds83",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,255 +0,0 @@
|
|||
# configuration file for the setup for integration testing: inl-csu-usc-nrel
|
||||
# Test with acs-rtds (nrel), acs-opal1 (csu), acs-opal2 (usc)
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds73, inl-rtds74, inl-rtds83
|
||||
# remote nodes: csu-villas, usc-villas, nrel-rtds
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 5.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
# ss1-ss2 (inl-rwth)
|
||||
inl-rtds73 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12073";
|
||||
remote = "141.221.118.73:12073";
|
||||
},
|
||||
|
||||
#ss2 (in demo schematic)
|
||||
rwth-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12002";
|
||||
remote = "10.10.15.1:12002";
|
||||
},
|
||||
|
||||
results-ss2 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/IntegrationTesting_0825/ss1ss2_inl-csu_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss4 (inl-csu)
|
||||
inl-rtds84 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12084";
|
||||
remote = "141.221.118.84:12084";
|
||||
},
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
#remote = "10.10.15.1:12004"; # test with acs-opal
|
||||
},
|
||||
|
||||
|
||||
results-ss4 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/IntegrationTesting_0825/ss1ss4_inl-csu_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel)
|
||||
inl-rtds74 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12074";
|
||||
remote = "141.221.118.74:12074";
|
||||
},
|
||||
|
||||
#ss5 (in demo schematic)
|
||||
nrel-rtds = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12001"; #TODO: this should be changed to 12005, ask nrel
|
||||
remote = "192.174.56.96:12001";
|
||||
},
|
||||
|
||||
results-ss5 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/IntegrationTesting_0825/ss1ss5_inl-nrel_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc)
|
||||
inl-rtds83 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12083";
|
||||
remote = "141.221.118.83:12083";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
#we have to use two nodes and different ports for usc (some weird behavior of VPN/Firewall)
|
||||
inl-to-usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007"; #TODO: the idea is to use ports > 13000 for inl-web, take care to avoid conflict
|
||||
},
|
||||
|
||||
usc-to-inl-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
},
|
||||
|
||||
results-ss7 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/IntegrationTesting_0825/ss1ss7_inl-usc_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
#we introduce a path for each direction as later we need it for writing to a file
|
||||
|
||||
paths = (
|
||||
|
||||
|
||||
# ss1-ss2 (inl-rwth) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds73",
|
||||
out = ["rwth-villas", "results-ss2"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "rwth-villas",
|
||||
out = "inl-rtds73",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss4 (inl-csu) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds84",
|
||||
out = ["csu-villas", "results-ss4"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "csu-villas",
|
||||
out = "inl-rtds84",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds74",
|
||||
out = ["nrel-rtds", "results-ss5"]
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "nrel-rtds",
|
||||
out = "inl-rtds74",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds83",
|
||||
out = ["inl-to-usc-villas", "results-ss7"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "usc-to-inl-villas",
|
||||
out = "inl-rtds83",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,255 +0,0 @@
|
|||
# configuration file for the setup for integration testing: inl-csu-usc-nrel
|
||||
# Test with acs-rtds (nrel), acs-opal1 (csu), acs-opal2 (usc)
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds73, inl-rtds74, inl-rtds83
|
||||
# remote nodes: csu-villas, usc-villas, nrel-rtds
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 5.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
# ss1-ss2 (inl-rwth)
|
||||
inl-rtds73 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12073";
|
||||
remote = "141.221.118.73:12073";
|
||||
},
|
||||
|
||||
#ss2 (in demo schematic)
|
||||
rwth-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12002";
|
||||
remote = "10.10.15.1:12002";
|
||||
},
|
||||
|
||||
results-ss2 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/IntegrationTesting_0830/ss1ss2_inl-csu_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss4 (inl-csu)
|
||||
inl-rtds84 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12084";
|
||||
remote = "141.221.118.84:12084";
|
||||
},
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
#remote = "10.10.15.1:12004"; # test with acs-opal
|
||||
},
|
||||
|
||||
|
||||
results-ss4 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/IntegrationTesting_0830/ss1ss4_inl-csu_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel)
|
||||
inl-rtds83 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12083";
|
||||
remote = "141.221.118.83:12083";
|
||||
},
|
||||
|
||||
#ss5 (in demo schematic)
|
||||
nrel-rtds = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12005"; #TODO: this should be changed to 12005, ask nrel
|
||||
remote = "192.174.56.96:12005";
|
||||
},
|
||||
|
||||
|
||||
|
||||
results-ss5 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/IntegrationTesting_0830/ss1ss5_inl-nrel_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc)
|
||||
inl-rtds74 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12074";
|
||||
remote = "141.221.118.74:12074";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
#we have to use two nodes and different ports for usc (some weird behavior of VPN/Firewall)
|
||||
inl-to-usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007"; #TODO: the idea is to use ports > 13000 for inl-web, take care to avoid conflict
|
||||
},
|
||||
|
||||
usc-to-inl-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
},
|
||||
|
||||
results-ss7 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/IntegrationTesting_0830/ss1ss7_inl-usc_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
#we introduce a path for each direction as later we need it for writing to a file
|
||||
|
||||
paths = (
|
||||
|
||||
# ss1-ss2 (inl-rwth) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds73",
|
||||
out = ["rwth-villas", "results-ss2"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "rwth-villas",
|
||||
out = "inl-rtds73",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
# ss1-ss4 (inl-csu) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds84",
|
||||
out = ["csu-villas", "results-ss4"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "csu-villas",
|
||||
out = "inl-rtds84",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds83",
|
||||
out = ["nrel-rtds", "results-ss5"]
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "nrel-rtds",
|
||||
out = "inl-rtds83",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds74",
|
||||
out = ["inl-to-usc-villas", "results-ss7"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "usc-to-inl-villas",
|
||||
out = "inl-rtds74",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,171 +0,0 @@
|
|||
# configuration file for the setup for integration testing: inl-csu-usc-nrel
|
||||
# Test with acs-rtds (nrel), acs-opal1 (csu), acs-opal2 (usc)
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds73, inl-rtds74, inl-rtds83
|
||||
# remote nodes: csu-villas, usc-villas, nrel-rtds
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 5.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
|
||||
# ss1-ss4 (inl-csu)
|
||||
inl-rtds84 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12084";
|
||||
remote = "141.221.118.84:12084";
|
||||
},
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
#remote = "10.10.15.1:12004"; # test with acs-opal
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel)
|
||||
inl-rtds74 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12074";
|
||||
remote = "141.221.118.74:12074";
|
||||
},
|
||||
|
||||
#ss5 (in demo schematic)
|
||||
nrel-rtds = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12001"; #TODO: this should be changed to 12005, ask nrel
|
||||
remote = "192.174.56.96:12001";
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc)
|
||||
inl-rtds83 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12083";
|
||||
remote = "141.221.118.83:12083";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
#we have to use two nodes and different ports for usc (some weird behavior of VPN/Firewall)
|
||||
inl-to-usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007"; #TODO: the idea is to use ports > 13000 for inl-web, take care to avoid conflict
|
||||
},
|
||||
|
||||
usc-to-inl-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
#we introduce a path for each direction as later we need it for writing to a file
|
||||
|
||||
paths = (
|
||||
|
||||
# ss1-ss4 (inl-csu) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds84",
|
||||
out = "csu-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "csu-villas",
|
||||
out = "inl-rtds84",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds74",
|
||||
out = "nrel-rtds",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "nrel-rtds",
|
||||
out = "inl-rtds74",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds83",
|
||||
out = "inl-to-usc-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "usc-to-inl-villas",
|
||||
out = "inl-rtds83",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,215 +0,0 @@
|
|||
# configuration file for the setup for integration testing: inl-csu-usc-nrel
|
||||
# Test with acs-rtds (nrel), acs-opal1 (csu), acs-opal2 (usc)
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds73, inl-rtds74, inl-rtds83
|
||||
# remote nodes: csu-villas, usc-villas, nrel-rtds
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 5.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
# ss1-ss2 (inl-rwth)
|
||||
inl-rtds73 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12073";
|
||||
remote = "141.221.118.73:12073";
|
||||
},
|
||||
|
||||
#ss2 (in demo schematic)
|
||||
rwth-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12002";
|
||||
remote = "10.10.15.1:12002";
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss4 (inl-csu)
|
||||
inl-rtds84 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12084";
|
||||
remote = "141.221.118.84:12084";
|
||||
},
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
#remote = "10.10.15.1:12004"; # test with acs-opal
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel)
|
||||
inl-rtds74 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12074";
|
||||
remote = "141.221.118.74:12074";
|
||||
},
|
||||
|
||||
#ss5 (in demo schematic)
|
||||
nrel-rtds = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12001"; #TODO: this should be changed to 12005, ask nrel
|
||||
remote = "192.174.56.96:12001";
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc)
|
||||
inl-rtds83 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12083";
|
||||
remote = "141.221.118.83:12083";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
#we have to use two nodes and different ports for usc (some weird behavior of VPN/Firewall)
|
||||
inl-to-usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007"; #TODO: the idea is to use ports > 13000 for inl-web, take care to avoid conflict
|
||||
},
|
||||
|
||||
usc-to-inl-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
#we introduce a path for each direction as later we need it for writing to a file
|
||||
|
||||
paths = (
|
||||
|
||||
# ss1-ss2 (inl-rwth) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds73",
|
||||
out = "rwth-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "rwth-villas",
|
||||
out = "inl-rtds73",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
# ss1-ss4 (inl-csu) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds84",
|
||||
out = "csu-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "csu-villas",
|
||||
out = "inl-rtds84",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds74",
|
||||
out = "nrel-rtds",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "nrel-rtds",
|
||||
out = "inl-rtds74",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds83",
|
||||
out = "inl-to-usc-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "usc-to-inl-villas",
|
||||
out = "inl-rtds83",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,215 +0,0 @@
|
|||
# configuration file for the setup for integration testing: inl-csu-usc-nrel
|
||||
# Test with acs-rtds (nrel), acs-opal1 (csu), acs-opal2 (usc)
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds73, inl-rtds74, inl-rtds83
|
||||
# remote nodes: csu-villas, usc-villas, nrel-rtds
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 5.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
# ss1-ss2 (inl-rwth)
|
||||
inl-rtds73 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12073";
|
||||
remote = "141.221.118.73:12073";
|
||||
},
|
||||
|
||||
#ss2 (in demo schematic)
|
||||
rwth-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12002";
|
||||
remote = "10.10.15.1:12002";
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss4 (inl-csu)
|
||||
inl-rtds84 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12084";
|
||||
remote = "141.221.118.84:12084";
|
||||
},
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
#remote = "10.10.15.1:12004"; # test with acs-opal
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel)
|
||||
inl-rtds83 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12083";
|
||||
remote = "141.221.118.83:12083";
|
||||
},
|
||||
|
||||
#ss5 (in demo schematic)
|
||||
nrel-rtds = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12005"; #TODO: this should be changed to 12005, ask nrel
|
||||
remote = "192.174.56.96:12005";
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc)
|
||||
inl-rtds74 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12074";
|
||||
remote = "141.221.118.74:12074";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
#we have to use two nodes and different ports for usc (some weird behavior of VPN/Firewall)
|
||||
inl-to-usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007"; #TODO: the idea is to use ports > 13000 for inl-web, take care to avoid conflict
|
||||
},
|
||||
|
||||
usc-to-inl-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
#we introduce a path for each direction as later we need it for writing to a file
|
||||
|
||||
paths = (
|
||||
|
||||
# ss1-ss2 (inl-rwth) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds73",
|
||||
out = "rwth-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "rwth-villas",
|
||||
out = "inl-rtds73",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
# ss1-ss4 (inl-csu) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds84",
|
||||
out = "csu-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "csu-villas",
|
||||
out = "inl-rtds84",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds83",
|
||||
out = "nrel-rtds",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "nrel-rtds",
|
||||
out = "inl-rtds83",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds74",
|
||||
out = "inl-to-usc-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "usc-to-inl-villas",
|
||||
out = "inl-rtds74",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,171 +0,0 @@
|
|||
# configuration file for the setup for integration testing: inl-csu-usc-nrel
|
||||
# Test with acs-rtds (nrel), acs-opal1 (csu), acs-opal2 (usc)
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds73, inl-rtds74, inl-rtds83
|
||||
# remote nodes: csu-villas, usc-villas, nrel-rtds
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 5.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
|
||||
# ss1-ss4 (inl-csu)
|
||||
inl-rtds73 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12073";
|
||||
remote = "141.221.118.73:12073";
|
||||
},
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
#remote = "10.10.15.1:12004"; # test with acs-opal
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel)
|
||||
inl-rtds74 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12074";
|
||||
remote = "141.221.118.74:12074";
|
||||
},
|
||||
|
||||
#ss5 (in demo schematic)
|
||||
nrel-rtds = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12001"; #TODO: this should be changed to 12005, ask nrel
|
||||
remote = "192.174.56.96:12001";
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc)
|
||||
inl-rtds83 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12083";
|
||||
remote = "141.221.118.83:12083";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
#we have to use two nodes and different ports for usc (some weird behavior of VPN/Firewall)
|
||||
inl-to-usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007"; #TODO: the idea is to use ports > 13000 for inl-web, take care to avoid conflict
|
||||
},
|
||||
|
||||
usc-to-inl-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
#we introduce a path for each direction as later we need it for writing to a file
|
||||
|
||||
paths = (
|
||||
|
||||
# ss1-ss4 (inl-csu) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds73",
|
||||
out = "csu-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "csu-villas",
|
||||
out = "inl-rtds73",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds74",
|
||||
out = "nrel-rtds",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "nrel-rtds",
|
||||
out = "inl-rtds74",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds83",
|
||||
out = "inl-to-usc-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "usc-to-inl-villas",
|
||||
out = "inl-rtds83",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,171 +0,0 @@
|
|||
# configuration file for the setup for integration testing: inl-csu-usc-nrel
|
||||
# Test with acs-rtds (nrel), acs-opal1 (csu), acs-opal2 (usc)
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds73, inl-rtds74, inl-rtds83
|
||||
# remote nodes: csu-villas, usc-villas, nrel-rtds
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 5.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
|
||||
# ss1-ss4 (inl-csu)
|
||||
inl-rtds73 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12073";
|
||||
remote = "141.221.118.73:12073";
|
||||
},
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
#remote = "10.10.15.1:12004"; # test with acs-opal
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel)
|
||||
inl-rtds74 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12074";
|
||||
remote = "141.221.118.74:12074";
|
||||
},
|
||||
|
||||
#ss5 (in demo schematic)
|
||||
nrel-rtds = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12001"; #TODO: this should be changed to 12005, ask nrel
|
||||
remote = "192.174.56.96:12001";
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc)
|
||||
inl-rtds83 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12083";
|
||||
remote = "141.221.118.83:12083";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
#we have to use two nodes and different ports for usc (some weird behavior of VPN/Firewall)
|
||||
inl-to-usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007"; #TODO: the idea is to use ports > 13000 for inl-web, take care to avoid conflict
|
||||
},
|
||||
|
||||
usc-to-inl-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
#we introduce a path for each direction as later we need it for writing to a file
|
||||
|
||||
paths = (
|
||||
|
||||
# ss1-ss4 (inl-csu) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds73",
|
||||
out = "csu-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "csu-villas",
|
||||
out = "inl-rtds73",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds74",
|
||||
out = "nrel-rtds",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "nrel-rtds",
|
||||
out = "inl-rtds74",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds83",
|
||||
out = "inl-to-usc-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "usc-to-inl-villas",
|
||||
out = "inl-rtds83",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,200 +0,0 @@
|
|||
# configuration file for the setup for integration testing: inl-csu-usc-nrel
|
||||
# Test with acs-rtds (nrel), acs-opal1 (csu), acs-opal2 (usc)
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds73, inl-rtds74, inl-rtds83
|
||||
# remote nodes: csu-villas, usc-villas, nrel-rtds
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 5.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
|
||||
# ss1-ss4 (inl-csu)
|
||||
inl-rtds73 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12073";
|
||||
remote = "141.221.118.73:12073";
|
||||
},
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
#remote = "10.10.15.1:12004"; # test with acs-opal
|
||||
},
|
||||
|
||||
|
||||
results-ss4 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/ss1ss4_inl-csu_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel)
|
||||
inl-rtds74 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12074";
|
||||
remote = "141.221.118.74:12074";
|
||||
},
|
||||
|
||||
#ss5 (in demo schematic)
|
||||
nrel-rtds = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12001"; #TODO: this should be changed to 12005, ask nrel
|
||||
remote = "192.174.56.96:12001";
|
||||
},
|
||||
|
||||
results-ss5 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/ss1ss5_inl-nrel_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc)
|
||||
inl-rtds83 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12083";
|
||||
remote = "141.221.118.83:12083";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
#we have to use two nodes and different ports for usc (some weird behavior of VPN/Firewall)
|
||||
inl-to-usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007"; #TODO: the idea is to use ports > 13000 for inl-web, take care to avoid conflict
|
||||
},
|
||||
|
||||
usc-to-inl-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
},
|
||||
|
||||
results-ss7 = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/IntegrationTesting/ss1ss7_inl-usc_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
#we introduce a path for each direction as later we need it for writing to a file
|
||||
|
||||
paths = (
|
||||
|
||||
# ss1-ss4 (inl-csu) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds73",
|
||||
out = ["csu-villas", "results-ss4"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "csu-villas",
|
||||
out = "inl-rtds73",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds74",
|
||||
out = ["nrel-rtds", "results-ss5"]
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "nrel-rtds",
|
||||
out = "inl-rtds74",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
# ss1-ss7 (inl-usc) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds83",
|
||||
out = ["inl-to-usc-villas", "results-ss7"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "usc-to-inl-villas",
|
||||
out = "inl-rtds83",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,70 +0,0 @@
|
|||
# configuration file for the setup for integration testing: inl-csu-usc-nrel
|
||||
# Test with acs-rtds (nrel), acs-opal1 (csu), acs-opal2 (usc)
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds73, inl-rtds74, inl-rtds83
|
||||
# remote nodes: csu-villas, usc-villas, nrel-rtds
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 5.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel)
|
||||
inl-rtds74 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12074";
|
||||
remote = "141.221.118.74:12074";
|
||||
},
|
||||
|
||||
#ss5 (in demo schematic)
|
||||
nrel-rtds = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12001"; #TODO: this should be changed to 12005, ask nrel
|
||||
remote = "192.174.56.96:12001";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
#we introduce a path for each direction as later we need it for writing to a file
|
||||
|
||||
paths = (
|
||||
|
||||
# ss1-ss5 (inl-nrel) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds74",
|
||||
out = "nrel-rtds",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "nrel-rtds",
|
||||
out = "inl-rtds74",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,70 +0,0 @@
|
|||
# configuration file for the setup for integration testing: inl-csu-usc-nrel
|
||||
# Test with acs-rtds (nrel), acs-opal1 (csu), acs-opal2 (usc)
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds73, inl-rtds74, inl-rtds83
|
||||
# remote nodes: csu-villas, usc-villas, nrel-rtds
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 5.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
|
||||
# ss1-ss5 (inl-nrel)
|
||||
inl-rtds74 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12074";
|
||||
remote = "141.221.118.74:12074";
|
||||
},
|
||||
|
||||
#ss5 (in demo schematic)
|
||||
nrel-rtds = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12005"; #TODO: this should be changed to 12005, ask nrel
|
||||
remote = "192.174.56.96:12005";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
#we introduce a path for each direction as later we need it for writing to a file
|
||||
|
||||
paths = (
|
||||
|
||||
# ss1-ss5 (inl-nrel) co-simulation interface
|
||||
{
|
||||
in = "inl-rtds74",
|
||||
out = "nrel-rtds",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "nrel-rtds",
|
||||
out = "inl-rtds74",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,63 +0,0 @@
|
|||
# configuration file for co-simulation setup acs-inl: inl-rtds - inl-villas -- acs-villas - acs-rtds
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11
|
||||
# remote nodes: acs-villas
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 1.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds74 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12074";
|
||||
remote = "141.221.118.74:12074";
|
||||
}
|
||||
|
||||
|
||||
#ss2(in demo schematic)
|
||||
acs-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12002";
|
||||
remote = "10.10.15.1:12002";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds74",
|
||||
out = "acs-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "acs-villas",
|
||||
out = "inl-rtds74",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,73 +0,0 @@
|
|||
# configuration file for co-simulation setup acs-inl: inl-rtds - inl-villas -- acs-villas - acs-rtds
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11
|
||||
# remote nodes: acs-villas
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 0.1;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds11 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12011";
|
||||
remote = "141.221.118.74:12011";
|
||||
}
|
||||
|
||||
|
||||
#ss2(in demo schematic)
|
||||
acs-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12002";
|
||||
remote = "10.10.15.1:12002";
|
||||
},
|
||||
|
||||
|
||||
results = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/cosim_generic/acs-inl/test_rcrd/ssA_cosim_inl-acs_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
#flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds11",
|
||||
out = ["acs-villas", "results"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "acs-villas",
|
||||
out = "inl-rtds11",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,73 +0,0 @@
|
|||
# configuration file for co-simulation setup acs-inl: inl-rtds - inl-villas -- acs-villas - acs-rtds
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11
|
||||
# remote nodes: acs-villas
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 0.1;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds11 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12011";
|
||||
remote = "141.221.118.74:12011";
|
||||
}
|
||||
|
||||
|
||||
#ss2(in demo schematic)
|
||||
acs-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12002";
|
||||
remote = "10.10.15.1:12002";
|
||||
},
|
||||
|
||||
|
||||
results = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "tmp/rtsuperlab/acs-inl/test_rcrd/ssA_cosim_inl-acs_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
#flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds11",
|
||||
out = ["acs-villas", "results"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "acs-villas",
|
||||
out = "inl-rtds11",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,56 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds83
|
||||
# remote nodes: csu-villas
|
||||
# Test: rtds - VILLASnode - VILLASnode - opal
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
stats = 1.0;
|
||||
http = {enabled = false}
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds83 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12083";
|
||||
remote = "141.221.118.83:12083";
|
||||
},
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
}
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds83",
|
||||
out = "csu-villas"
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
},
|
||||
|
||||
{
|
||||
in = "csu-villas",
|
||||
out = "inl-rtds83",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
|
@ -1,68 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11
|
||||
# remote nodes: csu-villas
|
||||
# Test: rtds - VILLASnode - VILLASnode - opal
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
stats = 1.0;
|
||||
http = {enabled = false}
|
||||
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds83 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12083";
|
||||
remote = "141.221.118.83:12083";
|
||||
},
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
},
|
||||
|
||||
results = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/cosim_wscc_ssX/csu-inl/test1/ss1_cosim_inl-csu_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds83",
|
||||
out = ["csu-villas", "results"]
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
},
|
||||
|
||||
{
|
||||
in = "csu-villas",
|
||||
out = "inl-rtds83",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
|
@ -1,59 +0,0 @@
|
|||
# configuration file for co-simulation setup fsu-inl: inl-rtds - inl-villas -- fsu-villas - fsu-rtds
|
||||
#
|
||||
# host: fsu-villas
|
||||
# inl devices: fsu-rtds11
|
||||
# remote nodes: fsu-villas
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 0.1;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds11 = {
|
||||
#Card 3, Port 1
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12011";
|
||||
remote = "141.221.118.74:12011";
|
||||
}
|
||||
|
||||
#ss8 (in demo schematic)
|
||||
fsu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12008";
|
||||
remote = "10.146.64.3:12008";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds11",
|
||||
out = "fsu-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "fsu-villas",
|
||||
out = "inl-rtds11",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,68 +0,0 @@
|
|||
# configuration file for co-simulation setup fsu-inl: inl-rtds - inl-villas -- fsu-villas - fsu-rtds
|
||||
#
|
||||
# host: fsu-villas
|
||||
# inl devices: fsu-rtds11
|
||||
# remote nodes: fsu-villas
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 0.1;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds11 = {
|
||||
#Card 3, Port 1
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12011";
|
||||
remote = "141.221.118.74:12011";
|
||||
}
|
||||
|
||||
#ss8 (in demo schematic)
|
||||
fsu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12008";
|
||||
remote = "10.146.64.3:12008";
|
||||
},
|
||||
|
||||
results = {
|
||||
type = "file",
|
||||
out = {
|
||||
uri = "rtsuperlab/cosim_generic/fsu-inl/test2/ssA_cosim_inl-fsu_%Y%m%d_%H-%M-%S.csv", # start the file name with ssN (id of subsystem that DRTS in your labsimulates)
|
||||
flush = false,
|
||||
mode = "w+"
|
||||
}
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds11",
|
||||
out = ["fsu-villas", "results"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "fsu-villas",
|
||||
out = "inl-rtds11",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,64 +0,0 @@
|
|||
# configuration file for co-simulation setup acs-inl: inl-rtds - inl-villas -- acs-villas - acs-rtds
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11
|
||||
# remote nodes: nrel-rtds
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 1.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds74 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12011";
|
||||
remote = "141.221.118.74:12011";
|
||||
},
|
||||
|
||||
|
||||
#ss?(in demo schematic)
|
||||
nrel-rtds = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12001";
|
||||
remote = "192.174.56.96:12001";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds74",
|
||||
out = "nrel-rtds",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "nrel-rtds",
|
||||
out = "inl-rtds74",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,68 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# remote nodes:usc-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
http = {enabled = false};
|
||||
|
||||
stats = 1.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
|
||||
inl-rtds83 = {
|
||||
#Card 3, Port 1
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12083";
|
||||
remote = "141.221.118.83:12083";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
inl-to-usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007";
|
||||
},
|
||||
|
||||
usc-to-inl-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "usc-to-inl-villas",
|
||||
out = "inl-rtds83",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
},
|
||||
|
||||
{
|
||||
in = "inl-rtds83",
|
||||
out = "inl-to-usc-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
|
|
@ -1,65 +0,0 @@
|
|||
# configuration file for the setup for integration testing: inl-csu-usc-nrel
|
||||
# Test with acs-rtds (nrel), acs-opal1 (csu), acs-opal2 (usc)
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds73, inl-rtds74, inl-rtds83
|
||||
# remote nodes: csu-villas, usc-villas, nrel-rtds
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 1.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds73 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12073";
|
||||
remote = "141.221.118.74:12073";
|
||||
},
|
||||
|
||||
|
||||
inl-opal = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12099";
|
||||
remote = "141.221.118.109:12099"
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
paths = (
|
||||
|
||||
#inl-csu co-simulation interface
|
||||
{
|
||||
in = "inl-rtds73",
|
||||
out = "inl-opal",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "inl-opal",
|
||||
out = "inl-rtds73",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,61 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11, inl-rtds21
|
||||
# remote nodes: acs-villas, polito_villas, csu-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
stats = 0.1;
|
||||
|
||||
nodes = {
|
||||
|
||||
|
||||
inl-rtds12 = {
|
||||
#SKT 1.17
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12011";
|
||||
remote = "141.221.118.73:12011";
|
||||
},
|
||||
|
||||
|
||||
#ss3 (in demo schematic)
|
||||
polito-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12003";
|
||||
remote = "130.192.95.241:12003";
|
||||
}
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds12",
|
||||
out = "polito-villas",
|
||||
#reverse = true,
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
verbose = true,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
},
|
||||
|
||||
{
|
||||
in = "polito-villas",
|
||||
out = "inl-rtds12",
|
||||
#reverse = true,
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
verbose = true,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
|
@ -1,60 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11, inl-rtds21
|
||||
# remote nodes: acs-villas, polito_villas, csu-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
stats = 0.1;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds11 = {
|
||||
#SKT 1.18
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12011";
|
||||
remote = "141.221.118.74:12011";
|
||||
},
|
||||
|
||||
|
||||
#ss3 (in demo schematic)
|
||||
polito-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12003";
|
||||
remote = "130.192.95.241:12003";
|
||||
}
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds11",
|
||||
out = "polito-villas",
|
||||
#reverse = true,
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
verbose = true,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
},
|
||||
|
||||
{
|
||||
in = "polito-villas",
|
||||
out = "inl-rtds11",
|
||||
#reverse = true,
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
verbose = true,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
|
@ -1,38 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11, inl-rtds21
|
||||
# remote nodes: acs-villas, polito_villas, csu-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
stats = 0.1;
|
||||
|
||||
nodes = {
|
||||
|
||||
|
||||
inl-rtds12 = {
|
||||
#SKT 1.17
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12011";
|
||||
remote = "141.221.118.73:12011";
|
||||
}
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds12",
|
||||
out = "inl-rtds12",
|
||||
#reverse = true,
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
verbose = true,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
|
@ -1,36 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11, inl-rtds21
|
||||
# remote nodes: acs-villas, polito_villas, csu-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
stats = 0.1;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds11 = {
|
||||
#SKT 1.18
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12011";
|
||||
remote = "141.221.118.74:12011";
|
||||
}
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds11",
|
||||
out = "inl-rtds11",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
verbose = true,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
|
@ -1,48 +0,0 @@
|
|||
# configuration file
|
||||
#
|
||||
# host: inl-villas
|
||||
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 1.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds73 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12073";
|
||||
remote = "141.221.118.73:12073";
|
||||
},
|
||||
|
||||
|
||||
inl-web = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12022";
|
||||
remote = "141.221.118.94:12022";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds73",
|
||||
out = "inl-web",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,70 +0,0 @@
|
|||
# configuration file for co-simulation setup acs-inl: inl-rtds - inl-villas -- acs-villas - acs-rtds
|
||||
#
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11
|
||||
# remote nodes: acs-villas
|
||||
#
|
||||
|
||||
|
||||
############ nodes ############
|
||||
|
||||
stats = 1.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds11 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12011";
|
||||
remote = "141.221.118.74:12011";
|
||||
},
|
||||
|
||||
|
||||
inl-web = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12022";
|
||||
remote = "141.221.118.94:12022";
|
||||
},
|
||||
|
||||
#ss2(in demo schematic)
|
||||
acs-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12002";
|
||||
remote = "10.10.15.1:12002";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
|
||||
############ paths ############
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds11",
|
||||
out = ["acs-villas","inl-web"],
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
{
|
||||
in = "acs-villas",
|
||||
out = "inl-rtds11",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
|
@ -1,61 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# remote nodes:inl-opal
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
http = {enabled = false}
|
||||
|
||||
stats = 1.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-opal = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12109";
|
||||
remote = "141.221.118.109:12109";
|
||||
},
|
||||
|
||||
inl-picard160 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12160";
|
||||
remote = "141.221.118.160:5000";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-opal",
|
||||
out = "inl-picard160",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
},
|
||||
|
||||
|
||||
{
|
||||
in = "inl-picard160",
|
||||
out = "inl-opal",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# remote nodes:inl-opal
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
http = {enabled = false}
|
||||
|
||||
stats = 1.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
|
||||
inl-opal = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12109";
|
||||
remote = "141.221.118.109:12109";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-opal",
|
||||
out = "inl-opal",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
|
|
@ -1,52 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# remote nodes:usc-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
http = {enabled = false}
|
||||
|
||||
nodes = {
|
||||
|
||||
|
||||
inl-rtds11 = {
|
||||
#Card 3, Port 1
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:11000";
|
||||
remote = "141.221.118.160:5000";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
inl-to-usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007";
|
||||
},
|
||||
|
||||
usc-to-inl-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "usc-to-inl-villas",
|
||||
out = "inl-rtds11"
|
||||
},
|
||||
|
||||
{
|
||||
in = "inl-rtds11",
|
||||
out = "inl-to-usc-villas"
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
|
|
@ -1,33 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# remote nodes:csu-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
nodes = {
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "csu-villas",
|
||||
out = "csu-villas"
|
||||
#hooks = (
|
||||
# {
|
||||
# type = "print";
|
||||
# }
|
||||
#)
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# remote nodes:fsu-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
nodes = {
|
||||
|
||||
#ss8 (in demo schematic)
|
||||
fsu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12008";
|
||||
remote = "10.146.64.3:12008";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "fsu-villas",
|
||||
out = "fsu-villas"
|
||||
#hooks = (
|
||||
# {
|
||||
# type = "print";
|
||||
# }
|
||||
#)
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
|
|
@ -1,40 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# remote nodes: acs-villas, polito_villas, csu-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
nodes = {
|
||||
#ss2(in demo schematic)
|
||||
acs-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12002";
|
||||
remote = "10.10.15.1:12002";
|
||||
},
|
||||
|
||||
#ss3 (in demo schematic)
|
||||
polito-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12003";
|
||||
remote = "130.192.95.241:12003";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "polito-villas",
|
||||
out = "polito-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "print";
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
|
|
@ -1,23 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# loopback to GTNET-SKT
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds11 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12001";
|
||||
remote = "141.221.118.73:12001";
|
||||
}
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds11",
|
||||
out = "inl-rtds11"
|
||||
}
|
||||
);
|
|
@ -1,40 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# remote nodes:usc-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
nodes = {
|
||||
#ss2(in demo schematic)
|
||||
acs-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12002";
|
||||
remote = "10.10.15.1:12002";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "usc-villas",
|
||||
out = "usc-villas",
|
||||
hooks = (
|
||||
{
|
||||
type = "print";
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# remote nodes:usc-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
http = {enabled = false}
|
||||
|
||||
nodes = {
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
usc-villas1 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007";
|
||||
},
|
||||
|
||||
usc-villas2 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "usc-villas2",
|
||||
out = "usc-villas1"
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# remote nodes: acs-villas, polito_villas, usc-villas, fsu-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
nodes = {
|
||||
#ss2(in demo schematic)
|
||||
acs-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12002";
|
||||
remote = "10.10.15.1:12002";
|
||||
},
|
||||
|
||||
#ss3 (in demo schematic)
|
||||
polito-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12003";
|
||||
remote = "130.192.95.241:12003";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:12007";
|
||||
}
|
||||
|
||||
#ss8 (in demo schematic)
|
||||
fsu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12008";
|
||||
remote = "10.146.64.3:12008";
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -1,37 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# remote nodes:usc-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
http = {enabled = false}
|
||||
|
||||
nodes = {
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
inl-to-usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007";
|
||||
},
|
||||
|
||||
usc-to-inl-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "usc-to-inl-villas",
|
||||
out = "inl-to-usc-villas"
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
|
|
@ -1,67 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11, inl-rtds21
|
||||
# remote nodes: acs-villas, polito_villas, csu-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
stats = 0.1;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds11 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12008";
|
||||
remote = "141.221.118.73:12008";
|
||||
},
|
||||
|
||||
inl-rtds21 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12009";
|
||||
remote = "141.221.118.83:12009";
|
||||
},
|
||||
|
||||
#ss2(in demo schematic)
|
||||
acs-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
#header = "gtnet-skt";
|
||||
local = "141.221.118.93:12002";
|
||||
remote = "10.10.15.1:12002";
|
||||
}
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds21",
|
||||
out = "acs-villas",
|
||||
#reverse = true,
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
verbose = true,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
},
|
||||
|
||||
{
|
||||
in = "acs-villas",
|
||||
out = "inl-rtds21",
|
||||
#reverse = true,
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
verbose = true,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
|
@ -1,56 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11
|
||||
# remote nodes: csu-villas
|
||||
# Test: rtds - VILLASnode - VILLASnode - opal
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
stats = 1.0;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds11 = {
|
||||
#Card 3, Port 1
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12011";
|
||||
remote = "141.221.118.74:12011";
|
||||
},
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
}
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds11",
|
||||
out = "csu-villas"
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
},
|
||||
|
||||
{
|
||||
in = "csu-villas",
|
||||
out = "inl-rtds11",
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000
|
||||
#format = "json"
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
|
@ -1,58 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11, inl-rtds21
|
||||
# remote nodes: fsu-villas
|
||||
# Test: rtds - VILLASnode - VILLASnode - rtds
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
stats = 0.1;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds11 = {
|
||||
#Card 3, Port 1
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12001";
|
||||
remote = "141.221.118.74:12001";
|
||||
},
|
||||
|
||||
inl-rtds21 = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12002";
|
||||
remote = "141.221.118.83:12002";
|
||||
},
|
||||
|
||||
#ss8 (in demo schematic)
|
||||
fsu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12008";
|
||||
remote = "10.146.64.3:12008";
|
||||
}
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds11",
|
||||
out = "fsu-villas",
|
||||
reverse = true,
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
format = "json"
|
||||
}
|
||||
|
||||
# {
|
||||
# type="print";
|
||||
# }
|
||||
)
|
||||
}
|
||||
);
|
|
@ -1,52 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# remote nodes:usc-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
http = {enabled = false}
|
||||
|
||||
nodes = {
|
||||
|
||||
|
||||
inl-rtds11 = {
|
||||
#Card 3, Port 1
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12011";
|
||||
remote = "141.221.118.74:12011";
|
||||
},
|
||||
|
||||
#ss7 (in demo schematic)
|
||||
inl-to-usc-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12007";
|
||||
remote = "129.252.22.104:13007";
|
||||
},
|
||||
|
||||
usc-to-inl-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12077";
|
||||
remote = "129.252.22.104:13077";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "usc-to-inl-villas",
|
||||
out = "inl-rtds11"
|
||||
},
|
||||
|
||||
{
|
||||
in = "inl-rtds11",
|
||||
out = "inl-to-usc-villas"
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
|
|
@ -1,45 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# inl devices: inl-rtds11
|
||||
# remote nodes: csu-villas
|
||||
# Test: rtds - VILLASnode - VILLASnode - opal
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
stats = 0.1;
|
||||
|
||||
nodes = {
|
||||
|
||||
inl-rtds11 = {
|
||||
#Card 3, Port 1
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12001";
|
||||
remote = "141.221.118.74:12001";
|
||||
},
|
||||
|
||||
#ss4 (in demo schematic)
|
||||
csu-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12004";
|
||||
remote = "129.82.106.227:12004";
|
||||
}
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "inl-rtds11",
|
||||
out = "csu-villas",
|
||||
reverse = true,
|
||||
hooks = (
|
||||
{
|
||||
type = "stats",
|
||||
warmup = 3000,
|
||||
format = "json"
|
||||
}
|
||||
)
|
||||
}
|
||||
);
|
|
@ -1,37 +0,0 @@
|
|||
# configuration file
|
||||
# host: inl-villas
|
||||
# remote nodes: acs-villas, polito_villas, csu-villas
|
||||
#
|
||||
#
|
||||
############ nodes ############
|
||||
|
||||
nodes = {
|
||||
|
||||
#ss3 (in demo schematic)
|
||||
polito-villas = {
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
local = "141.221.118.93:12003";
|
||||
remote = "130.192.95.241:12003";
|
||||
},
|
||||
|
||||
inl-rtds11 = {
|
||||
#Card 3, Port 1
|
||||
type = "socket";
|
||||
layer = "udp";
|
||||
header = "gtnet-skt";
|
||||
local = "141.221.118.93:12011";
|
||||
remote = "141.221.118.74:12011";
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
paths = (
|
||||
{
|
||||
in = "polito-villas",
|
||||
out = "inl-rtds11"
|
||||
}
|
||||
);
|
||||
|
||||
|
||||
|
Loading…
Add table
Reference in a new issue