source: trunk/src/series/aver_synchro.m @ 932

Last change on this file since 932 was 924, checked in by g7moreau, 8 years ago
  • Update Copyright Copyright 2008-2016, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
File size: 12.4 KB
Line 
1%'aver_stat': calculate field average over a time series
2%------------------------------------------------------------------------
3% function ParamOut=aver_stat(Param)
4%
5%%%%%%%%%%% GENERAL TO ALL SERIES ACTION FCTS %%%%%%%%%%%%%%%%%%%%%%%%%%%
6%
7%OUTPUT
8% ParamOut: sets options in the GUI series.fig needed for the function
9%
10%INPUT:
11% In run mode, the input parameters are given as a Matlab structure Param copied from the GUI series.
12% In batch mode, Param is the name of the corresponding xml file containing the same information
13% when Param.Action.RUN=0 (as activated when the current Action is selected
14% in series), the function ouput paramOut set the activation of the needed GUI elements
15%
16% Param contains the elements:(use the menu bar command 'export/GUI config' in series to
17% see the current structure Param)
18%    .InputTable: cell of input file names, (several lines for multiple input)
19%                      each line decomposed as {RootPath,SubDir,Rootfile,NomType,Extension}
20%    .OutputSubDir: name of the subdirectory for data outputs
21%    .OutputDirExt: directory extension for data outputs
22%    .Action: .ActionName: name of the current activated function
23%             .ActionPath:   path of the current activated function
24%             .ActionExt: fct extension ('.m', Matlab fct, '.sh', compiled   Matlab fct
25%             .RUN =0 for GUI input, =1 for function activation
26%             .RunMode='local','background', 'cluster': type of function  use
27%             
28%    .IndexRange: set the file or frame indices on which the action must be performed
29%    .FieldTransform: .TransformName: name of the selected transform function
30%                     .TransformPath:   path  of the selected transform function
31%    .InputFields: sub structure describing the input fields withfields
32%              .FieldName: name(s) of the field
33%              .VelType: velocity type
34%              .FieldName_1: name of the second field in case of two input series
35%              .VelType_1: velocity type of the second field in case of two input series
36%              .Coord_y: name of y coordinate variable
37%              .Coord_x: name of x coordinate variable
38%    .ProjObject: %sub structure describing a projection object (read from ancillary GUI set_object)
39%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
40
41%=======================================================================
42% Copyright 2008-2016, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
43%   http://www.legi.grenoble-inp.fr
44%   Joel.Sommeria - Joel.Sommeria (A) legi.cnrs.fr
45%
46%     This file is part of the toolbox UVMAT.
47%
48%     UVMAT is free software; you can redistribute it and/or modify
49%     it under the terms of the GNU General Public License as published
50%     by the Free Software Foundation; either version 2 of the license,
51%     or (at your option) any later version.
52%
53%     UVMAT is distributed in the hope that it will be useful,
54%     but WITHOUT ANY WARRANTY; without even the implied warranty of
55%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
56%     GNU General Public License (see LICENSE.txt) for more details.
57%=======================================================================
58
59function ParamOut=aver_synchro(Param)
60
61%% set the input elements needed on the GUI series when the action is selected in the menu ActionName
62if isstruct(Param) && isequal(Param.Action.RUN,0)
63    ParamOut.AllowInputSort='off';% allow alphabetic sorting of the list of input file SubDir (options 'off'/'on', 'off' by default)
64    ParamOut.WholeIndexRange='off';% prescribes the file index ranges from min to max (options 'off'/'on', 'off' by default)
65    ParamOut.NbSlice='on'; %nbre of slices ('off' by default)
66    ParamOut.VelType='two';% menu for selecting the velocity type (options 'off'/'one'/'two',  'off' by default)
67    ParamOut.FieldName='two';% menu for selecting the field (s) in the input file(options 'off'/'one'/'two', 'off' by default)
68    ParamOut.FieldTransform = 'on';%can use a transform function
69    ParamOut.ProjObject='on';%can use projection object(option 'off'/'on',
70    ParamOut.Mask='off';%can use mask option   (option 'off'/'on', 'off' by default)
71    ParamOut.OutputDirExt='.synchro';%set the output dir extension
72    ParamOut.OutputFileMode='NbSlice';% '=NbInput': 1 output file per input file index, '=NbInput_i': 1 file per input file index i, '=NbSlice': 1 file per slice
73    %     filecell=get_file_series(Param);%check existence of the first input file
74    %     if ~exist(filecell{1,1},'file')
75    %         msgbox_uvmat('WARNING','the first input file does not exist')
76    %     end
77    def={'26'};
78    if isfield (Param,'ActionInput')&& isfield(Param.ActionInput,'WavePeriod')
79        def=Param.ActionInput.WavePeriod;
80       
81        def={num2str(def)};
82    end
83    prompt={'wave period'};
84    dlgTitle='primary period';
85    lineNo=1;
86    answer=inputdlg(prompt,dlgTitle,lineNo,def);
87    ParamOut.ActionInput.WavePeriod=str2num(answer{1});
88    return
89end
90
91%%%%%%%%%%%%  STANDARD PART  %%%%%%%%%%%%
92ParamOut=[];%default output
93%% read input parameters from an xml file if input is a file name (batch mode)
94checkrun=1;
95if ischar(Param)
96    Param=xml2struct(Param);% read Param as input file (batch case)
97    checkrun=0;
98end
99hseries=findobj(allchild(0),'Tag','series');
100RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series
101WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series
102
103%% define the directory for result file (with path=RootPath{1})
104OutputDir=[Param.OutputSubDir Param.OutputDirExt];
105   
106%% root input file(s) name, type and index series
107RootPath=Param.InputTable(:,1);
108RootFile=Param.InputTable(:,3);
109SubDir=Param.InputTable(:,2);
110NomType=Param.InputTable(:,4);
111FileExt=Param.InputTable(:,5);
112[filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param);
113FileInfo=get_file_info(filecell{1,1});
114 FileType=FileInfo.FileType;
115%%%%%%%%%%%%
116% The cell array filecell is the list of input file names, while
117% filecell{iview,fileindex}:
118%        iview: line in the table corresponding to a given file series
119%        fileindex: file index within  the file series,
120% i1_series(iview,ref_j,ref_i)... are the corresponding arrays of indices i1,i2,j1,j2, depending on the input line iview and the two reference indices ref_i,ref_j
121% i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices
122%%%%%%%%%%%%
123nbview=numel(i1_series);%number of input file series (lines in InputTable)
124nbfield_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices)
125nbfield_i=size(i1_series{1},2); %nb of fields for the i index
126nbfield=nbfield_j*nbfield_i; %total number of fields
127
128%% determine the input file type
129% if ~strcmp(FileType{1},'netcdf')
130%     displ_uvmat('ERROR','netcdf file series with field projected on a regular mesh must be put as input')
131%     return
132% end
133
134%% calibration data and timing: read the ImaDoc files
135[XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series);
136% if size(time,1)>1
137%     diff_time=max(max(diff(time)));
138%     if diff_time>0
139%         msgbox_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time)])
140%     end   
141% end
142
143%% coordinate transform or other user defined transform
144transform_fct='';%default
145if isfield(Param,'FieldTransform')&&~isempty(Param.FieldTransform.TransformName)
146    addpath(Param.FieldTransform.TransformPath)
147    transform_fct=str2func(Param.FieldTransform.TransformName);
148    rmpath(Param.FieldTransform.TransformPath)
149end
150
151%% settings for the output file
152NomTypeOut=nomtype2pair(NomType{1});% determine the index nomenclature type for the output file
153first_i=i1_series{1}(1);
154last_i=i1_series{1}(end);
155if isempty(j1_series{1})% if there is no second index j
156    first_j=1;last_j=1;
157else
158    first_j=j1_series{1}(1);
159    last_j=j1_series{1}(end);
160end
161
162%% Set field names and velocity types
163InputFields{1}=[];%default (case of images)
164if isfield(Param,'InputFields')
165    InputFields{1}=Param.InputFields;
166end
167
168% for i_slice=1:NbSlice
169% index_slice=i_slice:NbSlice:nbfield;% select file indices of the slice
170nbfiles=0;
171nbmissing=0;
172MeanU=0;
173MeanV=0;
174MinU=0;
175MaxU=0;
176MinV=0;
177MaxV=0;
178vec_X=0;
179vec_Y=0;
180vec_U=0; %initiate the sum
181vec_V=0;
182cos1_U=0;
183cos1_V=0;
184sin1_U=0;
185sin1_V=0;
186cos2_U=0;
187cos2_V=0;
188sin2_U=0;
189sin2_V=0;
190cos3_U=0;
191cos3_V=0;
192sin3_U=0;
193sin3_V=0;
194cossub_U=0;
195cossub_V=0;
196sinsub_U=0;
197sigma1=2*pi/Param.ActionInput.WavePeriod;%primary wave frequency
198sigma2=4*pi/Param.ActionInput.WavePeriod;%harmonic 2
199sigma3=6*pi/Param.ActionInput.WavePeriod;%harmonic 3
200sigma_sub=pi/Param.ActionInput.WavePeriod;%subharmonic
201sinsub_V=0;
202vec_C=0;
203 
204%%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%%
205for index=1:nbfield
206    update_waitbar(WaitbarHandle,index/nbfield)
207    if ~isempty(RUNHandle)&& ~strcmp(get(RUNHandle,'BusyAction'),'queue')
208        disp('program stopped by user')
209        break
210    end
211   
212    % reading input file(s)
213    [Data,tild,errormsg] = read_field(filecell{1,index},FileType,InputFields{1});
214    if ~isempty(errormsg)
215        displ_uvmat('ERROR',['error of input reading: ' errormsg],checkrun);
216        break
217    end
218    if ~isempty(NbSlice_calib)
219        Data.ZIndex=mod(i1_series{1}(index)-1,NbSlice_calib{1})+1;%Zindex for phys transform
220    end
221    %update average
222    MeanU=MeanU+Data.U;
223    MeanV=MeanV+Data.V;
224    MaxU=(MaxU>=Data.U).*MaxU+(MaxU<Data.U).*Data.U;
225    MinU=(MinU<=Data.U).*MinU+(MinU>Data.U).*Data.U;
226    MaxV=(MaxV>=Data.V).*MaxV+(MaxV<Data.V).*Data.V;
227    MinV=(MinV<=Data.V).*MinV+(MinV>Data.V).*Data.V;
228    cos1_U=cos1_U+Data.U*cos(Data.Time*sigma1);
229    cos1_V=cos1_V+Data.V*cos(Data.Time*sigma1);
230    sin1_U=sin1_U+Data.U*sin(Data.Time*sigma1);
231    sin1_V=sin1_V+Data.V*sin(Data.Time*sigma1);
232    cos2_U=cos2_U+Data.U*cos(Data.Time*sigma2);
233    cos2_V=cos2_V+Data.V*cos(Data.Time*sigma2);
234    sin2_U=sin2_U+Data.U*sin(Data.Time*sigma2);
235    sin2_V=sin2_V+Data.V*sin(Data.Time*sigma2);
236    cos3_U=cos3_U+Data.U*cos(Data.Time*sigma3);
237    cos3_V=cos3_V+Data.V*cos(Data.Time*sigma3);
238    sin3_U=sin3_U+Data.U*sin(Data.Time*sigma3);
239    sin3_V=sin3_V+Data.V*sin(Data.Time*sigma3);
240    cossub_U=cossub_U+Data.U*cos(Data.Time*sigma_sub);
241    cossub_V=cossub_V+Data.V*cos(Data.Time*sigma_sub);
242    sinsub_U=sinsub_U+Data.U*sin(Data.Time*sigma_sub);
243    sinsub_V=sinsub_V+Data.V*sin(Data.Time*sigma_sub);
244   
245   
246end
247
248%%%%%%%%%%%%%%%%%%%%%%%%
249Data.ListVarName={'coord_x','coord_y','MeanU','MeanV','cos1_U','cos1_V','a1_U','a1_V','a2_U','a2_V','a3_U','a3_V','asub_U','asub_V',...
250    'phase1_U','phase1_V','phase2_U','phase2_V','phase3_U','phase3_V'};
251%Data.ListVarName=[{'coord_y','coord_x'} Data.ListVarName];
252%Data.VarDimName={'coord_y', 'coord_x'};
253for ilist=1:numel(Data.ListVarName)-2
254    Data.VarDimName{ilist+2}={'coord_y','coord_x'};
255 %   Data.VarDimName{ilist}='nb_vectors';
256end
257Data.MeanU=MeanU/nbfield;
258Data.MeanV=MeanV/nbfield;
259Data.cos1_U=cos1_U/nbfield;
260Data.cos1_V=cos1_V/nbfield;
261sin1_U=sin1_U/nbfield;
262sin1_V=sin1_V/nbfield;
263cos2_U=cos2_U/nbfield;
264cos2_V=cos2_V/nbfield;
265sin2_U=sin2_U/nbfield;
266sin2_V=sin2_V/nbfield;
267cos3_U=cos3_U/nbfield;
268cos3_V=cos3_V/nbfield;
269sin3_U=sin3_U/nbfield;
270sin3_V=sin3_V/nbfield;
271cossub_U=cossub_U/nbfield;
272cossub_V=cossub_V/nbfield;
273sinsub_U=sinsub_U/nbfield;
274sinsub_V=sinsub_V/nbfield;
275Data.a1_U=sqrt(2)*sqrt(Data.cos1_U.*Data.cos1_U+sin1_U.*sin1_U);
276Data.a1_V=-sqrt(2)*sqrt(Data.cos1_V.*Data.cos1_V+sin1_V.*sin1_V);
277Data.a2_U=sqrt(2)*sqrt(cos2_U.*cos2_U+sin2_U.*sin2_U);
278Data.a2_V=-sqrt(2)*sqrt(cos2_V.*cos2_V+sin2_V.*sin2_V);
279Data.a3_U=sqrt(2)*sqrt(cos3_U.*cos3_U+sin3_U.*sin3_U);
280Data.a3_V=-sqrt(2)*sqrt(cos3_V.*cos3_V+sin3_V.*sin3_V);
281Data.asub_U=sqrt(2)*sqrt(cossub_U.*cossub_U+sinsub_U.*sinsub_U);
282Data.asub_V=-sqrt(2)*sqrt(cossub_V.*cossub_V+sinsub_V.*sinsub_V);
283clear i
284Data.phase1_U=(angle(cos1_U+i*sin1_U));
285Data.phase1_V=angle(cos1_V+i*sin1_V);
286Data.phase2_U=(angle(cos2_U+i*sin2_U));
287Data.phase2_V=(angle(cos2_V+i*sin2_V));
288Data.phase3_U=(angle(cos3_U+i*sin3_U));
289Data.phase3_V=(angle(cos3_V+i*sin3_V));
290Data.phasesub_U=(angle(cossub_U+i*sinsub_U));
291Data.phasesub_V=(angle(cossub_V+i*sinsub_V));
292
293%% write the results
294OutputFile=fullfile_uvmat(RootPath{1},OutputDir,RootFile{1},'.nc','',1);
295errormsg=struct2nc(OutputFile,Data);% write the output file
296if isempty(errormsg)
297    disp_uvmat('CONFIRMATION',[OutputFile ' successfully written'],checkrun)
298else
299    disp_uvmat('ERROR',errormsg,checkrun)
300end
301   
302
303%% open the result file with uvmat (in RUN mode)
304% if checkrun
305%     uvmat(OutputFile)% open the last result file with uvmat
306% end
307'#### THE END ####'
Note: See TracBrowser for help on using the repository browser.