%'calc_field_interp': defines fields (velocity, vort, div...) from civ data and calculate them % for projection with linear interpolation %--------------------------------------------------------------------- % [VarVal,ListVarName,VarAttribute,errormsg]=calc_field_interp(Coord,Data,FieldName,XI,YI) % % OUTPUT: % VarVal: array giving the values of the calculated field % ListVarName: corresponding list of variable names % VarAttribute: corresponding list of variable attributes, each term #ilist is of the form VarAttribute{ilist}.tag=value % % INPUT: % Coord(nbpoints,2): matrix of x,y coordinates of theinput data points % Data: inputfield structure % FieldName: string representing the field to calculate, or cell array of fields (as displayed in uvmat/FieldName) % XI, YI: set of x and y coordiantes where the fields need to be linearly interpolated function [VarVal,ListVarName,VarAttribute,errormsg]=calc_field_interp(Coord,Data,FieldName,XI,YI) VarVal={}; ListVarName={}; VarAttribute={}; errormsg=''; InputVarList={}; if ischar(FieldName),FieldName={FieldName};end check_skipped=zeros(size(FieldName));% default, =1 to mark the variables which can be calculated Operator=cell(size(FieldName)); for ilist=1:numel(FieldName) Operator{ilist}='';%default empty operator (vec, norm,...) r=regexp(FieldName{ilist},'(?(^vec|^norm|^curl|^div|^strain))\((?.+),(?.+)\)$','names');% analyse the field name if isempty(r) % the field name is a variable itself if ~isfield(Data,FieldName{ilist}) check_skipped(ilist)=1; %variable not found else if isempty(find(strcmp(FieldName{ilist},InputVarList), 1)); InputVarList=[InputVarList FieldName{ilist}];% the variable is added to the list of input variables if it is not already in the list end end else if ~isfield(Data,r.UName)||~isfield(Data,r.VName)%needed input variable not found check_skipped(ilist)=1; elseif strcmp(r.Operator,'curl')||strcmp(r.Operator,'div')||strcmp(r.Operator,'strain') Operator{ilist}=r.Operator; switch r.Operator case 'curl'% case of CivX data format UName{ilist}='vort'; Data.vort=Data.DjUi(:,1,2)-Data.DjUi(:,2,1); case 'div' UName{ilist}='div'; Data.div=Data.DjUi(:,1,1)+Data.DjUi(:,2,2); case 'strain' UName{ilist}='strain'; Data.strain=Data.DjUi(:,1,2)+Data.DjUi(:,2,1); end InputVarList=[InputVarList UName{ilist}]; %the variable is added to the list if it is not already in the list else UName{ilist}=r.UName; VName{ilist}=r.VName; if isempty(find(strcmp(r.UName,InputVarList))); InputVarList=[InputVarList UName{ilist}]; %the variable is added to the list if it is not already in the list end if isempty(find(strcmp(r.VName,InputVarList), 1)); InputVarList=[InputVarList VName{ilist}]; %the variable is added to the list if it is not already in the list end Operator{ilist}=r.Operator; end end end %create interpolator for linear interpolation if exist('XI','var') for ilist=1:numel(InputVarList) F.(InputVarList{ilist})=TriScatteredInterp(Coord,Data.(InputVarList{ilist}),'linear'); end end for ilist=1:numel(FieldName) if ~check_skipped(ilist) nbvar=numel(ListVarName); switch Operator{ilist} case 'vec' if exist('XI','var') VarVal{nbvar+1}=F.(UName{ilist})(XI,YI); VarVal{nbvar+2}=F.(VName{ilist})(XI,YI); else VarVal{nbvar+1}=Data.(UName{ilist}); VarVal{nbvar+2}=Data.(VName{ilist}); end ListVarName{nbvar+1}=UName{ilist}; ListVarName{nbvar+2}=VName{ilist}; VarAttribute{nbvar+1}.Role='vector_x'; VarAttribute{nbvar+2}.Role='vector_y'; case 'norm' if exist('XI','var') U2=F.(UName{ilist})(XI,YI).*F.(UName{ilist})(XI,YI); V2=F.(VName{ilist})(XI,YI).*F.(VName{ilist})(XI,YI); else U2=Data.(UName{ilist}).*Data.(UName{ilist}); V2=Data.(VName{ilist}).*Data.(VName{ilist}); end VarVal{nbvar+1}=sqrt(U2+V2); ListVarName{nbvar+1}='norm'; VarAttribute{nbvar+1}.Role='scalar'; case {'curl','div','strain'} if exist('XI','var') VarVal{nbvar+1}=F.(UName{ilist})(XI,YI); else VarVal{nbvar+1}=Data.(UName{ilist}); end ListVarName{nbvar+1}=UName{ilist}; VarAttribute{nbvar+1}.Role='scalar'; otherwise if ~isempty(FieldName{ilist}) if exist('XI','var') VarVal{nbvar+1}=F.(FieldName{ilist})(XI,YI); else VarVal{nbvar+1}= Data.(FieldName{ilist}); end ListVarName{nbvar+1}=FieldName{ilist}; VarAttribute{nbvar+1}.Role='scalar'; end end end end % put an error flag to indicate NaN data if exist('XI','var')&&~isempty(VarVal) nbvar=numel(ListVarName); ListVarName{nbvar+1}='FF'; VarVal{nbvar+1}=isnan(VarVal{nbvar}); VarAttribute{nbvar+1}.Role='errorflag'; end % Attr_FF.Role='errorflag'; % VarAttribute=[VarAttribute {Attr_FF}];