Skip to content

Instantly share code, notes, and snippets.

Created December 13, 2012 02:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4273587 to your computer and use it in GitHub Desktop.
Save anonymous/4273587 to your computer and use it in GitHub Desktop.
clc
clear
t = 35; %Hours until Landing
e_max = 25; %Energy
v_max = 60; %Voltage of Fuel Cells
cc = .12; %Navigation Power Factor
rc = 18; %Navigation Resistance
cl = [.005 .01 .015 ]; %Light Power Factor
rl = [1 2 3]; %Light Resistance
ch = [.1 .2 .3 .4]; %Capsule Heat Power Factor
rh = [12 24 36 48]; %Capsule Heat Resistance
ca = [.05 .1]; %Auxiliary Power Factor
ra = [.6 .12]; %Auxiliary Resistance
for count4 = 1:1:4;
for count3 = 1:1:3;
for count2 = 1:1:2;
x = count4;
y = count3;
z = count2;
test = fzero('Pa5_1eqn1',3);
end
end
end
function iavail = Pa5_1eqn1(ia)
%PA5_1EQN1 Summary of this function goes here
% Detailed explanation goes here
global cl ch cc ca t x y z;
iavail = ((t * ( cl(y)*ia^3 + ch(x)*ia^2 + cc*ia^2 + ca(z)))/25) - 1;
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment