You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
function (nfmu::ME_NeuralFMU)(x_start::Union{Array{<:Real}, Nothing}= nfmu.x0,
with a series of arguments. Some of these arguments redefine the values of the member variables of the nfmu, some don't.
This should be made consistent:
Variables which redefine member values are (everything fine here):
tSpan
x_Start
setup
reset
instantiate
freeInstance
terminate
tolerance
parameters <-fmu parameters
p <-net parameters
Variables which exist as member values but are not overwritten:
recordValues
solver <-is only pushed as args to the actual solve
saveat
sensealg <- that is only a member of the fmu, maybe overwrite only with a warning!?
PS: haven't checked CS-NeuralFMU.
The text was updated successfully, but these errors were encountered:
You can define a ME-NeuralFMU via
FMIFlux.jl/src/neural.jl
Line 87 in 77471fb
You can call the created nfmu
FMIFlux.jl/src/neural.jl
Line 1044 in 77471fb
This should be made consistent:
Variables which redefine member values are (everything fine here):
Variables which exist as member values but are not overwritten:
PS: haven't checked CS-NeuralFMU.
The text was updated successfully, but these errors were encountered: