feat: csv logger

This commit is contained in:
fan-ziqi 2024-04-08 19:53:12 +08:00
parent 909ab15728
commit 83ea8edddd
3 changed files with 23 additions and 9 deletions

1
.gitignore vendored
View File

@ -3,3 +3,4 @@ devel
logs
.catkin_tools
.vscode
*.csv

View File

@ -34,10 +34,10 @@ cyberdog1:
clip_actions: 100.0
# damping: 0.5
# stiffness: 20.0
p_gains: [30, 40, 50, # FL
30, 40, 50, # FR
30, 40, 50, # RL
30, 40, 50] # RR
p_gains: [20, 20, 20, # FL
20, 20, 20, # FR
20, 20, 20, # RL
20, 20, 20] # RR
d_gains: [0.5, 0.5, 0.5, # FL
0.5, 0.5, 0.5, # FR
0.5, 0.5, 0.5, # RL

View File

@ -2,7 +2,8 @@
#define ROBOT_NAME "cyberdog1"
#define PLOT
// #define PLOT
#define CSV_LOGGER
RL_Real rl_sar;
@ -37,6 +38,10 @@ RL_Real::RL_Real() : CustomInterface(500)
loop_plot->start();
#endif
_keyboardThread = std::thread(&RL_Real::run_keyboard, this);
#ifdef CSV_LOGGER
CSVInit(ROBOT_NAME);
#endif
}
RL_Real::~RL_Real()
@ -66,9 +71,9 @@ void RL_Real::RobotControl()
// cyberdogData.qd[9], cyberdogData.qd[10], cyberdogData.qd[11],
// cyberdogData.qd[6], cyberdogData.qd[7], cyberdogData.qd[8]);
std::cout << "robot_state" << keyboard.robot_state
<< " x" << keyboard.x << " y" << keyboard.y << " yaw" << keyboard.yaw
<< "\r";
// std::cout << "robot_state" << keyboard.robot_state
// << " x" << keyboard.x << " y" << keyboard.y << " yaw" << keyboard.yaw
// << "\r";
motiontime++;
@ -272,6 +277,14 @@ void RL_Real::RunModel()
output_torques = this->ComputeTorques(actions);
output_dof_pos = this->ComputePosition(actions);
#ifdef CSV_LOGGER
torch::Tensor tau_est = torch::tensor({{cyberdogData.tau[3], cyberdogData.tau[4], cyberdogData.tau[5],
cyberdogData.tau[0], cyberdogData.tau[1], cyberdogData.tau[2],
cyberdogData.tau[9], cyberdogData.tau[10], cyberdogData.tau[11],
cyberdogData.tau[6], cyberdogData.tau[7], cyberdogData.tau[8]}});
CSVLogger(output_torques, tau_est, this->obs.dof_pos, output_dof_pos, this->obs.dof_vel);
#endif
}
}