mirror of
https://gitlab.com/lander-team/lander-cpp.git
synced 2025-07-24 23:21:29 +00:00
started debugging
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
#define OUTVECTOR_H
|
||||
|
||||
struct outVector {
|
||||
int length = 10000; // current sim runs ~5000 steps, x2 just in case
|
||||
int length = 100000; // current sim runs ~5000 steps, x2 just in case
|
||||
|
||||
std::vector<double> x = std::vector<double>(length, 0.0);
|
||||
std::vector<double> y = std::vector<double>(length, 0.0);
|
||||
@@ -33,6 +33,8 @@ struct outVector {
|
||||
|
||||
std::vector<double> LQRx = std::vector<double>(length, 0.0);
|
||||
std::vector<double> LQRy = std::vector<double>(length, 0.0);
|
||||
|
||||
std::vector<double> thrust = std::vector<double>(length, 0.0);
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user