Filip Jorissen

Results 41 comments of Filip Jorissen

Also in https://travis-ci.org/ibpsa/modelica-ibpsa/jobs/389811782 for https://github.com/ibpsa/modelica-ibpsa/pull/945 BuildingsPy seems to sort the files such that constants are below functions. Constants are stored in the package.mo file while the functions are stored in...

In https://travis-ci.org/ibpsa/modelica-ibpsa/jobs/390042950 BuildingsPy asks to move `Internal` again. It thus seems that BuildingsPy orders the files differently depending on whether the files are saved as directories or as a package?

@mwetter I'm not sure whether there is anything else I have to do for this pull request?

Possibly these results are caused by not having a lot of states in the model, due to which the integrator can easily satisfy its tolerance criterion even when taking too...

Note that euler does Not even use the tolerance setting, only the fixed time step size. So changing it should indeed not affect results. Lsodar > CVode > dassl >...

@MichaMans Is this a very simple example? I.e. just a pipe and a data reader? In such cases there is so little dynamics (state variables) that the error control on...

Okay, thanks for the feedback! I'll leave this open for now since it seems like a valid feature.

It works when _manually_ calling netcat. I.e. I get the following result: ```bash $ echo "hex 08b5110101" | nc localhost 8888 0934330080ffff0000ff ^C $ ebusctl hex 08b5110101 0934330080ffff0000ff ``` Or...

Edit: also netcat seems to return an empty result occasionally. I used the following command. ``` echo hex | nc localhost 8888 -N ```

workaround in case you didn't figure this out yet: ``` f = cas.if_else( x > 0, max(x,0) ** 0.5, 0 ) ```