-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from CliMA/bm/interface_renaming
Rename CplState Interface
- Loading branch information
Showing
6 changed files
with
48 additions
and
48 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,15 +1,15 @@ | ||
# Coupler Object | ||
|
||
The CouplerMachine defines a type ```CplState``` for a _container_ variable that holds information about the field | ||
values that are being used to couple between components. Components can use a ```put!``` operation to | ||
export a set of field values to a ```CplState``` variable. A ```get``` operation is used to retrieve | ||
values that are being used to couple between components. Components can use a ```coupler_put!``` operation to | ||
export a set of field values to a ```CplState``` variable. A ```coupler_get``` operation is used to retrieve | ||
a set field values from a ```CplState``` variable. | ||
|
||
## Coupler Object API | ||
|
||
```@docs | ||
CouplerMachine.CplState | ||
CouplerMachine.register_cpl_field! | ||
CouplerMachine.put! | ||
CouplerMachine.get | ||
CouplerMachine.coupler_register! | ||
CouplerMachine.coupler_put! | ||
CouplerMachine.coupler_get | ||
``` |
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
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