VILLASframework / node

Connecting real-time power grid simulation equipment

Home Page:https://fein-aachen.org/projects/villas-node/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Failed to start node: file(file)

al3xa23 opened this issue · comments

Hi,

maybe it's just me, but I observe the following error: Failed to start node: file(file)

It seems that -1 is returned in

if (!f->stream_out)
    return -1;

I used the following configuration:

nodes = {
    file = {
	type = "file"
	uri = "logs/test.log"
	format = "csv"
    }
    siggen = {
		type = "signal"

		signal = ["sine"]
		values = 1
		limit = 10
		rate = 10
	}
}
paths = (
    {
        in = "siggen"
        out = "file"

        hooks = ( { type = "print" })
    }
)