-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* #523 Including fmi2Unit.xsd and suggesting integration with OspModelDescription * added osp namespace to fmi2Unit * #523 no need for all the decimals Co-authored-by: Martin Rindarøy <[email protected]>
- Loading branch information
Showing
3 changed files
with
145 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,28 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<OspModelDescription xmlns="http://opensimulationplatform.com/MSMI/OSPModelDescription"> | ||
<UnitDefinitions> | ||
<Unit name="force~N"> | ||
<BaseUnit kg="1" m="1" s="-2" A="0" K="0" mol="0" cd="0" rad="0" factor="1.0" offset="0.0"/> | ||
</Unit> | ||
<Unit name="velocity~m_s"> | ||
<BaseUnit kg="0" m="1" s="-1" A="0" K="0" mol="0" cd="0" rad="0" factor="1.0" offset="0.0"/> | ||
</Unit> | ||
</UnitDefinitions> | ||
<VariableGroups> | ||
<VariableGroup type="flow" name="velocity"> | ||
<Variable name="p_Crane.f[1]"/> | ||
<Variable name="p_Crane.f[2]"/> | ||
<Variable name="p_Crane.f[3]"/> | ||
<Variable name="p_Crane.f[1]" unit="velocity~m_s"/> | ||
<Variable name="p_Crane.f[2]" unit="velocity~m_s"/> | ||
<Variable name="p_Crane.f[3]" unit="velocity~m_s"/> | ||
</VariableGroup> | ||
<VariableGroup type="generic" name="actuatorLimits"> | ||
<Variable name="Act_Limits[1]"/> | ||
<Variable name="Act_Limits[2]"/> | ||
<Variable name="Act_Limits[3]"/> | ||
</VariableGroup> | ||
<VariableGroup type="effort" name="force"> | ||
<Variable name="p_Crane.e[1]"/> | ||
<Variable name="p_Crane.e[2]"/> | ||
<Variable name="p_Crane.e[3]"/> | ||
<Variable name="p_Crane.e[1]" unit="force~N"/> | ||
<Variable name="p_Crane.e[2]" unit="force~N"/> | ||
<Variable name="p_Crane.e[3]" unit="force~N"/> | ||
</VariableGroup> | ||
</VariableGroups> | ||
</OspModelDescription> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- edited with XMLSpy v2012 rel. 2 sp1 (http://www.altova.com) by Lieferanten Buchhaltung (Deutsches Zentrum für Luft- und Raumfahrt e. V.) --> | ||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified"> | ||
<xs:annotation> | ||
<xs:documentation> | ||
Copyright(c) 2008-2011 MODELISAR consortium, | ||
2012-2013 Modelica Association Project "FMI". | ||
All rights reserved. | ||
This file is licensed by the copyright holders under the BSD 2-Clause License | ||
(http://www.opensource.org/licenses/bsd-license.html): | ||
---------------------------------------------------------------------------- | ||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
- Redistributions of source code must retain the above copyright notice, | ||
this list of conditions and the following disclaimer. | ||
- Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
- Neither the name of the copyright holders nor the names of its | ||
contributors may be used to endorse or promote products derived | ||
from this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED | ||
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR | ||
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; | ||
OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, | ||
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR | ||
OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF | ||
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
---------------------------------------------------------------------------- | ||
|
||
with the extension: | ||
|
||
You may distribute or publicly perform any modification only under the | ||
terms of this license. | ||
(Note, this means that if you distribute a modified file, | ||
the modified file must also be provided under this license). | ||
</xs:documentation> | ||
</xs:annotation> | ||
<xs:complexType name="fmi2Unit"> | ||
<xs:annotation> | ||
<xs:documentation>Unit definition (with respect to SI base units) and default display units</xs:documentation> | ||
</xs:annotation> | ||
<xs:sequence> | ||
<xs:element name="BaseUnit" minOccurs="0"> | ||
<xs:annotation> | ||
<xs:documentation>BaseUnit_value = factor*Unit_value + offset</xs:documentation> | ||
</xs:annotation> | ||
<xs:complexType> | ||
<xs:attribute name="kg" type="xs:int" default="0"> | ||
<xs:annotation> | ||
<xs:documentation>Exponent of SI base unit "kg"</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="m" type="xs:int" default="0"> | ||
<xs:annotation> | ||
<xs:documentation>Exponent of SI base unit "m"</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="s" type="xs:int" default="0"> | ||
<xs:annotation> | ||
<xs:documentation>Exponent of SI base unit "s"</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="A" type="xs:int" default="0"> | ||
<xs:annotation> | ||
<xs:documentation>Exponent of SI base unit "A"</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="K" type="xs:int" default="0"> | ||
<xs:annotation> | ||
<xs:documentation>Exponent of SI base unit "K"</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="mol" type="xs:int" default="0"> | ||
<xs:annotation> | ||
<xs:documentation>Exponent of SI base unit "mol"</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="cd" type="xs:int" default="0"> | ||
<xs:annotation> | ||
<xs:documentation>Exponent of SI base unit "cd"</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="rad" type="xs:int" default="0"> | ||
<xs:annotation> | ||
<xs:documentation>Exponent of SI derived unit "rad"</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="factor" type="xs:double" default="1"/> | ||
<xs:attribute name="offset" type="xs:double" default="0"/> | ||
</xs:complexType> | ||
</xs:element> | ||
<xs:sequence minOccurs="0" maxOccurs="unbounded"> | ||
<xs:element name="DisplayUnit"> | ||
<xs:annotation> | ||
<xs:documentation>DisplayUnit_value = factor*Unit_value + offset</xs:documentation> | ||
</xs:annotation> | ||
<xs:complexType> | ||
<xs:attribute name="name" type="xs:normalizedString" use="required"> | ||
<xs:annotation> | ||
<xs:documentation>Name of DisplayUnit element, e.g. <Unit name="rad"/>, <DisplayUnit name="deg" factor="57.29..."/>. "name" must be unique with respect to all other "names" of the DisplayUnit definitions of the same Unit (different Unit elements may have the same DisplayUnit names).</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
<xs:attribute name="factor" type="xs:double" default="1"/> | ||
<xs:attribute name="offset" type="xs:double" default="0"/> | ||
</xs:complexType> | ||
</xs:element> | ||
</xs:sequence> | ||
</xs:sequence> | ||
<xs:attribute name="name" type="xs:normalizedString" use="required"> | ||
<xs:annotation> | ||
<xs:documentation>Name of Unit element, e.g. "N.m", "Nm", "%/s". "name" must be unique will respect to all other elements of the UnitDefinitions list. The variable values of fmi2SetXXX and fmi2GetXXX are with respect to this unit.</xs:documentation> | ||
</xs:annotation> | ||
</xs:attribute> | ||
</xs:complexType> | ||
</xs:schema> |