-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow using a CSV file to define currents for hydrodynamic system (#1839
) * Adds support for Hydrodynamic Current This PR adds support for looking up hydrodynamic currents from a data file via the new Environment component. This allows users to vary currents throughout the water column. Signed-off-by: Arjo Chakravarty <[email protected]> * Codecheck Signed-off-by: Arjo Chakravarty <[email protected]> * more style Signed-off-by: Arjo Chakravarty <[email protected]> * Address PR Feedback Signed-off-by: Arjo Chakravarty <[email protected]> * Fix a few more outstanding issues. Signed-off-by: Arjo Chakravarty <[email protected]> * Address second pass Signed-off-by: Arjo Chakravarty <[email protected]> * Final touches. Signed-off-by: Arjo Chakravarty <[email protected]> * Retrigger CI Signed-off-by: Arjo Chakravarty <[email protected]> * style Signed-off-by: Arjo Chakravarty <[email protected]> Signed-off-by: Arjo Chakravarty <[email protected]>
- Loading branch information
Showing
6 changed files
with
327 additions
and
17 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
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,17 @@ | ||
timestamp,x,y,z,current_x,current_y,current_z | ||
0,-20,-20, 20,1,0,0 | ||
0,20,-20, 20,1,0,0 | ||
0,-20,-20,-20,1,0,0 | ||
0,20,-20,-20,1,0,0 | ||
0,-20, 20, 20,1,0,0 | ||
0,20, 20, 20,1,0,0 | ||
0,-20, 20,-20,1,0,0 | ||
0,20, 20,-20,1,0,0 | ||
10000, 20,-20, 20,1,0,0 | ||
10000,-20,-20, 20,1,0,0 | ||
10000, 20,-20,-20,1,0,0 | ||
10000,-20,-20,-20,1,0,0 | ||
10000, 20, 20, 20,1,0,0 | ||
10000,-20, 20, 20,1,0,0 | ||
10000, 20, 20,-20,1,0,0 | ||
10000,-20, 20,-20,1,0,0 |
Oops, something went wrong.