1 2 3 4 5 6 7 8
within MyLib.Examples; model SimpleModel "A simple test model" import MyLib.Functions.double; Real x(start = 1.0); equation der(x) = double(x); end SimpleModel;