source: trunk/src/series/turb_correlation.m @ 913

Last change on this file since 913 was 913, checked in by sommeria, 9 years ago

netcdf4 introduced, turb_correlation added

File size: 13.3 KB
Line 
1%'aver_stat': calculate Reynolds steress components over time series
2%------------------------------------------------------------------------
3% function ParamOut=turb_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-2014, LEGI UMR 5519 / CNRS UJF 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=turb_stat(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='off'; %nbre of slices ('off' by default)
66    ParamOut.VelType='one';% menu for selecting the velocity type (options 'off'/'one'/'two',  'off' by default)
67    ParamOut.FieldName='one';% 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='off';%can use projection object(option 'off'/'on',
70    ParamOut.Mask='off';%can use mask option   (option 'off'/'on', 'off' by default)
71    ParamOut.OutputDirExt='.staturb';%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    return
78end
79
80%%%%%%%%%%%%  STANDARD PART  %%%%%%%%%%%%
81ParamOut=[];%default output
82%% read input parameters from an xml file if input is a file name (batch mode)
83checkrun=1;
84if ischar(Param)
85    Param=xml2struct(Param);% read Param as input file (batch case)
86    checkrun=0;
87end
88hseries=findobj(allchild(0),'Tag','series');
89RUNHandle=findobj(hseries,'Tag','RUN');%handle of RUN button in GUI series
90WaitbarHandle=findobj(hseries,'Tag','Waitbar');%handle of waitbar in GUI series
91
92%% define the directory for result file (with path=RootPath{1})
93OutputDir=[Param.OutputSubDir Param.OutputDirExt];
94   
95%% root input file(s) name, type and index series
96RootPath=Param.InputTable(:,1);
97RootFile=Param.InputTable(:,3);
98SubDir=Param.InputTable(:,2);
99NomType=Param.InputTable(:,4);
100FileExt=Param.InputTable(:,5);
101[filecell,i1_series,i2_series,j1_series,j2_series]=get_file_series(Param);
102%%%%%%%%%%%%
103% The cell array filecell is the list of input file names, while
104% filecell{iview,fileindex}:
105%        iview: line in the table corresponding to a given file series
106%        fileindex: file index within  the file series,
107% 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
108% i1_series(iview,fileindex) expresses the same indices as a 1D array in file indices
109%%%%%%%%%%%% NbView=1 : a single input series
110NbView=numel(i1_series);%number of input file series (lines in InputTable)
111NbField_j=size(i1_series{1},1); %nb of fields for the j index (bursts or volume slices)
112NbField_i=size(i1_series{1},2); %nb of fields for the i index
113NbField=NbField_j*NbField_i; %total number of fields
114
115%% determine the file type on each line from the first input file
116ImageTypeOptions={'image','multimage','mmreader','video'};
117NcTypeOptions={'netcdf','civx','civdata'};
118for iview=1:NbView
119    if ~exist(filecell{iview,1}','file')
120        msgbox_uvmat('ERROR',['the first input file ' filecell{iview,1} ' does not exist'])
121        return
122    end
123    [FileInfo{iview},MovieObject{iview}]=get_file_info(filecell{iview,1});
124    FileType{iview}=FileInfo{iview}.FileType;
125    CheckImage{iview}=~isempty(find(strcmp(FileType{iview},ImageTypeOptions)));% =1 for images
126    CheckNc{iview}=~isempty(find(strcmp(FileType{iview},NcTypeOptions)));% =1 for netcdf files
127    if ~isempty(j1_series{iview})
128        frame_index{iview}=j1_series{iview};
129    else
130        frame_index{iview}=i1_series{iview};
131    end
132end
133
134%% calibration data and timing: read the ImaDoc files
135XmlData=[];
136[XmlData,NbSlice_calib,time,errormsg]=read_multimadoc(RootPath,SubDir,RootFile,FileExt,i1_series,i2_series,j1_series,j2_series);
137if size(time,1)>1
138    diff_time=max(max(diff(time)));
139    if diff_time>0
140        msgbox_uvmat('WARNING',['times of series differ by (max) ' num2str(diff_time)])
141    end   
142end
143
144%% coordinate transform or other user defined transform
145transform_fct='';%default
146if isfield(Param,'FieldTransform')&&~isempty(Param.FieldTransform.TransformName)
147    addpath(Param.FieldTransform.TransformPath)
148    transform_fct=str2func(Param.FieldTransform.TransformName);
149    rmpath(Param.FieldTransform.TransformPath)
150end
151
152%%%%%%%%%%%% END STANDARD PART  %%%%%%%%%%%%
153 % EDIT FROM HERE
154
155%% check the validity of  input file types
156if CheckImage{1}
157    FileExtOut='.png'; % write result as .png images for image inputs
158elseif CheckNc{1}
159    FileExtOut='.nc';% write result as .nc files for netcdf inputs
160else
161    msgbox_uvmat('ERROR',['invalid file type input ' FileType{1}])
162    return
163end
164
165
166%% settings for the output file
167NomTypeOut=nomtype2pair(NomType{1});% determine the index nomenclature type for the output file
168first_i=i1_series{1}(1);
169last_i=i1_series{1}(end);
170if isempty(j1_series{1})% if there is no second index j
171    first_j=1;last_j=1;
172else
173    first_j=j1_series{1}(1);
174    last_j=j1_series{1}(end);
175end
176
177%% Set field names and velocity types
178InputFields{1}=[];%default (case of images)
179if isfield(Param,'InputFields')
180    InputFields{1}=Param.InputFields;
181end
182
183nbfiles=0;
184nbmissing=0;
185
186%initialisation
187DataOut.ListGlobalAttribute= {'Conventions'};
188DataOut.Conventions= 'uvmat';
189DataOut.ListVarName={'coord_y', 'coord_x' ,'UMean' , 'VMean','u2Mean','v2Mean','u2Mean_1','v2Mean_1','uvMean','Counter'};
190DataOut.VarDimName={'coord_y','coord_x',{'coord_y','coord_x'},{'coord_y','coord_x'},{'coord_y','coord_x'},{'coord_y','coord_x'},{'coord_y','coord_x'},{'coord_y','coord_x'},...
191    {'coord_y','coord_x'},{'coord_y','coord_x'}};
192DataOut.UMean=0;
193DataOut.VMean=0;
194DataOut.u2Mean=0;
195DataOut.v2Mean=0;
196DataOut.u2Mean_1=0;
197DataOut.v2Mean_1=0;
198DataOut.uvMean=0;
199DataOut.Counter=0;
200U2Mean=0;
201V2Mean=0;
202UVMean=0;
203U2Mean_1=0;
204V2Mean_1=0;
205Counter_1=0;
206
207%%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%%
208for index=1:NbField
209    update_waitbar(WaitbarHandle,index/NbField)
210    if ~isempty(RUNHandle)&& ~strcmp(get(RUNHandle,'BusyAction'),'queue')
211        disp('program stopped by user')
212        break
213    end
214    [Field,tild,errormsg] = read_field(filecell{1,index},FileType{iview},InputFields{iview},frame_index{iview}(index));
215
216    %%%%%%%%%%%% MAIN RUNNING OPERATIONS  %%%%%%%%%%%%
217    if index==1 %first field
218        DataOut=Field;
219        DataOut.coord_y=Field.coord_y;
220        DataOut.coord_x=Field.coord_x;
221        Uprev=Field.U;
222        Vprev=Field.V;
223        if isfield(Field,'FF')
224        FFprev=Field.FF;
225        else
226            FFprev=true(size(Field.U));
227        end
228        [npy,npx]=size(Field.U);
229        DataOut.Ucorr=zeros(npy,npx);
230    end
231    FF=isnan(Field.U);%|Field.U<-60|Field.U>30;% threshold on U
232    UMean=sum(Field.U,2);
233    UMean=sum(FF,2);
234    UMean=UMean./UMean;
235    Field.U=Field.U-ones(npy,1)*UMean;% substract mean U at each position y
236    Field.U(FF)=0;% set to 0 the nan values
237    Field.V(FF)=0;
238    Ucorr=zeros(npy,npx);
239    for ishift=-(npx-1):(npx-1)% calculate the field U shifted
240        U_shift=shiftdim(Field.U,[0 -ishift]);
241        if ishift<0
242        U_shift(:,1:-ishift)=0;
243        FF_shift(:,1:-ishift)=1;
244        elseif ishift>0
245            U_shift(:,end-ishift:end)=0;
246            FF_shift(:,1:end-ishift:end)=1;
247        end
248        UCorr(:,ishift+npx)=sum(Field.U.*U_shift,2);
249        nonNaNcounter=sum(~FF.*~FF_shift,2);
250        UCorr(:,ishift+npx)=UCorr(:,ishift+npx)./nonNaNcounter;
251    end
252    DataOut.UCorr=DataOut.UCorr+UCorr;
253   
254    %% continuer
255   
256    DataOut.UMean=DataOut.UMean+Field.U; %increment the sum
257    DataOut.VMean=DataOut.VMean+Field.V; %increment the sum
258    U2Mean=U2Mean+(Field.U).*(Field.U); %increment the U squared sum
259    V2Mean=V2Mean+(Field.V).*(Field.V); %increment the V squared sum
260    UVMean=UVMean+(Field.U).*(Field.V); %increment the sum
261    U2Mean_1=U2Mean_1+(Field.U).*Uprev; %increment the U squared sum
262    V2Mean_1=V2Mean_1+(Field.V).*Vprev; %increment the V squared sum
263    Uprev=Field.U; %store for next iteration
264    Vprev=Field.V;
265    FFprev=FF;
266end
267%%%%%%%%%%%%%%%% end loop on field indices %%%%%%%%%%%%%%%%
268DataOut.UCorr=DataOut.UCorr/NbField;
269%DataOut.Counter(DataOut.Counter==0)=1;% put counter to 1 when it is zero
270% DataOut.UMean=DataOut.UMean./DataOut.Counter; % normalize the mean
271% DataOut.VMean=DataOut.VMean./DataOut.Counter; % normalize the mean
272% U2Mean=U2Mean./DataOut.Counter; % normalize the mean
273% V2Mean=V2Mean./DataOut.Counter; % normalize the mean
274% UVMean=UVMean./DataOut.Counter; % normalize the mean
275% U2Mean_1=U2Mean_1./Counter_1; % normalize the mean
276% V2Mean_1=V2Mean_1./Counter_1; % normalize the mean
277% DataOut.u2Mean=U2Mean-DataOut.UMean.*DataOut.UMean; % normalize the mean
278% DataOut.v2Mean=V2Mean-DataOut.VMean.*DataOut.VMean; % normalize the mean
279% DataOut.uvMean=UVMean-DataOut.UMean.*DataOut.VMean; % normalize the mean \
280% DataOut.u2Mean_1=U2Mean_1-DataOut.UMean.*DataOut.UMean; % normalize the mean
281% DataOut.v2Mean_1=V2Mean_1-DataOut.VMean.*DataOut.VMean; % normalize the mean
282
283
284%% calculate the profiles
285% npx=numel(DataOut.coord_x);
286% band=ceil(npx/5) :floor(4*npx/5);% keep only the central band
287% for ivar=3:numel(DataOut.ListVarName)-1
288%     VarName=DataOut.ListVarName{ivar};% name of the variable
289%     DataOut.ListVarName=[DataOut.ListVarName {[VarName 'Profile']}];%append the name of the profile variable
290%     DataOut.VarDimName=[DataOut.VarDimName {'coord_y'}];
291%    DataOut.([VarName 'Profile'])=mean(DataOut.(VarName)(:,band),2); %take the mean profile of U, excluding the edges
292% end
293
294%% writing the result file as netcdf file
295OutputFile=fullfile_uvmat(RootPath{1},OutputDir,RootFile{1},FileExtOut,NomTypeOut,first_i,last_i,first_j,last_j);
296 %case of netcdf input file , determine global attributes
297 errormsg=struct2nc(OutputFile,DataOut); %save result file
298 if isempty(errormsg)
299     disp([OutputFile ' written']);
300 else
301     disp(['error in writting result file: ' errormsg])
302 end
303
304
305%% open the result file with uvmat (in RUN mode)
306if checkrun
307    uvmat(OutputFile)% open the last result file with uvmat
308end
Note: See TracBrowser for help on using the repository browser.