Budget

QUBIK RCS

Check the related issue https://gitlab.com/librespacefoundation/qubik/qubik-org/-/issues/18 for results.

Energy Harvesting Power Budget

By using a python script to calculate the power coefficient and finally the power production of a satellite.

Inputs:

# Put TLE
line1 = ('1 84001U          20001.00000000  .00000000  00000-0  50000-4 0 08')
line2 = ('2 84001  97.0000 156.0000 0001497   0.0000 124.0000 15.90816786 02')
satellite = twoline2rv(line1, line2, wgs72)
# Set the start day for simulation, Julian day
JD_ini = jday(2020, 4, 15, 8, 20, 0)
# Initialize parameters
total_time = 400  # in min
# Initialize angular velocities in rad/min
w_body = np.array([30.0, 10.0, 25.0])
# Initial angle conditions in deg
angle_body_curr = np.deg2rad([0.0, 0.0, 0.0])
# PV efficient in each side [xp, xm, yp, ym, zp, zm]
pv_eff = np.array([0.25, 0.25, 0.25, 0.25, 0.25, 0.25])
# Number of PV in each side [xp, xm, yp, ym, zp, zm]
pv_num = np.array([3.0, 3.0, 3.0, 3.0, 3.0, 3.0])
# Active area of each PV in mm^2, e.g. 45mmx15mm
pv_area = np.array([(45.0*15.0), (45.0*15.0), (45.0*15.0), (45.0*15.0),
                    (45.0*15.0), (45.0*15.0)])
# Solar irradiance (kW/m^2) in a specific orbit
si = 1.4

Note: solar cell is https://waf-e.dubudisk.com/anysolar.dubuplus.com/techsupport@anysolar.biz/O18Ae0B/DubuDisk/www/Gen3/SM141K04LV%20DATA%20SHEET%20202007.pdf

Results:

  1. Mean Power coefficient of each side, [Xp_m, Xm_m, Yp_m, Ym_m, Zp_m, Zm_m]: [0.16756193891221607, 0.17041088209246041, 0.19111270153573892, 0.19375282007969838, 0.15851510079365622, 0.15893245086986432]

  2. Total Mean Power coefficient, 1.0402858942836344

  3. Mean Power of each side in mW, [Xp_m, Xm_m, Yp_m, Ym_m, Zp_m, Zm_m]: [118.7595242 , 120.77871268, 135.45112721, 137.32231123, 112.34757769, 112.64337455]

  4. Total Mean Power in mW, 737.3026275735258

For 400 minutes or ~4 orbits

qubik-SM141K04LV

QUBIK Power Budget

Power Budget

TBD

Data Budget

TBD

Mass Budget

TBD

Pointing Budget

Not applicable to QUBIK satellite due to missing determination and control attitude system.