-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add incwaveheight service message Signed-off-by: Michael Anderson <[email protected]> * add latent data message and tweak incwaveheight Signed-off-by: Michael Anderson <[email protected]> * added spring and pto (still need a couple pto losses) Signed-off-by: Michael Anderson <[email protected]> * add force to ehpto msg Signed-off-by: Michael Anderson <[email protected]> * added forces from piston friction and wavebodyinteractions Signed-off-by: Michael Anderson <[email protected]> * add a couple fields Signed-off-by: Michael Anderson <[email protected]> * Added Shaft Mechanical Power to Latent Data * Added additional loss terms to electrohydraulic loss terms * Added fields * Adjusted fields * Add wave body total power to latent data (#57) * added wave_body total forces Signed-off-by: Michael Anderson <[email protected]> * added buoy pose and twist to latent data Signed-off-by: Michael Anderson <[email protected]> --------- Signed-off-by: Michael Anderson <[email protected]> --------- Signed-off-by: Michael Anderson <[email protected]> Co-authored-by: Andrew Hamilton <[email protected]> Co-authored-by: Andrew Hamilton <[email protected]>
- Loading branch information
1 parent
d7ec045
commit 9cfbfff
Showing
5 changed files
with
49 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
float64 force # Newtons | ||
float64 temperature # K | ||
float64 heat_loss # dQ/dt in Watts | ||
float64 piston_position # meters | ||
float64 piston_velocity # m/s | ||
float64 mass # kg |
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 @@ | ||
float64 rpm | ||
float64 upper_hydraulic_pressure # Pa | ||
float64 lower_hydraulic_pressure # Pa | ||
float64 force # Newtons | ||
|
||
float64 supplied_hydraulic_power # Watts | ||
|
||
float64 hydraulic_motor_loss | ||
float64 relief_valve_loss | ||
float64 shaft_mech_power # Watts | ||
|
||
float64 motor_drive_i2r_loss | ||
float64 motor_drive_switching_loss | ||
float64 motor_drive_friction_loss | ||
float64 load_dump_power | ||
float64 battery_i2r_loss | ||
float64 battery_storage_power |
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,14 @@ | ||
|
||
# Motion | ||
geometry_msgs/Pose pose # position/orientation | ||
geometry_msgs/Twist twist # linear/angular rates | ||
|
||
# Forces/Torques | ||
geometry_msgs/Wrench buoyancy | ||
geometry_msgs/Wrench radiation | ||
geometry_msgs/Wrench excitation | ||
|
||
# Total power = dot(force, velocity) + dot(torque, omega) | ||
float64 buoyancy_total_power # Watts | ||
float64 radiation_total_power # Watts | ||
float64 excitation_total_power # Watts |