Skip to content

Commit 6ef54ec

Browse files
committed
ups
1 parent 142e389 commit 6ef54ec

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

src/functions/rcsTools.jl

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,8 @@ xsign(u) = u < 0.0 ? -1.0 : 1.0
265265
# https://paradiso.media.mit.edu/papers/Paradiso_HighlyAdaptableSteering_SelectionProcedureForCombined-CMG_RCS-Spacecraft%20Control-R.pdf
266266
#
267267
# Author: F. Capolupo
268-
269-
function rcsAllocationSimplex(u, My, c=ones(size(My, 2)); maxIter=30)
268+
# function rcsAllocationSimplex(u, My, c=ones(size(My, 2)); maxIter=30)
269+
function rcsAllocationSimplex(u, My; maxIter=30)
270270
m, n = size(My) # m = number of dof, n = number of thrusters
271271
if all(u .== 0.0); return zeros(n); end
272272

@@ -279,11 +279,14 @@ function rcsAllocationSimplex(u, My, c=ones(size(My, 2)); maxIter=30)
279279
# end
280280

281281
# maxIter = 30#3m + 1 # was 3m + 10, but needed to heuristically increase a bit
282-
cs = 1e3*maximum(c)*ones(m) # [m x 1] Slack variables cost vector
282+
# cs = 1e3*maximum(c)*ones(m) # [OLD with c] [m x 1] Slack variables cost vector
283+
cs = 1e3*ones(m) # [m x 1] Slack variables cost vector
283284

284285
# Setup the initial solution
285286
E = -diagm(xsign.(u))*My # [m x n]
286-
∇z = c + E'*cs # [n x 1] Cost change when bringing in the base a thruster which is out of the basis (i.e., increasing Yn[i])
287+
# ∇z = c + E'*cs # [OLD with c] [n x 1] Cost change when bringing in the base a thruster which is out of the basis (i.e., increasing Yn[i])
288+
∇z = 1.0 .+ E'*cs # [n x 1] Cost change when bringing in the base a thruster which is out of the basis (i.e., increasing Yn[i])
289+
287290
iBase = Integer.(n+1:n+m) # [m x 1] Global indices (i.e., within the vector Y) of thrusters in the basis. Initial solution is y = s
288291
Yn = zeros(n + m) # [n+m x 1] Thrusters out of the basis, either at zero (Yn[i] = 0) or at max (Yn[i] = Ymax[i])
289292
yb = abs.(u) # [m x 1] Basis vector (i.e., y of the m thrusters that form the basis)

0 commit comments

Comments
 (0)