Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

1
  • 2
    Beware. You just turned off the error message. There is a reason why @mutable was not in the NED file. The reason is that the underlying LinearMobility code does NOT handle the parameter change events. So you can change now the parameter value, but that will not change the behavior of the model at all. Parameters may be changed during runtime only if: - they are declared volatile and the underlying c++ code does not cache them (i.e. they are always acessed using par("name") - there is a properly written handleParameterChange() method that deals with any parameter change during runtime. Commented Nov 7, 2024 at 19:24