Spacecraft Control Framework 1.0
Spacecraft Control Library
sc_motor.h
Go to the documentation of this file.
1/*
2 * sc_motor.h
3 *
4 * Programmer(s): Michael Paluszek
5 *
6 * Copyright (c) 2005, Princeton Satellite Systems. All rights reserved.
7 *
8 */
9
10
22#ifndef SC_MOTOR
23#define SC_MOTOR
24
25#ifdef AS_OS_WINDOWS
26#include "matrixlib.h"
27#else
28#include <MatrixLib/MatrixLib.h>
29#endif
30
32ml_matrix clarke_transformation_matrix( void );
34ml_matrix park_transformation_matrix( double theta_e );
36double angle_encoder( double angle, double max_counts );
37
38#endif
double angle_encoder(double angle, double max_counts)
Angle encoder.
Definition: sc_motor.cc:62
ml_matrix park_transformation_matrix(double theta_e)
Park transformation.
Definition: sc_motor.cc:40
ml_matrix clarke_transformation_matrix(void)
Clarke transformation.
Definition: sc_motor.cc:22