-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refs #9: Renaming the ports from p,n to i,o
- Loading branch information
Showing
3 changed files
with
17 additions
and
15 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
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
within OpenHPL.Interfaces; | ||
partial model TwoContact "Model of two connectors" | ||
Contact p "Inlet contact" annotation ( | ||
Contact i "Inlet contact" annotation ( | ||
Placement(transformation(extent={{-110,-10},{-90,10}}))); | ||
Contact n "Outlet contact" annotation ( | ||
Contact o "Outlet contact" annotation ( | ||
Placement(transformation(extent={{90,-10},{110,10}}))); | ||
annotation ( | ||
Documentation(info = "<html> | ||
<p>TwoContact is a partial model, which consists of two Contacts <i>p </i>and <i>n</i>. Can be used in cases where model is needed inlet and outlet Contacts, but don't need any specification about mass flow rate and pressures between these Contacts.</p> | ||
<p>TwoContact is a partial model, which consists of two Contacts <i>i</i>and <i>o</i>. | ||
Can be used in cases where model is needed inlet and outlet Contacts, but do not need | ||
any specification about mass flow rate and pressures between these Contacts.</p> | ||
</html>")); | ||
end TwoContact; |