#include #include "Propagator.h" #include "sim/RK4Solver.h" #include "model/Rocket.h" #include "utils/Logger.h" #include "QtRocket.h" #include #include #include namespace sim { Propagator::Propagator(Rocket* r) : integrator(), rocket(r), qtrocket(QtRocket::getInstance()) { // This is a little strange, but I have to populate the integrator unique_ptr // with reset. make_unique() doesn't work because the compiler can't seem to // deduce the template parameters correctly, and I don't want to specify them // manually either. RK4Solver constructor is perfectly capable of deducing it's // template types, and it derives from DESolver, so we can just reset the unique_ptr // and pass it a freshly allocated RK4Solver pointer // The state vector has components of the form: (x, y, z, xdot, ydot, zdot) integrator.reset(new RK4Solver( /* dx/dt */ [](double, const std::vector& s) -> double {return s[3]; }, /* dy/dt */ [](double, const std::vector& s) -> double {return s[4]; }, /* dz/dt */ [](double, const std::vector& s) -> double {return s[5]; }, /* dvx/dt */ [this](double, const std::vector& ) -> double { return getForceX() / getMass(); }, /* dvy/dt */ [this](double, const std::vector& ) -> double { return getForceY() / getMass(); }, /* dvz/dt */ [this](double, const std::vector& ) -> double { return getForceZ() / getMass(); })); integrator->setTimeStep(timeStep); saveStates = true; } Propagator::~Propagator() { } void Propagator::runUntilTerminate() { std::chrono::steady_clock::time_point startTime = std::chrono::steady_clock::now(); std::chrono::steady_clock::time_point endTime; std::size_t j = 0; while(true && j < 100000) { // nextState gets overwritten integrator->step(currentTime, currentState, tempRes); /* std::size_t size = currentState.size(); for(size_t i = 0; i < size; ++i) { currentState[i] = tempRes[i]; tempRes[i] = 0; } */ std::swap(currentState, tempRes); if(saveStates) { states.push_back(currentState); } if(currentState[2] < 0.0) break; j++; currentTime += timeStep; } endTime = std::chrono::steady_clock::now(); std::stringstream duration; duration << "runUntilTerminate time (microseconds): "; duration << std::chrono::duration_cast(endTime - startTime).count(); utils::Logger::getInstance()->debug(duration.str()); } double Propagator::getMass() { return rocket->getMass(); } double Propagator::getForceX() { return -1.225 / 2.0 * 0.008107 * rocket->getDragCoefficient() * currentState[3]* currentState[3]; } double Propagator::getForceY() { return -1.225 / 2.0 * 0.008107 * rocket->getDragCoefficient() * currentState[4]* currentState[4]; } double Propagator::getForceZ() { double gravity = std::get<2>(qtrocket->getGravityModel()->getAccel(currentState[0], currentState[1], currentState[2])); double airDrag = -1.225 / 2.0 * 0.008107 * rocket->getDragCoefficient() * currentState[5]* currentState[5]; return gravity + airDrag; } double Propagator::getTorqueP() { return 0.0; } double Propagator::getTorqueQ() { return 0.0; } double Propagator::getTorqueR() { return 0.0; } } // namespace sim