You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+22-1
Original file line number
Diff line number
Diff line change
@@ -3,5 +3,26 @@ bmi-csharp
3
3
4
4
Basic Model Interface for C#.
5
5
6
-
A simple API that can be used to run native simulation components which implement BMI interface [[https://github.com/openearth/bmi]]
6
+
A simple API that can be used to run native simulation components which implement BMI interface: [bmi.h](https://github.com/openearth/bmi/blob/master/models/include/bmi.h).
7
+
8
+
Provides
9
+
10
+
* C# version of the API: [IBasicModelInterface.cs](https://github.com/openearth/bmi-csharp/blob/master/src/BasicModelInterface/IBasicModelInterface.cs).
11
+
* Universal wrapper that can be used to load any native (C/C++/FORTRAN) BMI library: [BasicModelInterfaceLibrary.cs](https://github.com/openearth/bmi-csharp/blob/master/src/BasicModelInterface/BasicModelInterfaceLibrary.cs).
12
+
13
+
See [BasicModelInterfaceLibraryTest.cs](https://github.com/openearth/bmi-csharp/blob/master/src/BasicModelInterface.Tests/BasicModelInterfaceLibraryTest.cs) for examples on how to use it.
14
+
15
+
In general:
16
+
17
+
> var lib = new BasicModelInterfaceLibraryTest("native_library");
0 commit comments