[575] | 1 | %'calc_field_interp': defines fields (velocity, vort, div...) from civ data and calculate them
|
---|
| 2 | % for projection with linear interpolation
|
---|
[515] | 3 | %---------------------------------------------------------------------
|
---|
[579] | 4 | % [VarVal,ListVarName,VarAttribute,errormsg]=calc_field_interp(Coord,Data,FieldName,XI,YI)
|
---|
[515] | 5 | %
|
---|
| 6 | % OUTPUT:
|
---|
[575] | 7 | % VarVal: array giving the values of the calculated field
|
---|
[579] | 8 | % ListVarName: corresponding list of variable names
|
---|
| 9 | % VarAttribute: corresponding list of variable attributes, each term #ilist is of the form VarAttribute{ilist}.tag=value
|
---|
[515] | 10 | %
|
---|
| 11 | % INPUT:
|
---|
[579] | 12 | % Coord(nbpoints,2): matrix of x,y coordinates of theinput data points
|
---|
| 13 | % Data: inputfield structure
|
---|
| 14 | % FieldName: string representing the field to calculate, or cell array of fields (as displayed in uvmat/FieldName)
|
---|
| 15 | % XI, YI: set of x and y coordiantes where the fields need to be linearly interpolated
|
---|
[515] | 16 |
|
---|
[579] | 17 | function [VarVal,ListVarName,VarAttribute,errormsg]=calc_field_interp(Coord,Data,FieldName,XI,YI)
|
---|
[515] | 18 |
|
---|
[644] | 19 | %% initialization
|
---|
[579] | 20 | VarVal={};
|
---|
[515] | 21 | ListVarName={};
|
---|
| 22 | VarAttribute={};
|
---|
| 23 | errormsg='';
|
---|
[517] | 24 | InputVarList={};
|
---|
[579] | 25 | if ischar(FieldName),FieldName={FieldName};end
|
---|
| 26 | check_skipped=zeros(size(FieldName));% default, =1 to mark the variables which can be calculated
|
---|
| 27 | Operator=cell(size(FieldName));
|
---|
[644] | 28 |
|
---|
| 29 | %% analyse the list of input fields: needed variables and requested operations
|
---|
[579] | 30 | for ilist=1:numel(FieldName)
|
---|
| 31 | Operator{ilist}='';%default empty operator (vec, norm,...)
|
---|
| 32 | r=regexp(FieldName{ilist},'(?<Operator>(^vec|^norm|^curl|^div|^strain))\((?<UName>.+),(?<VName>.+)\)$','names');% analyse the field name
|
---|
| 33 | if isempty(r) % the field name is a variable itself
|
---|
| 34 | if ~isfield(Data,FieldName{ilist})
|
---|
| 35 | check_skipped(ilist)=1; %variable not found
|
---|
[521] | 36 | else
|
---|
[579] | 37 | if isempty(find(strcmp(FieldName{ilist},InputVarList), 1));
|
---|
| 38 | InputVarList=[InputVarList FieldName{ilist}];% the variable is added to the list of input variables if it is not already in the list
|
---|
[521] | 39 | end
|
---|
[517] | 40 | end
|
---|
| 41 | else
|
---|
[579] | 42 | if ~isfield(Data,r.UName)||~isfield(Data,r.VName)%needed input variable not found
|
---|
[521] | 43 | check_skipped(ilist)=1;
|
---|
[579] | 44 | elseif strcmp(r.Operator,'curl')||strcmp(r.Operator,'div')||strcmp(r.Operator,'strain')
|
---|
| 45 | Operator{ilist}=r.Operator;
|
---|
| 46 | switch r.Operator
|
---|
| 47 | case 'curl'% case of CivX data format
|
---|
| 48 | UName{ilist}='vort';
|
---|
| 49 | Data.vort=Data.DjUi(:,1,2)-Data.DjUi(:,2,1);
|
---|
| 50 | case 'div'
|
---|
| 51 | UName{ilist}='div';
|
---|
| 52 | Data.div=Data.DjUi(:,1,1)+Data.DjUi(:,2,2);
|
---|
| 53 | case 'strain'
|
---|
| 54 | UName{ilist}='strain';
|
---|
| 55 | Data.strain=Data.DjUi(:,1,2)+Data.DjUi(:,2,1);
|
---|
| 56 | end
|
---|
| 57 | InputVarList=[InputVarList UName{ilist}]; %the variable is added to the list if it is not already in the list
|
---|
[521] | 58 | else
|
---|
| 59 | UName{ilist}=r.UName;
|
---|
| 60 | VName{ilist}=r.VName;
|
---|
| 61 | if isempty(find(strcmp(r.UName,InputVarList)));
|
---|
| 62 | InputVarList=[InputVarList UName{ilist}]; %the variable is added to the list if it is not already in the list
|
---|
| 63 | end
|
---|
[579] | 64 | if isempty(find(strcmp(r.VName,InputVarList), 1));
|
---|
[521] | 65 | InputVarList=[InputVarList VName{ilist}]; %the variable is added to the list if it is not already in the list
|
---|
| 66 | end
|
---|
| 67 | Operator{ilist}=r.Operator;
|
---|
[517] | 68 | end
|
---|
[515] | 69 | end
|
---|
| 70 | end
|
---|
[644] | 71 |
|
---|
| 72 | %% create interpolator for each variable to interpolate
|
---|
[517] | 73 | if exist('XI','var')
|
---|
| 74 | for ilist=1:numel(InputVarList)
|
---|
| 75 | F.(InputVarList{ilist})=TriScatteredInterp(Coord,Data.(InputVarList{ilist}),'linear');
|
---|
| 76 | end
|
---|
[515] | 77 | end
|
---|
[644] | 78 |
|
---|
| 79 | %% perform the linear interpolation for the requested variables
|
---|
[579] | 80 | for ilist=1:numel(FieldName)
|
---|
[521] | 81 | if ~check_skipped(ilist)
|
---|
[533] | 82 | nbvar=numel(ListVarName);
|
---|
| 83 | switch Operator{ilist}
|
---|
| 84 | case 'vec'
|
---|
[517] | 85 | if exist('XI','var')
|
---|
[533] | 86 | VarVal{nbvar+1}=F.(UName{ilist})(XI,YI);
|
---|
| 87 | VarVal{nbvar+2}=F.(VName{ilist})(XI,YI);
|
---|
[517] | 88 | else
|
---|
[533] | 89 | VarVal{nbvar+1}=Data.(UName{ilist});
|
---|
| 90 | VarVal{nbvar+2}=Data.(VName{ilist});
|
---|
[517] | 91 | end
|
---|
[533] | 92 | ListVarName{nbvar+1}=UName{ilist};
|
---|
| 93 | ListVarName{nbvar+2}=VName{ilist};
|
---|
| 94 | VarAttribute{nbvar+1}.Role='vector_x';
|
---|
| 95 | VarAttribute{nbvar+2}.Role='vector_y';
|
---|
| 96 | case 'norm'
|
---|
| 97 | if exist('XI','var')
|
---|
| 98 | U2=F.(UName{ilist})(XI,YI).*F.(UName{ilist})(XI,YI);
|
---|
| 99 | V2=F.(VName{ilist})(XI,YI).*F.(VName{ilist})(XI,YI);
|
---|
| 100 | else
|
---|
| 101 | U2=Data.(UName{ilist}).*Data.(UName{ilist});
|
---|
| 102 | V2=Data.(VName{ilist}).*Data.(VName{ilist});
|
---|
| 103 | end
|
---|
| 104 | VarVal{nbvar+1}=sqrt(U2+V2);
|
---|
| 105 | ListVarName{nbvar+1}='norm';
|
---|
[517] | 106 | VarAttribute{nbvar+1}.Role='scalar';
|
---|
[579] | 107 | case {'curl','div','strain'}
|
---|
| 108 | if exist('XI','var')
|
---|
| 109 | VarVal{nbvar+1}=F.(UName{ilist})(XI,YI);
|
---|
| 110 | else
|
---|
| 111 | VarVal{nbvar+1}=Data.(UName{ilist});
|
---|
| 112 | end
|
---|
| 113 | ListVarName{nbvar+1}=UName{ilist};
|
---|
| 114 | VarAttribute{nbvar+1}.Role='scalar';
|
---|
[533] | 115 | otherwise
|
---|
[579] | 116 | if ~isempty(FieldName{ilist})
|
---|
[533] | 117 | if exist('XI','var')
|
---|
[579] | 118 | VarVal{nbvar+1}=F.(FieldName{ilist})(XI,YI);
|
---|
[533] | 119 | else
|
---|
[579] | 120 | VarVal{nbvar+1}= Data.(FieldName{ilist});
|
---|
[533] | 121 | end
|
---|
[579] | 122 | ListVarName{nbvar+1}=FieldName{ilist};
|
---|
[533] | 123 | VarAttribute{nbvar+1}.Role='scalar';
|
---|
| 124 | end
|
---|
| 125 | end
|
---|
[515] | 126 | end
|
---|
| 127 | end
|
---|
[644] | 128 |
|
---|
| 129 | %% put an error flag to indicate NaN data
|
---|
[579] | 130 | if exist('XI','var')&&~isempty(VarVal)
|
---|
[533] | 131 | nbvar=numel(ListVarName);
|
---|
| 132 | ListVarName{nbvar+1}='FF';
|
---|
| 133 | VarVal{nbvar+1}=isnan(VarVal{nbvar});
|
---|
| 134 | VarAttribute{nbvar+1}.Role='errorflag';
|
---|
[517] | 135 | end
|
---|
[515] | 136 |
|
---|
| 137 |
|
---|
| 138 |
|
---|
| 139 |
|
---|
| 140 |
|
---|