1 |
|
---|
2 |
|
---|
3 | %'calc_field': defines fields (velocity, vort, div...) from civx data and calculate them
|
---|
4 | %---------------------------------------------------------------------
|
---|
5 | % [DataOut,errormsg]=calc_field(FieldList,DataIn,Coord_interp)
|
---|
6 | %
|
---|
7 | % OUTPUT:
|
---|
8 | % Scal: matlab vector representing the scalar values (length nbvec defined by var_read)
|
---|
9 | % if no input, Scal=list of programmed scalar names (to put in menus)
|
---|
10 | % if only the field name is put as input, vec_A=type of scalar, which can be:
|
---|
11 | % 'discrete': related to the individual velocity vectors, not interpolated by patch
|
---|
12 | % 'vel': scalar calculated solely from velocity components
|
---|
13 | % 'der': needs spatial derivatives
|
---|
14 | % 'var': the scalar name directly corresponds to a field name in the netcdf files
|
---|
15 | % error: error flag
|
---|
16 | % error = 0; OK
|
---|
17 | % error = 1; the prescribed scalar cannot be read or calculated from available fields
|
---|
18 | %
|
---|
19 | % INPUT:
|
---|
20 | % FieldList: cell array of strings representing the name(s) of the field(s) to calculate
|
---|
21 | % DataIn: structure representing the field, as defined in check_field_srtructure.m
|
---|
22 | % Coord_interp(:,nb_coord) optional set of coordinates to interpolate the field (use with thin plate shell)
|
---|
23 | %
|
---|
24 | % FUNCTION related
|
---|
25 | % varname_generator.m: determines the field names to read in the netcdf
|
---|
26 | % file, depending on the scalar
|
---|
27 | function [FieldOptions,ColorList]=calc_field
|
---|
28 | %function [DataOut,errormsg]=calc_field(FieldList,DataIn,Coord_interp)
|
---|
29 |
|
---|
30 | %list of defined scalars to display in menus (in addition to 'ima_cor').
|
---|
31 | % a type is associated to each scalar:
|
---|
32 | % 'discrete': related to the individual velocity vectors, not interpolated by patch
|
---|
33 | % 'vel': calculated from velocity components, continuous field (interpolated with velocity)
|
---|
34 | % 'der': needs spatial derivatives
|
---|
35 | % 'var': the scalar name corresponds to a field name in the netcdf files
|
---|
36 | % a specific variable name for civ1 and civ2 fields are also associated, if
|
---|
37 | % the scalar is calculated from other fields, as explicited below
|
---|
38 |
|
---|
39 | %% list of field options implemented
|
---|
40 | FieldOptions={'vec(U,V)';...%image correlation corresponding to a vel vector
|
---|
41 | 'C';...%image correlation corresponding to a vel vector
|
---|
42 | 'norm(U,V)';...%norm of the velocity
|
---|
43 | 'curl(U,V)';...%vorticity
|
---|
44 | 'div(U,V)';...%divergence
|
---|
45 | 'strain(U,V)';...%rate of strain
|
---|
46 | 'U';... %u velocity component
|
---|
47 | 'V';... %v velocity component
|
---|
48 | 'w';... %w velocity component
|
---|
49 | 'w_normal';... %w velocity component normal to the plane
|
---|
50 | 'error'}; %error associated to a vector (for stereo or patch)
|
---|
51 | ColorList={'C';...%image correlation corresponding to a vel vector
|
---|
52 | 'norm(U,V)';...%norm of the velocity
|
---|
53 | 'U';... %u velocity component
|
---|
54 | 'V';... %v velocity component
|
---|
55 | }
|
---|
56 | % errormsg=[]; %default error message
|
---|
57 | % if ~exist('FieldList','var')
|
---|
58 | % DataOut=FieldOptions;% gives the list of possible field inputs in the absence of input
|
---|
59 | % return
|
---|
60 | % end
|
---|
61 | return
|
---|
62 | %% check input
|
---|
63 | if ~exist('DataIn','var')
|
---|
64 | DataIn=[];
|
---|
65 | end
|
---|
66 | if ischar(FieldList)
|
---|
67 | FieldList={FieldList};%convert a string input to a cell with one string element
|
---|
68 | end
|
---|
69 | check_grid=0;
|
---|
70 | check_der=0;
|
---|
71 | check_calc=ones(size(FieldList));
|
---|
72 | for ilist=1:length(FieldList)
|
---|
73 | switch FieldList{ilist}
|
---|
74 | case {'u','v','velocity','norm_vel','ima_cor'}
|
---|
75 | check_grid=1;% needs a regular grid
|
---|
76 | case{'vort','div','strain'}% needs spatial derivatives spatial derivatives
|
---|
77 | check_der=1;
|
---|
78 | % case {'velocity','norm_vel','ima_cor'};
|
---|
79 | otherwise
|
---|
80 | check_calc(ilist)=0;
|
---|
81 | end
|
---|
82 | end
|
---|
83 | FieldList=FieldList(check_calc==1);
|
---|
84 | if isfield(DataIn,'Z')&& isequal(size(DataIn.Z),size(DataIn.X))
|
---|
85 | nbcoord=3;
|
---|
86 | else
|
---|
87 | nbcoord=2;
|
---|
88 | end
|
---|
89 | ListVarName={};
|
---|
90 | ValueList={};
|
---|
91 | RoleList={};
|
---|
92 | units_cell={};
|
---|
93 |
|
---|
94 | %% reproduce global attributes
|
---|
95 | DataOut.ListGlobalAttribute=DataIn.ListGlobalAttribute;
|
---|
96 | for ilist=1:numel(DataOut.ListGlobalAttribute)
|
---|
97 | DataOut.(DataOut.ListGlobalAttribute{ilist})=DataIn.(DataIn.ListGlobalAttribute{ilist});
|
---|
98 | end
|
---|
99 |
|
---|
100 | %% interpolation with new civ data
|
---|
101 | [CellVarIndex,NbDimVec,VarTypeCell,errormsg]=find_field_cells(DataIn);
|
---|
102 | icell_tps=[];
|
---|
103 | for icell=1:numel(CellVarIndex)
|
---|
104 | VarType=VarTypeCell{icell};
|
---|
105 | if NbDimVec(icell)>=2 && ~isempty(VarType.subrange_tps)
|
---|
106 | icell_tps=[icell_tps icell];
|
---|
107 | end
|
---|
108 | end
|
---|
109 |
|
---|
110 | %if isfield(DataIn,'SubRange') && isfield(DataIn,'Coord_tps') && (exist('Coord_interp','var') || check_grid ||check_der)
|
---|
111 | if ~isempty(icell_tps)
|
---|
112 | %create a default grid if needed
|
---|
113 | if ~exist('Coord_interp','var')
|
---|
114 | for ind=1:numel(icell_tps)
|
---|
115 | SubRange=DataIn.(DataIn.ListVarName{VarType{icell_tps(ind)}.subrange_tps});
|
---|
116 | XMax(ind)=max(max(SubRange(1,:,:)));% extrema of the coordinates
|
---|
117 | YMax(ind)=max(max(SubRange(2,:,:)));
|
---|
118 | XMin(ind)=min(min(SubRange(1,:,:)));
|
---|
119 | YMin(ind)=min(min(SubRange(2,:,:)));
|
---|
120 | end
|
---|
121 | XMax=max(XMax);
|
---|
122 | YMax=max(YMax);
|
---|
123 | XMin=min(XMin);
|
---|
124 | YMin=min(YMin);
|
---|
125 | if ~isfield(DataIn,'Mesh')
|
---|
126 | DataIn.Mesh=sqrt(2*(XMax-XMin)*(YMax-YMin)/numel(DataIn.Coord_tps));
|
---|
127 | % adjust the mesh to a value 1, 2 , 5 *10^n
|
---|
128 | ord=10^(floor(log10(DataIn.Mesh)));%order of magnitude
|
---|
129 | if DataIn.Mesh/ord>=5
|
---|
130 | DataIn.Mesh=5*ord;
|
---|
131 | elseif DataIn.Mesh/ord>=2
|
---|
132 | DataIn.Mesh=2*ord;
|
---|
133 | else
|
---|
134 | DataIn.Mesh=ord;
|
---|
135 | end
|
---|
136 | end
|
---|
137 | coord_x=XMin:DataIn.Mesh:XMax;% increase the recommanded mesh to visualisation
|
---|
138 | coord_y=YMin:DataIn.Mesh:YMax;
|
---|
139 | DataOut.coord_x=[XMin XMax];
|
---|
140 | DataOut.coord_y=[YMin YMax];
|
---|
141 | [XI,YI]=meshgrid(coord_x,coord_y);
|
---|
142 | Coord_interp=cat(3,XI,YI);%[XI YI];
|
---|
143 | end
|
---|
144 | npx=size(Coord_interp,2);
|
---|
145 | npy=size(Coord_interp,1);
|
---|
146 | Coord_interp=reshape(Coord_interp,npx*npy,size(Coord_interp,3));
|
---|
147 |
|
---|
148 | %initialise output
|
---|
149 | nb_sites=size(Coord_interp,1);
|
---|
150 | nb_coord=size(Coord_interp,2);
|
---|
151 | nbval=zeros(nb_sites,1);
|
---|
152 | NbSubDomain=size(DataIn.SubRange,3);
|
---|
153 | DataOut.ListVarName={'coord_y','coord_x'};
|
---|
154 | DataOut.VarDimName={{'coord_y'},{'coord_x'}};
|
---|
155 | DataOut.VarAttribute{1}=[];
|
---|
156 | DataOut.VarAttribute{2}=[];
|
---|
157 | for ilist=1:length(FieldList)
|
---|
158 | switch FieldList{ilist}
|
---|
159 | case 'velocity'
|
---|
160 | DataOut.U=zeros(nb_sites,1);
|
---|
161 | DataOut.V=zeros(nb_sites,1);
|
---|
162 | otherwise
|
---|
163 | DataOut.(FieldList{ilist})=zeros(nb_sites,1);
|
---|
164 | end
|
---|
165 | end
|
---|
166 |
|
---|
167 | % interpolate data in each subdomain
|
---|
168 | for icell=icell_tps
|
---|
169 | for isub=1:NbSubDomain
|
---|
170 | nbvec_sub=DataIn.(DataIn.ListVarName{VarType{icell}.nbsites_tps});
|
---|
171 | SubRange=DataIn.(DataIn.ListVarName{VarType{icell}.subrange_tps});
|
---|
172 | check_range=(Coord_interp >=ones(nb_sites,1)*SubRange(:,1,isub)' & Coord_interp<=ones(nb_sites,1)*SubRange(:,2,isub)');
|
---|
173 | ind_sel=find(sum(check_range,2)==nb_coord);
|
---|
174 | nbval(ind_sel)=nbval(ind_sel)+1;% records the number of values for eacn interpolation point (in case of subdomain overlap)
|
---|
175 | Coord_tps=DataIn.(DataIn.ListVarName{VarType{icell}.coord_tps});
|
---|
176 | if check_grid
|
---|
177 | EM = tps_eval(Coord_interp(ind_sel,:),Coord_tps(1:nbvec_sub,:,isub));%kernels for calculating the velocity from tps 'sources'
|
---|
178 | end
|
---|
179 | if check_der
|
---|
180 | [EMDX,EMDY] = tps_eval_dxy(Coord_interp(ind_sel,:),Coord_tps(1:nbvec_sub,:,isub));%kernels for calculating the spatial derivatives from tps 'sources'
|
---|
181 | end
|
---|
182 | ListVar={};
|
---|
183 | U_tps=DataIn.(DataIn.ListVarName{VarType{icell}.vector_x_tps});
|
---|
184 | V_tps=DataIn.(DataIn.ListVarName{VarType{icell}.vector_y_tps});
|
---|
185 | for ilist=1:length(FieldList)
|
---|
186 | var_count=numel(ListVar);
|
---|
187 | switch FieldList{ilist}
|
---|
188 | case 'velocity'
|
---|
189 | ListVar=[ListVar {'U', 'V'}];
|
---|
190 | VarAttribute{var_count+1}.Role='vector_x';
|
---|
191 | VarAttribute{var_count+2}.Role='vector_y';
|
---|
192 | DataOut.U(ind_sel)=DataOut.U(ind_sel)+EM *U_tps(1:nbvec_sub+3,isub);
|
---|
193 | DataOut.V(ind_sel)=DataOut.V(ind_sel)+EM *V_tps(1:nbvec_sub+3,isub);
|
---|
194 | case 'u'
|
---|
195 | ListVar=[ListVar {'u'}];
|
---|
196 | VarAttribute{var_count+1}.Role='scalar';
|
---|
197 | DataOut.u(ind_sel)=DataOut.u(ind_sel)+EM *U_tps(1:nbvec_sub+3,isub);
|
---|
198 | case 'v'
|
---|
199 | ListVar=[ListVar {'v'}];
|
---|
200 | VarAttribute{var_count+1}.Role='scalar';
|
---|
201 | DataOut.v(ind_sel)=DataOut.v(ind_sel)+EM *V_tps(1:nbvec_sub+3,isub);
|
---|
202 | case 'norm_vel'
|
---|
203 | ListVar=[ListVar {'norm_vel'}];
|
---|
204 | VarAttribute{var_count+1}.Role='scalar';
|
---|
205 | U=DataOut.U(ind_sel)+EM *U_tps(1:nbvec_sub+3,isub);
|
---|
206 | V=DataOut.V(ind_sel)+EM *V_tps(1:nbvec_sub+3,isub);
|
---|
207 | DataOut.norm_vel(ind_sel)=sqrt(U.*U+V.*V);
|
---|
208 | case 'vort'
|
---|
209 | ListVar=[ListVar {'vort'}];
|
---|
210 | VarAttribute{var_count+1}.Role='scalar';
|
---|
211 | DataOut.vort(ind_sel)=DataOut.vort(ind_sel)-EMDY *DataIn.U_tps(1:nbvec_sub+3,isub)+EMDX *DataIn.V_tps(1:nbvec_sub+3,isub);
|
---|
212 | case 'div'
|
---|
213 | ListVar=[ListVar {'div'}];
|
---|
214 | VarAttribute{var_count+1}.Role='scalar';
|
---|
215 | DataOut.div(ind_sel)=DataOut.div(ind_sel)+EMDX*DataIn.U_tps(1:nbvec_sub+3,isub)+EMDY *DataIn.V_tps(1:nbvec_sub+3,isub);
|
---|
216 | case 'strain'
|
---|
217 | ListVar=[ListVar {'strain'}];
|
---|
218 | VarAttribute{var_count+1}.Role='scalar';
|
---|
219 | DataOut.strain(ind_sel)=DataOut.strain(ind_sel)+EMDY*DataIn.U_tps(1:nbvec_sub+3,isub)+EMDX *DataIn.V_tps(1:nbvec_sub+3,isub);
|
---|
220 | end
|
---|
221 | end
|
---|
222 | end
|
---|
223 | DataOut.FF=nbval==0; %put errorflag to 1 for points outside the interpolation rang
|
---|
224 | nbval(nbval==0)=1;% to avoid division by zero for averaging
|
---|
225 | if isempty(find(strcmp('FF',DataOut.ListVarName),1))% if FF is not already listed
|
---|
226 | DataOut.ListVarName=[DataOut.ListVarName {'FF'}];
|
---|
227 | DataOut.VarDimName=[DataOut.VarDimName {{'coord_y','coord_x'}}];
|
---|
228 | DataOut.VarAttribute{length(DataOut.ListVarName)}.Role='errorflag';
|
---|
229 | end
|
---|
230 | DataOut.ListVarName=[DataOut.ListVarName ListVar];
|
---|
231 | for ifield=1:numel(ListVar)
|
---|
232 | VarDimName{ifield}={'coord_y','coord_x'};
|
---|
233 | DataOut.(ListVar{ifield})=DataOut.(ListVar{ifield})./nbval;
|
---|
234 | DataOut.(ListVar{ifield})=reshape(DataOut.(ListVar{ifield}),npy,npx);
|
---|
235 | end
|
---|
236 | DataOut.FF=reshape(DataOut.FF,npy,npx);
|
---|
237 | DataOut.VarDimName=[DataOut.VarDimName VarDimName];
|
---|
238 | DataOut.VarAttribute=[DataOut.VarAttribute VarAttribute];
|
---|
239 | end
|
---|
240 | else
|
---|
241 |
|
---|
242 | %% civx data
|
---|
243 | DataOut=DataIn;
|
---|
244 | for ilist=1:length(FieldList)
|
---|
245 | if ~isempty(FieldList{ilist})
|
---|
246 | [VarName,Value,Role,units]=feval(FieldList{ilist},DataIn);%calculate field with appropriate function named FieldList{ilist}
|
---|
247 | ListVarName=[ListVarName VarName];
|
---|
248 | ValueList=[ValueList Value];
|
---|
249 | RoleList=[RoleList Role];
|
---|
250 | units_cell=[units_cell units];
|
---|
251 | end
|
---|
252 | end
|
---|
253 | %erase previous data (except coordinates)
|
---|
254 | for ivar=nbcoord+1:length(DataOut.ListVarName)
|
---|
255 | VarName=DataOut.ListVarName{ivar};
|
---|
256 | DataOut=rmfield(DataOut,VarName);
|
---|
257 | end
|
---|
258 | DataOut.ListVarName=DataOut.ListVarName(1:nbcoord);
|
---|
259 | if isfield(DataOut,'VarDimName')
|
---|
260 | DataOut.VarDimName=DataOut.VarDimName(1:nbcoord);
|
---|
261 | else
|
---|
262 | errormsg='element .VarDimName missing in input data';
|
---|
263 | return
|
---|
264 | end
|
---|
265 | DataOut.VarAttribute=DataOut.VarAttribute(1:nbcoord);
|
---|
266 | %append new data
|
---|
267 | DataOut.ListVarName=[DataOut.ListVarName ListVarName];
|
---|
268 | for ivar=1:length(ListVarName)
|
---|
269 | DataOut.VarDimName{nbcoord+ivar}=DataOut.VarDimName{1};
|
---|
270 | DataOut.VarAttribute{nbcoord+ivar}.Role=RoleList{ivar};
|
---|
271 | DataOut.VarAttribute{nbcoord+ivar}.units=units_cell{ivar};
|
---|
272 | DataOut.(ListVarName{ivar})=ValueList{ivar};
|
---|
273 | end
|
---|
274 | end
|
---|
275 |
|
---|
276 |
|
---|
277 |
|
---|
278 | %%%%%%%%%%%%% velocity fieldn%%%%%%%%%%%%%%%%%%%%
|
---|
279 | function [VarName,ValCell,Role,units_cell]=velocity(DataIn)
|
---|
280 | VarName={};
|
---|
281 | ValCell={};
|
---|
282 | Role={};
|
---|
283 | units_cell={};
|
---|
284 | if isfield(DataIn,'CoordUnit') && isfield(DataIn,'TimeUnit')
|
---|
285 | units=[DataIn.CoordUnit '/' DataIn.TimeUnit];
|
---|
286 | else
|
---|
287 | units='pixel';
|
---|
288 | end
|
---|
289 | if isfield(DataIn,'U')
|
---|
290 | VarName=[VarName {'U'}];
|
---|
291 | ValCell=[ValCell {DataIn.U}];
|
---|
292 | Role=[Role {'vector_x'}];
|
---|
293 | units_cell=[units_cell {units}];
|
---|
294 | end
|
---|
295 | if isfield(DataIn,'V')
|
---|
296 | VarName=[VarName {'V'}];
|
---|
297 | ValCell=[ValCell {DataIn.V}];
|
---|
298 | Role=[Role {'vector_y'}];
|
---|
299 | units_cell=[units_cell {units}];
|
---|
300 | end
|
---|
301 | if isfield(DataIn,'W')
|
---|
302 | VarName=[VarName {'W'}];
|
---|
303 | ValCell=[ValCell {DataIn.W}];
|
---|
304 | Role=[Role {'vector_z'}];
|
---|
305 | units_cell=[units_cell {units}];
|
---|
306 | end
|
---|
307 | if isfield(DataIn,'F')
|
---|
308 | VarName=[VarName {'F'}];
|
---|
309 | ValCell=[ValCell {DataIn.F}];
|
---|
310 | Role=[Role {'warnflag'}];
|
---|
311 | units_cell=[units_cell {[]}];
|
---|
312 | end
|
---|
313 | if isfield(DataIn,'FF')
|
---|
314 | VarName=[VarName,{'FF'}];
|
---|
315 | ValCell=[ValCell {DataIn.FF}];
|
---|
316 | Role=[Role {'errorflag'}];
|
---|
317 | units_cell=[units_cell {[]}];
|
---|
318 | end
|
---|
319 |
|
---|
320 | %%%%%%%%%%%%% ima cor%%%%%%%%%%%%%%%%%%%%
|
---|
321 | function [VarName,ValCell,Role,units]=ima_cor(DataIn)
|
---|
322 | VarName={};
|
---|
323 | ValCell={};
|
---|
324 | Role={};
|
---|
325 | units={};
|
---|
326 | if isfield(DataIn,'C')
|
---|
327 | VarName{1}='C';
|
---|
328 | ValCell{1}=DataIn.C;
|
---|
329 | Role={'ancillary'};
|
---|
330 | units={[]};
|
---|
331 | end
|
---|
332 |
|
---|
333 | %%%%%%%%%%%%% norm_vec %%%%%%%%%%%%%%%%%%%%
|
---|
334 | function [VarName,ValCell,Role,units]=norm_vel(DataIn)
|
---|
335 | VarName={};
|
---|
336 | ValCell={};
|
---|
337 | Role={};
|
---|
338 | units={};
|
---|
339 | if isfield(DataIn,'U') && isfield(DataIn,'V')
|
---|
340 | VarName{1}='norm_vel';
|
---|
341 | ValCell{1}=DataIn.U.*DataIn.U+ DataIn.V.*DataIn.V;
|
---|
342 | if isfield(DataIn,'W') && isequal(size(DataIn.W),size(DataIn.U))
|
---|
343 | ValCell{1}=ValCell{1}+DataIn.W.*DataIn.W;
|
---|
344 | end
|
---|
345 | ValCell{1}=sqrt(ValCell{1});
|
---|
346 | Role{1}='scalar';
|
---|
347 | if isfield(DataIn,'CoordUnit') && isfield(DataIn,'TimeUnit')
|
---|
348 | units={[DataIn.CoordUnit '/' DataIn.TimeUnit]};
|
---|
349 | else
|
---|
350 | units={'pixel'};
|
---|
351 | end
|
---|
352 | end
|
---|
353 |
|
---|
354 |
|
---|
355 |
|
---|
356 | %%%%%%%%%%%%% vorticity%%%%%%%%%%%%%%%%%%%%
|
---|
357 | function [VarName,ValCell,Role,units]=vort(DataIn)
|
---|
358 | VarName={};
|
---|
359 | ValCell={};
|
---|
360 | Role={};
|
---|
361 | units={};
|
---|
362 | if isfield(DataIn,'DjUi')
|
---|
363 | VarName{1}='vort';
|
---|
364 | ValCell{1}=DataIn.DjUi(:,1,2)-DataIn.DjUi(:,2,1); %vorticity
|
---|
365 | siz=size(ValCell{1});
|
---|
366 | ValCell{1}=reshape(ValCell{1},siz(1),1);
|
---|
367 | Role{1}='scalar';
|
---|
368 | if isfield(DataIn,'TimeUnit')
|
---|
369 | units={[DataIn.TimeUnit '-1']};
|
---|
370 | else
|
---|
371 | units={[]};
|
---|
372 | end
|
---|
373 | end
|
---|
374 |
|
---|
375 | %%%%%%%%%%%%% divergence%%%%%%%%%%%%%%%%%%%%
|
---|
376 | function [VarName,ValCell,Role,units]=div(DataIn)
|
---|
377 | VarName={};
|
---|
378 | ValCell={};
|
---|
379 | Role={};
|
---|
380 | units={};
|
---|
381 | if isfield(DataIn,'DjUi')
|
---|
382 | VarName{1}='div';
|
---|
383 | ValCell{1}=DataIn.DjUi(:,1,1)+DataIn.DjUi(:,2,2); %DUDX+DVDY
|
---|
384 | siz=size(ValCell{1});
|
---|
385 | ValCell{1}=reshape(ValCell{1},siz(1),1);
|
---|
386 | Role{1}='scalar';
|
---|
387 | if isfield(DataIn,'TimeUnit')
|
---|
388 | units={[DataIn.TimeUnit '-1']};
|
---|
389 | else
|
---|
390 | units={[]};
|
---|
391 | end
|
---|
392 | end
|
---|
393 |
|
---|
394 | %%%%%%%%%%%%% strain %%%%%%%%%%%%%%%%%%%%
|
---|
395 | function [VarName,ValCell,Role,units]=strain(DataIn)
|
---|
396 | VarName={};
|
---|
397 | ValCell={};
|
---|
398 | Role={};
|
---|
399 | units={};
|
---|
400 | if isfield(DataIn,'DjUi')
|
---|
401 | VarName{1}='strain';
|
---|
402 | ValCell{1}=DataIn.DjUi(:,1,2)+DataIn.DjUi(:,2,1);%DVDX+DUDY
|
---|
403 | siz=size(ValCell{1});
|
---|
404 | ValCell{1}=reshape(ValCell{1},siz(1),1);
|
---|
405 | Role{1}='scalar';
|
---|
406 | if isfield(DataIn,'TimeUnit')
|
---|
407 | units={[DataIn.TimeUnit '-1']};
|
---|
408 | else
|
---|
409 | units={[]};
|
---|
410 | end
|
---|
411 | end
|
---|
412 |
|
---|
413 | %%%%%%%%%%%%% u %%%%%%%%%%%%%%%%%%%%
|
---|
414 | function [VarName,ValCell,Role,units]=u(DataIn)
|
---|
415 | VarName={};
|
---|
416 | ValCell={};
|
---|
417 | Role={};
|
---|
418 | units={};
|
---|
419 | if isfield(DataIn,'U')
|
---|
420 | VarName{1}='U';
|
---|
421 | ValCell{1}=DataIn.U;
|
---|
422 | Role{1}='scalar';
|
---|
423 | if isfield(DataIn,'CoordUnit') && isfield(DataIn,'TimeUnit')
|
---|
424 | units={[DataIn.CoordUnit '/' DataIn.TimeUnit]};
|
---|
425 | else
|
---|
426 | units={'pixel'};
|
---|
427 | end
|
---|
428 | end
|
---|
429 |
|
---|
430 | %%%%%%%%%%%%% v %%%%%%%%%%%%%%%%%%%%
|
---|
431 | function [VarName,ValCell,Role,units]=v(DataIn)
|
---|
432 | VarName={};
|
---|
433 | ValCell={};
|
---|
434 | Role={};
|
---|
435 | units={};
|
---|
436 | if isfield(DataIn,'V')
|
---|
437 | VarName{1}='V';
|
---|
438 | ValCell{1}=DataIn.V;
|
---|
439 | Role{1}='scalar';
|
---|
440 | if isfield(DataIn,'CoordUnit') && isfield(DataIn,'TimeUnit')
|
---|
441 | units={[DataIn.CoordUnit '/' DataIn.TimeUnit]};
|
---|
442 | else
|
---|
443 | units={'pixel'};
|
---|
444 | end
|
---|
445 | end
|
---|
446 |
|
---|
447 | %%%%%%%%%%%%% w %%%%%%%%%%%%%%%%%%%%
|
---|
448 | function [VarName,ValCell,Role,units]=w(DataIn)
|
---|
449 | VarName={};
|
---|
450 | ValCell={};
|
---|
451 | Role={};
|
---|
452 | units={};
|
---|
453 | if isfield(DataIn,'W')
|
---|
454 | VarName{1}='W';
|
---|
455 | ValCell{1}=DataIn.W;
|
---|
456 | Role{1}='scalar';%will remain unchanged by projection
|
---|
457 | if isfield(DataIn,'CoordUnit') && isfield(DataIn,'TimeUnit')
|
---|
458 | units={[DataIn.CoordUnit '/' DataIn.TimeUnit]};
|
---|
459 | else
|
---|
460 | units={'pixel'};
|
---|
461 | end
|
---|
462 | end
|
---|
463 |
|
---|
464 | %%%%%%%%%%%%% w_normal %%%%%%%%%%%%%%%%%%%%
|
---|
465 | function [VarName,ValCell,Role,units]=w_normal(DataIn)
|
---|
466 | VarName={};
|
---|
467 | ValCell={};
|
---|
468 | Role={};
|
---|
469 | units={};
|
---|
470 | if isfield(DataIn,'W')
|
---|
471 | VarName{1}='W';
|
---|
472 | ValCell{1}=DataIn.W;
|
---|
473 | Role{1}='vector_z';%will behave like a vector component by projection
|
---|
474 | if isfield(DataIn,'CoordUnit') && isfield(DataIn,'TimeUnit')
|
---|
475 | units={[DataIn.CoordUnit '/' DataIn.TimeUnit]};
|
---|
476 | else
|
---|
477 | units={'pixel'};
|
---|
478 | end
|
---|
479 | end
|
---|
480 |
|
---|
481 | %%%%%%%%%%%%% error %%%%%%%%%%%%%%%%%%%%
|
---|
482 | function [VarName,ValCell,Role,units]=error(DataIn)
|
---|
483 | VarName={};
|
---|
484 | ValCell={};
|
---|
485 | Role={};
|
---|
486 | units={};
|
---|
487 | if isfield(DataIn,'E')
|
---|
488 | VarName{1}='E';
|
---|
489 | ValCell{1}=DataIn.E;
|
---|
490 | Role{1}='ancillary'; %TODO CHECK units in actual fields
|
---|
491 | if isfield(DataIn,'CoordUnit') && isfield(DataIn,'TimeUnit')
|
---|
492 | units={[DataIn.CoordUnit '/' DataIn.TimeUnit]};
|
---|
493 | else
|
---|
494 | units={'pixel'};
|
---|
495 | end
|
---|
496 | end
|
---|
497 |
|
---|