1 function [ plotters ] = plot_full_sim(wrfout, ts )
3 % wrfout - path to a wrfout file
4 % ts - time_step in wrfout
7 [fire_name,save_name,prefix,perim] = fire_choice()
9 % fire_choice = input_num('which fire? Patch: [0], Camp: [1], Cougar: [3]',1);
10 cycle = input_num('Which cycle? ',0)
12 % fire_name = 'Camp fire';
14 % prefix='../campTIFs/';
15 % elseif fire_choice == 0
16 % fire_name = 'Patch Springs fire';
17 % save_name = 'patch';
20 % fire_name = 'Cougar Creek fire';
21 % save_name = 'cougar';
22 % prefix = '../cougarTIFs/';
25 fig_num = input_num('Figure number? ',113);
26 % make reduced structure
28 w = read_wrfout_tign(wrfout,ts);
30 w = read_wrfout_tign(wrfout);
33 %w = read_wrfout_tign(wrfout,'2013-08-17_07:00:00');
34 red = subset_domain(w);
43 time_bounds = [red.start_datenum red.end_datenum];
44 p = sort_rsac_files(prefix);
45 if ~exist('g_full.mat','file')
46 g = load_subset_detections(prefix,p,red,time_bounds,fig);
52 title_string = sprintf('%s , cycle %i',fire_name,cycle);
53 plot_state(fig_num,red,title_string,red.tign,g,time_bounds(1:2))
54 save_str = sprintf('%s_full_sim_cyc_%d',save_name,cycle)
56 saveas(gcf,[save_str '.png']);