Spacecraft Control Framework 1.0
Spacecraft Control Library
sc_power.h
Go to the documentation of this file.
1/*
2 * sc_power.h
3 *
4 * Programmer(s): Michael Paluszek
5 *
6 * Copyright (c) 2011, Princeton Satellite Systems. All rights reserved.
7 *
8 */
9
10
17#ifndef SC_POWER
18#define SC_POWER
19
20#ifdef AS_OS_WINDOWS
21#include "matrixlib.h"
22#else
23#include <MatrixLib/MatrixLib.h>
24#endif
25
27double discharge_rate_from_c( double c, double b, double v);
29double power_from_iv( double i, double v );
30
31
32#endif
double power_from_iv(double i, double v)
Power from current and voltage.
Definition: sc_power.cc:36
double discharge_rate_from_c(double c, double b, double v)
Discharge rate.
Definition: sc_power.cc:23