Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Outline of pre test implementation presentation #3364

Open
wants to merge 6 commits into
base: MCP/0031
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
74 changes: 74 additions & 0 deletions RationaleMCP/0031/presentations/pre-test-impl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# Check before starting test implementation

Presentation to the Modelica Language Group to seek confirmation that it is meaningful to begin work on test implementations.


## Outline

### Introduction
- Activity start
- # of meetings
- # of PRs and/or commits
- mode of operation
- related publicly funded projects (EMPHYSIS, PHyMoS)
- Contributors

### Problem Statement
- complexity of the Modelica language
- compatibility issues
- tool dependent and incompatible flat Modelica outputs

### Solution approach
- Base Modelica
- <what is it?>

### Benefits
- Modelica Language Group perspective
- ...
- Tool vendor perspective
- ...
- End-user perspective
- ...

### Base Modelica Design Goals

### Base Modelica Key Features
- Get rid of the obviously irrelevant parts of the grammar
- Get rid of connect equations
- Get rid of conditional components
- Get rid of unbalanced if-equations
- Array dimensions [Henrik]
- Define allowed forms of type aliases
- Allowing array subscripting on general expressions
- Investigate need for final
- More explicit initialization
- Get rid of record member variability prefixes constant and parameter
- Base Modelica types are constant
- Simplify modifications
- Simplify record construction and function default arguments
- Figure out what to do with synchronous features
- Source locations pointing back to the original Modelica code

### Base Modelica Examples

### Base Modelica Open Issues

### Outlook
- Feedback from the Modelica Language Group
- Test implementations (<tool list>)
- Refactoring of the Modelica Specification


## Slide content

### Base Modelica Key Features: Array dimensions

References:
- [Array size](../differences.md#array-size)
- [`constsize`](differences.md#the-constsize-expression), [rationale](../constsize.md)

Main points:
- In an array type, each dimension has a size that is either _constant_ or _flexible_
- Component declarations outside functions may only specify constant array sizes
- The `constsize`-expression allows expressing constant assertions on array dimensions
- In an array equation, the array type must have constant sizes