Skip to content

Commit a8dc18f

Browse files
authored
Merge pull request #70 from open-simulation-platform/release/0.12.0
Release/0.12.0
2 parents 3a88f10 + dec7896 commit a8dc18f

15 files changed

Lines changed: 120 additions & 15 deletions

File tree

CONTRIBUTING.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,16 @@ will be included in this repository with guidelines once concluded.
2525
Workflow
2626
--------
2727
This repository uses the [gitflow](https://www.atlassian.com/git/tutorials/comparing-workflows/gitflow-workflow)
28-
workflow
28+
workflow. In short, it means the following:
29+
30+
**Branch types**
31+
* `master` - Only contains release commits.
32+
* `develop` - All development happens on this branch.
33+
* `feature` - Branches from `develop` and are merged back into `develop`.
34+
* `release` - Branches from `develop`. Final touches before releasing. When ready to release, merge into `master` and
35+
back into `develop`.
36+
* `hotfix` - Branches from `master`. When hotfix is ready, merge back into `master` for new hotfix release and into
37+
`develop`.
2938

3039

3140
Creating new releases

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Description
22
===========
3-
Supports version 1.0 of [OSP-IS](https://www.opensimulationplatform.com/assets/osp-is.pdf)
3+
Supports version 1.0 of [OSP-IS](https://opensimulationplatform.com/specification)
44

55
This is a java project consisting of a java library, and a command line interface tool to validate FMUs and simulation
66
configurations against OSP-IS.
@@ -46,4 +46,4 @@ $ cd osp-validator
4646
$ mvn clean package
4747
```
4848

49-
`<module-dir>/target` will contain the compiled artifacts.
49+
`<module-dir>/target` will contain the compiled artifacts.

osp-model-description/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<artifactId>osp-validator</artifactId>
1313
<groupId>com.opensimulationplatform</groupId>
14-
<version>0.11.0</version>
14+
<version>0.12.0</version>
1515
</parent>
1616
<modelVersion>4.0.0</modelVersion>
1717

osp-system-structure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<artifactId>osp-validator</artifactId>
1313
<groupId>com.opensimulationplatform</groupId>
14-
<version>0.11.0</version>
14+
<version>0.12.0</version>
1515
</parent>
1616
<modelVersion>4.0.0</modelVersion>
1717

osp-validator-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<artifactId>osp-validator</artifactId>
1313
<groupId>com.opensimulationplatform</groupId>
14-
<version>0.11.0</version>
14+
<version>0.12.0</version>
1515
</parent>
1616
<modelVersion>4.0.0</modelVersion>
1717

osp-validator-cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<parent>
1212
<artifactId>osp-validator</artifactId>
1313
<groupId>com.opensimulationplatform</groupId>
14-
<version>0.11.0</version>
14+
<version>0.12.0</version>
1515
</parent>
1616
<modelVersion>4.0.0</modelVersion>
1717

10.6 KB
Binary file not shown.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<OspModelDescription xmlns="https://open-simulation-platform.com/OspModelDescription/1.0.0" version="1.0">
3+
<VariableGroups>
4+
<Generic name="actuator_limits">
5+
<Variable ref="Act_Limits[1]"/>
6+
<Variable ref="Act_Limits[2]"/>
7+
<Variable ref="Act_Limits[3]"/>
8+
</Generic>
9+
<LinearMechanicalPort name="linear_mechanical_port">
10+
<Force name="force">
11+
<Variable ref="p_Crane.e[1]"/>
12+
<Variable ref="p_Crane.e[2]"/>
13+
<Variable ref="p_Crane.e[3]"/>
14+
</Force>
15+
<LinearVelocity name="linear_velocity">
16+
<Variable ref="p_Crane.f[1]"/>
17+
<Variable ref="p_Crane.f[2]"/>
18+
<Variable ref="p_Crane.f[3]"/>
19+
</LinearVelocity>
20+
</LinearMechanicalPort>
21+
</VariableGroups>
22+
</OspModelDescription>
Binary file not shown.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<OspModelDescription xmlns="https://open-simulation-platform.com/OspModelDescription/1.0.0" version="1.0">
3+
<UnitDefinitions>
4+
<Unit name="a">
5+
<BaseUnit kg="1"/>
6+
</Unit>
7+
<Unit name="b">
8+
<BaseUnit kg="2"/>
9+
</Unit>
10+
</UnitDefinitions>
11+
<VariableGroups>
12+
<Generic name="actuator_limits">
13+
<Variable ref="Act_Limits[1]"/>
14+
<Variable ref="Act_Limits[2]"/>
15+
<Variable ref="Act_Limits[3]"/>
16+
</Generic>
17+
<LinearMechanicalPort name="linear_mechanical_port">
18+
<Force name="force">
19+
<Variable ref="p_Crane.e[1]"/>
20+
<Variable ref="p_Crane.e[2]"/>
21+
<Variable ref="p_Crane.e[3]"/>
22+
</Force>
23+
<LinearVelocity name="linear_velocity">
24+
<Variable ref="p_Crane.f[1]"/>
25+
<Variable ref="p_Crane.f[2]"/>
26+
<Variable ref="p_Crane.f[3]"/>
27+
</LinearVelocity>
28+
</LinearMechanicalPort>
29+
</VariableGroups>
30+
</OspModelDescription>

0 commit comments

Comments
 (0)