Skip to content

File Force.hpp

File List > astrea > astro > astro > propagation > force_models > Force.hpp

Go to the documentation of this file

#pragma once

#include <units/units.hpp>

#include <astro/astro.fwd.hpp>
#include <astro/frames/frames.hpp>

namespace astrea {
namespace astro {

class Force {
  public:
    Force() = default;

    virtual ~Force() = default;

    virtual CartesianVector<Acceleration, frames::earth::icrf> compute_force(const State& state, const Vehicle& vehicle) const = 0;
};

} // namespace astro
} // namespace astrea