Coder Social home page Coder Social logo

Comments (5)

tobolar avatar tobolar commented on July 21, 2024

Well, to my knowledge this is a short form of class (function) definition, as described in Modelica Specification 3.4, Section 4.5.1. Thus

class IDENT1 = IDENT2 class-modification;

is identical to

class IDENT1
extends IDENT2 class-modification;
end IDENT1;

from vehicleinterfaces.

harmanpa avatar harmanpa commented on July 21, 2024

Additionally section 7.3.2 (with anything in the Modelica specification you always need to cross-reference multiple sections!!) describes the "constraining-clause", for which the default is the declared type. Therefore for
replaceable function position = VehicleInterfaces.Roads.Interfaces.positionBase
the constraining-clause is VehicleInterfaces.Roads.Interfaces.positionBase.

A pattern that might be clearer would be to have default implementations of the functions and then explicitly declare the constraining-clause, as follows:
replaceable function position = VehicleInterfaces.Roads.positionDefault constrainedby VehicleInterfaces.Roads.Interfaces.positionBase

This would make checking of the model(s) easier as the declared functions wouldn't be partial.

from vehicleinterfaces.

tobolar avatar tobolar commented on July 21, 2024

This would require to define such "dummy" functions in Roads.Interfaces.Base or somewhere else. But the meaning of that functions would be ... well just a dummy.

from vehicleinterfaces.

harmanpa avatar harmanpa commented on July 21, 2024

Absolutely they would be just a dummy, it's just a question of what is clearer, sometimes it's good to have a dummy implementation to copy. But it's just a case of style.

from vehicleinterfaces.

tobolar avatar tobolar commented on July 21, 2024

OK, so question is rather how is a common solution of such an issue. Is there any similar case e.g. in Modelica Standard library?

If we go that way, the functions positionDefault, etc., could be defined for an ideal straight road. Thus, those functions would not necessarilly have to be replaced in a particular road model.
For example, functions circleNormal and circleFrictionCoefficient could be omited in Roads.CircleRoad.

But it doesn't mean I prefer this solution ;-)

from vehicleinterfaces.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.