-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmakeFiles.m
More file actions
31 lines (26 loc) · 870 Bytes
/
Copy pathmakeFiles.m
File metadata and controls
31 lines (26 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
close all; clear all; clc;
numDays = 1;
for gg = 1:2
for ggg = [1:11 16 31:41 46]
for g = [0:0.05:0.2 0.3:0.1:1 1.3 1.6]%[0:0.05:0.2 0.3:0.1:1 1.5 2]
clearvars -except g gg ggg numDays
if gg == 1
reactiveComm = true;
elseif gg == 2
reactiveComm = false;
end
seed = ggg;
DelayMultiplier = g;
filename = char(strcat('results/5sec_0985lim_delay',num2str(DelayMultiplier),'_reactive',num2str(reactiveComm),'_seed',num2str(seed),'.mat'));
if exist(filename,'file')
continue
end
fid = fopen( filename, 'wt' );
fclose(fid);
%~ LVgridWithComm;
%~ save(filename,'vOut','N','lvgc_assetBusses','LV_vBase','mm','tvec','Ts_AssetData')
% save(filename)
disp(filename)
end
end
end