source: trunk/src/series/turb_correlation_x.m @ 1197

Last change on this file since 1197 was 1197, checked in by sommeria, 3 days ago

bugs repaired

File size: 13.6 KB
Line 
1%'turb_correlation_x': calculate the x wise correlation function at each point
2%------------------------------------------------------------------------
3% function ParamOut=turb_correlation_x(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-2024, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
43%   http://www.legi.grenoble-inp.fr
44%   Joel.Sommeria - Joel.Sommeria (A) univ-grenoble-alpes.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_correlation_x(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=1;%nbre of slices, 1 prevents splitting in several processes, ('off' by default)
66    ParamOut.VelType='off';% 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='.corr_x';%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};
98%SubDir=Param.InputTable(:,2);
99NomType=Param.InputTable{1,4};
100%FileExt=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
110%NbView=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
116
117[FileInfo,MovieObject]=get_file_info(filecell{1,1});
118FileType=FileInfo.FileType;
119
120if ~isempty(j1_series{1})
121    frame_index=j1_series{1};
122else
123    frame_index=i1_series{1};
124end
125
126%% settings for the output file
127FileExtOut='.nc';% write result as .nc files for netcdf inputs
128NomTypeOut=nomtype2pair(NomType);% determine the index nomenclature type for the output file
129first_i=i1_series{1}(1);
130last_i=i1_series{1}(end);
131if isempty(j1_series{1})% if there is no second index j
132    first_j=1;last_j=1;
133else
134    first_j=j1_series{1}(1);
135    last_j=j1_series{1}(end);
136end
137
138%% Set field names and velocity types
139InputFields{1}=[];%default (case of images)
140%%%%%%%%%%%%%%%%%%%%%
141if isfield(Param.IndexRange,'TimeSource') && find(regexp(Param.IndexRange.TimeSource,'^var:'))==1
142    Param.InputFields.TimeVarName=regexprep(Param.IndexRange.TimeSource,'^var:','');
143end
144%%%%%%%%%%%%%%%%%%%%
145% if isfield(Param,'InputFields')
146%     InputFields{1}=Param.InputFields;
147% end
148Param.InputFields.FieldName={'Uprime','Vprime'};
149nbfiles=0;
150nbmissing=0;
151
152%initialisation
153DataOut.ListGlobalAttribute= {'Conventions'};
154DataOut.Conventions= 'uvmat';
155DataOut.ListVarName={'delta_x','coord_y','coord_x','UUCorr' , 'VVCorr','UVCorr','Counter'};
156DataOut.VarDimName={'delta_x','coord_y','coord_x',...
157    {'delta_x','coord_y','coord_x'},{'delta_x','coord_y','coord_x'},{'delta_x','coord_y','coord_x'},{'delta_x','coord_y','coord_x'}};
158DataOut.UUCorr=0;
159DataOut.Counter=0;
160
161%%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%%
162% First get mean values %
163disp('loop for mean started')
164for index=1:NbField
165    %     if ~isempty(RUNHandle)&& ~strcmp(get(RUNHandle,'BusyAction'),'queue')
166    %         disp('program stopped by user')
167    %         break
168    %     end
169    [Field,~,errormsg] = read_field(filecell{1,index},FileType,Param.InputFields,frame_index(index));
170   
171    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
172    Field.U=Field.Uprime;
173    Field.V=Field.Vprime;
174    %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
175    if index==1 %first field
176        if ~isfield(Field,'U')||~isfield(Field,'V')
177            disp_uvmat('ERROR','this function requires the velocity components U and V as input',checkrun)
178            return
179        end
180       
181        [npy,npx]=size(Field.U);
182        UMean=zeros(npy,npx);
183        VMean=zeros(npy,npx);
184        Counter=zeros(npy,npx);
185        % transcripts the global attributes
186        if isfield(Field,'ListGlobalAttribute')
187            DataOut.ListGlobalAttribute= Field.ListGlobalAttribute;
188            for ilist=1:numel(Field.ListGlobalAttribute)
189                AttrName=Field.ListGlobalAttribute{ilist};
190                DataOut.(AttrName)=Field.(AttrName);
191            end
192        end
193    end
194    FF=isnan(Field.U);%|Field.U<-60|Field.U>30;% threshold on U
195    Field.U(FF)=0;% set to 0 the nan values,
196    Field.V(FF)=0;
197    UMean=UMean+Field.U;
198    VMean=VMean+Field.V;
199    Counter=Counter+~FF;
200end
201Counter(Counter==0)=1;
202UMean=UMean./Counter;
203VMean=VMean./Counter;
204
205
206%%%%%%%%%%%%%%%% loop on field indices %%%%%%%%%%%%%%%%
207disp('loop for correlation started')
208for index=1:NbField
209    if ~isempty(RUNHandle)&& ~strcmp(get(RUNHandle,'BusyAction'),'queue')
210        disp('program stopped by user')
211        break
212    end
213    [Field,~,errormsg] = read_field(filecell{1,index},FileType,Param.InputFields,frame_index(index));
214    Field.U=Field.Uprime;
215    Field.V=Field.Vprime;
216    %%%%%%%%%%%% MAIN RUNNING OPERATIONS  %%%%%%%%%%%%
217    if index==1 %first field
218        [npy,npx]=size(Field.U);
219        npcorr=floor(npx/4); %nbre of points for the correlation fct on each side of 0
220        dx=(Field.coord_x(end)-Field.coord_x(1))/(numel(Field.coord_x)-1);
221        DataOut.delta_x=(-dx*npcorr:dx:dx*npcorr)';
222        DataOut.coord_x=Field.coord_x;
223        DataOut.coord_y=Field.coord_y;
224        DataOut.UUCorr=zeros(2*npcorr+1,npy,npx);
225        DataOut.VVCorr=zeros(2*npcorr+1,npy,npx);
226        DataOut.UVCorr=zeros(2*npcorr+1,npy,npx);
227        DataOut.Counter=zeros(2*npcorr+1,npy,npx);
228    end
229    FF=isnan(Field.U);%|Field.U<-60|Field.U>30;% threshold on U
230    Field.U(FF)=0;% set to 0 the nan values,'delta_x'
231    Field.V(FF)=0;
232    Field.U=Field.U-UMean;
233    Field.V=Field.V-VMean;
234    UUCorr=zeros(2*npcorr+1,npy,npx);
235    VVCorr=zeros(2*npcorr+1,npy,npx);
236    UVCorr=zeros(2*npcorr+1,npy,npx);
237    FFCorr=false(2*npcorr+1,npy,npx);
238    for ishift=-npcorr:npcorr% calculate the field U shifted
239        U_shift=circshift(Field.U,[0 -ishift]); %shift U by ishift along the index x
240        V_shift=circshift(Field.V,[0 -ishift]); %shift U by ishift along the index x
241        FF_shift=circshift(FF,[0 -ishift]); %shift U by ishift along the index x
242        if ishift<0
243            U_shift(:,1:-ishift)=0;
244            V_shift(:,1:-ishift)=0;
245            FF_shift(:,1:-ishift)=1;
246        elseif ishift>0
247            U_shift(:,end-ishift:end)=0;
248            V_shift(:,end-ishift:end)=0;
249            FF_shift(:,end-ishift:end)=1;
250        end
251        UUCorr(ishift+npcorr+1,:,:)=Field.U.*U_shift;
252        VVCorr(ishift+npcorr+1,:,:)=Field.V.*V_shift;
253        UVCorr(ishift+npcorr+1,:,:)=Field.U.*V_shift;
254        FFCorr(ishift+npcorr+1,:,:)=FF | FF_shift;
255    end
256    DataOut.UUCorr=DataOut.UUCorr+UUCorr;
257    DataOut.VVCorr=DataOut.VVCorr+VVCorr;
258    DataOut.UVCorr=DataOut.UVCorr+UVCorr;
259    DataOut.Counter=DataOut.Counter+~FFCorr;
260end
261%%%%%%%%%%%%%%%% end loop on field indices %%%%%%%%%%%%%%%%
262DataOut.Counter(DataOut.Counter==0)=1;
263size(DataOut.UUCorr)
264size(DataOut.VVCorr)
265size(DataOut.Counter)
266DataOut.UUCorr=DataOut.UUCorr./DataOut.Counter;
267DataOut.VVCorr=DataOut.VVCorr./DataOut.Counter;
268DataOut.UVCorr=DataOut.UVCorr./DataOut.Counter;
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 meanFFCorr
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,OutputDir,RootFile,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
Note: See TracBrowser for help on using the repository browser.