added mission stage params
This commit is contained in:
parent
625d1b7b18
commit
9c75dd0c20
@ -17,26 +17,45 @@ SAVE = ~true;
|
|||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
|
|
||||||
ITERATIONS = 5;
|
ITERATIONS = 5;
|
||||||
|
% SIMULATION_DAYS = 1; % days
|
||||||
|
|
||||||
CELL_TOTAL = 159201; % from battery script
|
CELL_TOTAL = 159201; % from battery script
|
||||||
% CELL_TOTAL = 500000;
|
% CELL_TOTAL = 500000;
|
||||||
|
|
||||||
MIN_P_IN = 0; % W, max power from fuel cells
|
MIN_P_IN = 0; % W, max power from fuel cells
|
||||||
MAX_P_IN = 8e6; % W, max power from fuel cells
|
MAX_P_IN = 8e6; % W, max power from fuel cells
|
||||||
P_IN_LOAD = 0.8; % most efficient load percent
|
P_IN_LOAD = 0.3; % most efficient load percent
|
||||||
|
|
||||||
INIT_P_OUT = 0.70;
|
%%%%% DP (SS7)
|
||||||
PROP_P_OUT = 8e6; % W, propulsion max output power
|
% MAX_P_OUT = 3842e3; % W
|
||||||
HOTEL_P_OUT = 3e4; % W, hotel average power usage
|
% MIN_P_OUT = 362e3; % W
|
||||||
|
% TITLE = 'Dyn. Pos. Sea State 7';
|
||||||
|
% SIMULATION_DAYS = 2; % days
|
||||||
|
|
||||||
P_IN_INTERVAL = 1e2; % W amount that gen power increases when required
|
%%%%% Outbound
|
||||||
P_OUT_INTERVAL = 2e4; % W amount that load can varies by randomly
|
% MAX_P_OUT = 1600e3; % W
|
||||||
|
% MIN_P_OUT = 600e3; % W
|
||||||
|
% TITLE = 'Outbound Steaming';
|
||||||
|
% SIMULATION_DAYS = 3; % days
|
||||||
|
%
|
||||||
|
%%%%% Manouvering
|
||||||
|
% MAX_P_OUT = 800e3; % W
|
||||||
|
% MIN_P_OUT = 200e3; % W
|
||||||
|
% TITLE = 'Manouvering';
|
||||||
|
% SIMULATION_DAYS = 1; % days
|
||||||
|
%
|
||||||
|
% %%%%% Home
|
||||||
|
% MAX_P_OUT = 800e3; % W
|
||||||
|
% MIN_P_OUT = 200e3; % W
|
||||||
|
% TITLE = 'Homebound';
|
||||||
|
% SIMULATION_DAYS = 3; % days
|
||||||
|
|
||||||
SIMULATION_DAYS = 1; % days
|
P_IN_INTERVAL = ( 200e3/(5*60) ) * 0.75; % W amount that gen power increases when required
|
||||||
|
P_OUT_INTERVAL = 1e4; % W amount that load can varies by randomly
|
||||||
|
|
||||||
BATT_INIT_LEVEL = 0.5;
|
BATT_INIT_LEVEL = 0.5;
|
||||||
BATT_FULL_LEVEL = 0.95; % battery level at which the power input decreases
|
BATT_FULL_LEVEL = 0.9; % battery level at which the power input decreases
|
||||||
BATT_WARN_LEVEL = 0.4; % battery level at which the power input increases
|
BATT_WARN_LEVEL = 0.3; % battery level at which the power input increases
|
||||||
|
|
||||||
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
|
||||||
%% Specs
|
%% Specs
|
||||||
@ -55,8 +74,8 @@ batt_charge_p = cell_charge_i * cell_voltage * CELL_TOTAL; % W
|
|||||||
|
|
||||||
batt_capacity = CELL_TOTAL * cell_capacity * cell_voltage / 1e3; % Wh
|
batt_capacity = CELL_TOTAL * cell_capacity * cell_voltage / 1e3; % Wh
|
||||||
|
|
||||||
P_IN = MAX_P_IN * P_IN_LOAD; % W
|
% P_IN = MAX_P_IN * P_IN_LOAD; % W, efficient load
|
||||||
P_OUT = PROP_P_OUT + HOTEL_P_OUT; % W
|
P_IN = (MIN_P_OUT + MAX_P_OUT) / 2; % W, Average power out
|
||||||
|
|
||||||
sim_seconds = SIMULATION_DAYS * 24 * 60 * 60;
|
sim_seconds = SIMULATION_DAYS * 24 * 60 * 60;
|
||||||
|
|
||||||
@ -80,7 +99,7 @@ unavailable_energy = zeros(1, sim_seconds);
|
|||||||
|
|
||||||
% 'cursor' values that change throughout sim
|
% 'cursor' values that change throughout sim
|
||||||
current_p_in = P_IN;
|
current_p_in = P_IN;
|
||||||
current_p_out = P_OUT * INIT_P_OUT;
|
current_p_out = (MAX_P_OUT + MIN_P_OUT) / 2;
|
||||||
|
|
||||||
% Set initial value
|
% Set initial value
|
||||||
power_in(1) = current_p_in;
|
power_in(1) = current_p_in;
|
||||||
@ -144,7 +163,7 @@ for SECOND=1:sim_seconds
|
|||||||
|
|
||||||
% CHANGE LOAD
|
% CHANGE LOAD
|
||||||
power_out_delta = (rand - 0.5) * 2 * P_OUT_INTERVAL;
|
power_out_delta = (rand - 0.5) * 2 * P_OUT_INTERVAL;
|
||||||
current_p_out = min(max(current_p_out + power_out_delta, 0), P_OUT);
|
current_p_out = min(max(current_p_out + power_out_delta, MIN_P_OUT), MAX_P_OUT);
|
||||||
|
|
||||||
% BATTERY LOW, INCREASE POWER IN
|
% BATTERY LOW, INCREASE POWER IN
|
||||||
% if battery_net < 0 && (battery_level(SECOND)/batt_capacity) < BATT_WARN_LEVEL
|
% if battery_net < 0 && (battery_level(SECOND)/batt_capacity) < BATT_WARN_LEVEL
|
||||||
@ -169,26 +188,45 @@ end
|
|||||||
x = (1:sim_seconds) / (60 * 60);
|
x = (1:sim_seconds) / (60 * 60);
|
||||||
x_ticks = (1: sim_seconds / (60 * 60));
|
x_ticks = (1: sim_seconds / (60 * 60));
|
||||||
|
|
||||||
if SIMULATION_DAYS > 2
|
if SIMULATION_DAYS > 1
|
||||||
|
if SIMULATION_DAYS < 4
|
||||||
|
x_ticks = (1: sim_seconds / (60 * 60));
|
||||||
|
else
|
||||||
|
% x_ticks = (1: sim_seconds / (60 * 60 * 24));
|
||||||
|
end
|
||||||
|
|
||||||
x = x / 24;
|
x = x / 24;
|
||||||
x_ticks = (1: sim_seconds / (60 * 60 * 24));
|
|
||||||
end
|
end
|
||||||
|
|
||||||
figure(I)
|
% figure(I)
|
||||||
line_width = 2;
|
figure('Renderer', 'painters', 'Position', [10 10 1000 800])
|
||||||
subplot(3, 1, 1);
|
% t = tiledlayout(1,1,'Padding','none');
|
||||||
|
% t.Units = 'inches';
|
||||||
|
% t.OuterPosition = [0.25 0.25 5 5];
|
||||||
|
% nexttile;
|
||||||
|
|
||||||
|
line_width = 1;
|
||||||
|
subplot(3, 1, 1);
|
||||||
|
sgtitle(TITLE);
|
||||||
hold on;
|
hold on;
|
||||||
grid on;
|
grid on;
|
||||||
plot(x, power_in / 1e6, 'g', 'LineWidth', line_width);
|
|
||||||
plot(x, power_out / 1e6, 'r', 'LineWidth', line_width);
|
plot(x, power_in / 1e6, 'g', 'LineWidth', 2);
|
||||||
yline(P_IN / 1e6, '--m', 'LineWidth', line_width * 0.5)
|
plot(x, power_out / 1e6, 'r', 'LineWidth', 1);
|
||||||
legend('Power In', 'Power Out', 'Ideal Power In');
|
|
||||||
|
max_line = yline(MAX_P_OUT / 1e6, '-c', 'LineWidth', line_width * 0.75);
|
||||||
|
min_line = yline(MIN_P_OUT / 1e6, '-c', 'LineWidth', line_width * 0.75);
|
||||||
|
max_line.Alpha = 0.5;
|
||||||
|
min_line.Alpha = 0.5;
|
||||||
|
|
||||||
|
yline(P_IN / 1e6, '--m', 'LineWidth', line_width * 0.5);
|
||||||
|
|
||||||
|
legend('P In', 'P Out', 'Max P Out', 'Min P Out', 'Ideal P In');
|
||||||
ylabel('Power (MW)')
|
ylabel('Power (MW)')
|
||||||
xlim([0 inf])
|
xlim([0 inf])
|
||||||
ylim([0 max(P_OUT, P_IN) / 1e6])
|
ylim([0 ceil(max(max(power_in/1e6), max(power_out/1e6)))])
|
||||||
xticks(x_ticks)
|
xticks(x_ticks)
|
||||||
if SIMULATION_DAYS > 2
|
if SIMULATION_DAYS > 1
|
||||||
xlabel('Time (Days)')
|
xlabel('Time (Days)')
|
||||||
else
|
else
|
||||||
xlabel('Time (Hours)')
|
xlabel('Time (Hours)')
|
||||||
@ -200,13 +238,13 @@ subplot(3, 1, 2);
|
|||||||
|
|
||||||
hold on;
|
hold on;
|
||||||
grid on;
|
grid on;
|
||||||
plot(x, battery_level * 100 / batt_capacity, 'LineWidth', line_width);
|
plot(x, battery_level * 100 / batt_capacity, 'LineWidth', 2);
|
||||||
legend('Battery Level');
|
legend('Battery Level');
|
||||||
ylabel('Capacity (%)')
|
ylabel('Capacity (%)')
|
||||||
xlim([0 inf])
|
xlim([0 inf])
|
||||||
ylim([0 100])
|
ylim([0 100])
|
||||||
xticks(x_ticks)
|
xticks(x_ticks)
|
||||||
if SIMULATION_DAYS > 2
|
if SIMULATION_DAYS > 1
|
||||||
xlabel('Time (Days)')
|
xlabel('Time (Days)')
|
||||||
else
|
else
|
||||||
xlabel('Time (Hours)')
|
xlabel('Time (Hours)')
|
||||||
@ -228,7 +266,7 @@ end
|
|||||||
xlim([0 inf])
|
xlim([0 inf])
|
||||||
ylim([0 inf])
|
ylim([0 inf])
|
||||||
xticks(x_ticks)
|
xticks(x_ticks)
|
||||||
if SIMULATION_DAYS > 2
|
if SIMULATION_DAYS > 1
|
||||||
xlabel('Time (Days)')
|
xlabel('Time (Days)')
|
||||||
else
|
else
|
||||||
xlabel('Time (Hours)')
|
xlabel('Time (Hours)')
|
||||||
@ -236,7 +274,7 @@ end
|
|||||||
hold off;
|
hold off;
|
||||||
|
|
||||||
if SAVE
|
if SAVE
|
||||||
print(sprintf('%i', I),'-dpng')
|
exportgraphics(gcf, sprintf('%s-%i.png', TITLE, I), 'Resolution', '250')
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user