source: trunk/src/filter_tps.m

Last change on this file was 1163, checked in by sommeria, 33 hours ago

SearchBoxSize? changed to SearchRange? in civ, possibility of a grid set by a netcdf file

File size: 12.1 KB
Line 
1%'filter_tps': find the thin plate spline coefficients for interpolation-smoothing
2%------------------------------------------------------------------------
3% [SubRange,NbCentre,Coord_tps,U_tps,V_tps,W_tps,U_smooth,V_smooth,W_smooth,FF] =filter_tps(Coord,U,V,W,SubDomainSize,FieldSmooth,Threshold)
4%
5% OUTPUT:
6% SubRange(NbCoord,2,NbSubdomain): range (min, max) of the coordinates x and y respectively, for each subdomain
7% NbCentre(NbSubdomain): number of source points for each subdomain
8% FF: false flags preserved from the input, or equal to true for vectors excluded by the difference with the smoothed field
9% U_smooth, V_smooth: filtered velocity components at the positions of the initial data
10% Coord_tps(NbCentre,NbCoord,NbSubdomain): positions of the tps centres
11% U_tps,V_tps: weight of the tps centers for each subdomain
12% to get the interpolated field values, use the function calc_field.m
13%
14% INPUT:
15% coord=[X Y]: matrix whose first column is the x coordinates of the initial data, the second column the y coordiantes
16% U,V, possibly W: set of velocity components of the initial data
17% SubdomainSize: estimated number of data points in each subdomain, choose a number > 125 (must be >= 12 for convergence of tps after division by 4)
18% FieldSmooth: smoothing parameter
19% Threshold: max diff accepted between smoothed and initial data
20
21
22%=======================================================================
23% Copyright 2008-2024, LEGI UMR 5519 / CNRS UGA G-INP, Grenoble, France
24%   http://www.legi.grenoble-inp.fr
25%   Joel.Sommeria - Joel.Sommeria (A) univ-grenoble-alpes.fr
26%
27%     This file is part of the toolbox UVMAT.
28%
29%     UVMAT is free software; you can redistribute it and/or modify
30%     it under the terms of the GNU General Public License as published
31%     by the Free Software Foundation; either version 2 of the license,
32%     or (at your option) any later version.
33%
34%     UVMAT is distributed in the hope that it will be useful,
35%     but WITHOUT ANY WARRANTY; without even the implied warranty of
36%     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
37%     GNU General Public License (see LICENSE.txt) for more details.
38%=======================================================================
39
40function [SubRange,NbCentre,Coord_tps,U_tps,V_tps,W_tps,U_smooth,V_smooth,W_smooth,FF] =filter_tps(Coord,U,V,W,SubDomainSize,FieldSmooth,Threshold)
41
42%% adjust subdomain decomposition
43warning off
44NbVec=size(Coord,1);% nbre of vectors in the field to interpolate
45NbCoord=size(Coord,2);% space dimension
46MinCoord=min(Coord,[],1);%lower coordinate bounds
47MaxCoord=max(Coord,[],1);%upper coordinate bounds
48Range=MaxCoord-MinCoord;
49AspectRatio=Range(2)/Range(1);
50NbSubDomain=NbVec/SubDomainSize;% estimated number of subdomains
51NbSubDomainX=max(floor(sqrt(NbSubDomain/AspectRatio)),1);% estimated number of subdomains in x
52NbSubDomainY=max(floor(sqrt(NbSubDomain*AspectRatio)),1);% estimated number of subdomains in y
53NbSubDomain=NbSubDomainX*NbSubDomainY;% new estimated number of subdomains in a matrix shape partition in subdomains
54Siz(1)=Range(1)/NbSubDomainX;%width of subdomains
55Siz(2)=Range(2)/NbSubDomainY;%height of subdomains
56CentreX=linspace(MinCoord(1)+Siz(1)/2,MaxCoord(1)-Siz(1)/2,NbSubDomainX);% X positions of subdomain centres
57CentreY=linspace(MinCoord(2)+Siz(2)/2,MaxCoord(2)-Siz(2)/2,NbSubDomainY);% Y positions of subdomain centres
58[CentreX,CentreY]=meshgrid(CentreX,CentreY);
59CentreX=reshape(CentreX,1,[]);% X positions of subdomain centres
60CentreY=reshape(CentreY,1,[]);% Y positions of subdomain centres
61
62%% smoothing parameter: CHANGED 03 May 2024 TO GET RESULTS INDEPENDENT OF SUBDOMAINSIZE
63%smoothing=Siz(1)*Siz(2)*FieldSmooth/1000%old calculation before 03 May < r1129
64NbVecSub=NbVec/NbSubDomain;% refined estimation of the nbre of vectors per subdomain
65smoothing=sqrt(Siz(1)*Siz(2)/NbVecSub)*FieldSmooth;%optimum smoothing increase as the typical mesh size =sqrt(SizX*SizY/NbVecSub)^1/2
66Threshold=Threshold*Threshold;% take the square of the threshold to work with the modulus squared (not done before r1154)
67
68%% default output
69SubRange=zeros(NbCoord,2,NbSubDomain);%initialise the boundaries of subdomains
70Coord_tps=zeros(1,NbCoord,NbSubDomain);% initialize coordinates of interpolated data
71U_tps=zeros(1,NbSubDomain);% initialize  interpolated u component
72V_tps=zeros(1,NbSubDomain);% initialize interpolated v component
73NbCentre=zeros(1,NbSubDomain);%number of interpolated field values per subdomain, =0 by default
74W_tps=[];%default (2 component case)
75U_smooth=zeros(NbVec,1); % smoothed velocity U at the initial positions
76V_smooth=zeros(NbVec,1);% smoothed velocity V at the initial positions
77W_smooth=[];%default (2 component case)
78FF=false(NbVec,1);%false flag=0 (false) by default
79nb_select=zeros(NbVec,1);
80check_empty=false(1,NbSubDomain);
81
82%% calculate tps coeff in each subdomain
83for isub=1:NbSubDomain
84    SubRange(1,:,isub)=[CentreX(isub)-0.55*Siz(1) CentreX(isub)+0.55*Siz(1)];%bounds of subdomain #isub in x coordinate
85    SubRange(2,:,isub)=[CentreY(isub)-0.55*Siz(2) CentreY(isub)+0.55*Siz(2)];%bounds of subdomain #isub in y coordinate
86    ind_sel=0;%initialize set of vector indices in the subdomain
87    %increase iteratively the subdomain if it contains less than
88    %SubDomainNbVec/4 source vectors, until possibly cover the whole domain:check_partial_domain=false
89    check_partial_domain= true;
90    while check_partial_domain
91        %check_next=false;% test to go to next iteration with wider subdomain
92        ind_sel_previous=ind_sel;% record the set of selected vector indices for next iteration
93        ind_sel= find(~FF & Coord(:,1)>=SubRange(1,1,isub) & Coord(:,1)<=SubRange(1,2,isub) & Coord(:,2)>=SubRange(2,1,isub) & Coord(:,2)<=SubRange(2,2,isub));% indices of vectors in the subdomain #isub
94         check_partial_domain=sum(SubRange(:,1,isub)> MinCoord' | SubRange(:,2,isub)< MaxCoord');
95
96        % if no vector in the subdomain  #isub, skip the subdomain
97        if isempty(ind_sel)
98            check_empty(isub)=true;
99            break
100
101            % if too few selected vectors, increase the subrange for next iteration by 50 % in each direction
102        elseif numel(ind_sel)<SubDomainSize/4 && ~isequal( ind_sel,ind_sel_previous)&& check_partial_domain
103            % SubRange(:,1,isub)=SubRange(:,1,isub)-Siz'/4;
104            % SubRange(:,2,isub)=SubRange(:,2,isub)+Siz'/4;
105            SubRange(:,1,isub)=1.25*SubRange(:,1,isub)-0.25*SubRange(:,2,isub);
106            SubRange(:,2,isub)=-0.25*SubRange(:,1,isub)+1.25*SubRange(:,2,isub);
107
108            % if subdomain includes enough vectors, perform tps interpolation
109        else
110            [U_smooth_sub,U_tps_sub]=tps_coeff(Coord(ind_sel,:),U(ind_sel),smoothing);
111            [V_smooth_sub,V_tps_sub]=tps_coeff(Coord(ind_sel,:),V(ind_sel),smoothing);
112            UDiff=U_smooth_sub-U(ind_sel);% difference between interpolated U component and initial value
113            VDiff=V_smooth_sub-V(ind_sel);% difference between interpolated V component and initial value
114            NormDiff=UDiff.*UDiff+VDiff.*VDiff;% Square of difference norm
115            ind_ind_sel=1:numel(ind_sel);%default
116            if exist('Threshold','var')&&~isempty(Threshold)
117                FF(ind_sel)=(NormDiff>Threshold);%put FF value to 1 to identify the criterium of elimmination
118                ind_ind_sel=find(~FF(ind_sel)); % select the indices of remaining vectors in the subset of ind_sel vectors
119            end
120            % if no value exceeds threshold, the result is recorded
121
122            if isequal(numel(ind_ind_sel),numel(ind_sel))
123                x_width=(SubRange(1,2,isub)-SubRange(1,1,isub))/pi;
124                y_width=(SubRange(2,2,isub)-SubRange(2,1,isub))/pi;
125                x_dist=(Coord(ind_sel,1)-CentreX(isub))/x_width;% relative x distance to the retangle centre
126                y_dist=(Coord(ind_sel,2)-CentreY(isub))/y_width;% relative ydistance to the retangle centre
127                weight=cos(x_dist).*cos(y_dist);%weighting fct =1 at the rectangle center and 0 at edge
128                %weight=1;% case for r1129 and before
129                U_smooth(ind_sel)=U_smooth(ind_sel)+weight.*U_smooth_sub;
130                V_smooth(ind_sel)=V_smooth(ind_sel)+weight.*V_smooth_sub;
131                NbCentre(isub)=numel(ind_sel);
132                Coord_tps(1:NbCentre(isub),:,isub)=Coord(ind_sel,:);
133                U_tps(1:NbCentre(isub)+3,isub)=U_tps_sub;
134                V_tps(1:NbCentre(isub)+3,isub)=V_tps_sub;
135                nb_select(ind_sel)=nb_select(ind_sel)+weight;
136                display(['tps done with ' num2str(numel(ind_sel)) ' vectors in subdomain # ' num2str(isub)  ' among ' num2str(NbSubDomain)])
137                break
138            % if too few selected vectors, increase the subrange for next iteration by 50% in each direction
139            elseif numel(ind_ind_sel)<SubDomainSize/4 && ~isequal( ind_sel,ind_sel_previous)&& check_partial_domain
140                % SubRange(:,1,isub)=SubRange(:,1,isub)-Siz'/4;
141                % SubRange(:,2,isub)=SubRange(:,2,isub)+Siz'/4;
142                SubRange(:,1,isub)=1.25*SubRange(:,1,isub)-0.25*SubRange(:,2,isub);
143                SubRange(:,2,isub)=-0.25*SubRange(:,1,isub)+1.25*SubRange(:,2,isub);
144            % else interpolation-smoothing is done again with the selected vectors
145            else
146                [U_smooth_sub,U_tps_sub]=tps_coeff(Coord(ind_sel(ind_ind_sel),:),U(ind_sel(ind_ind_sel)),smoothing);
147                [V_smooth_sub,V_tps_sub]=tps_coeff(Coord(ind_sel(ind_ind_sel),:),V(ind_sel(ind_ind_sel)),smoothing);
148                x_width=(SubRange(1,2,isub)-SubRange(1,1,isub))/pi;
149                y_width=(SubRange(2,2,isub)-SubRange(2,1,isub))/pi;
150                x_dist=(Coord(ind_sel(ind_ind_sel),1)-CentreX(isub))/x_width;% relative x distance to the retangle centre
151                y_dist=(Coord(ind_sel(ind_ind_sel),2)-CentreY(isub))/y_width;% relative ydistance to the retangle centre
152                weight=cos(x_dist).*cos(y_dist);%weighting fct =1 at the rectangle center and 0 at edge
153                %weight=1;
154                U_smooth(ind_sel(ind_ind_sel))=U_smooth(ind_sel(ind_ind_sel))+weight.*U_smooth_sub;
155                V_smooth(ind_sel(ind_ind_sel))=V_smooth(ind_sel(ind_ind_sel))+weight.*V_smooth_sub;
156                NbCentre(isub)=numel(ind_ind_sel);
157                Coord_tps(1:NbCentre(isub),:,isub)=Coord(ind_sel(ind_ind_sel),:);
158                U_tps(1:NbCentre(isub)+3,isub)=U_tps_sub;
159                V_tps(1:NbCentre(isub)+3,isub)=V_tps_sub;
160                nb_select(ind_sel(ind_ind_sel))=nb_select(ind_sel(ind_ind_sel))+weight;
161                display(['tps redone with ' num2str(numel(ind_sel)) ' vectors after elimination of ' num2str(numel(ind_sel)-numel(ind_ind_sel)) ' erratic vectors in subdomain # ' num2str(isub) ' among ' num2str(NbSubDomain)])
162                break
163            end
164        end
165         % check_next=true;% go to next iteration with wider subdomain
166    end% end of while loop fo increasing subdomain size
167    if ~check_partial_domain && isub<NbSubDomain% if the while loop proceed to the end, the whole domain size has been covered
168        check_empty(isub+1:end)=true;
169        break %the whole domain has been already covered, no need for new subdomains
170    end
171end
172
173%% remove empty subdomains
174ind_empty=find(check_empty);
175if ~isempty(ind_empty)
176    SubRange(:,:,ind_empty)=[];
177    Coord_tps(:,:,ind_empty)=[];
178    U_tps(:,ind_empty)=[];
179    V_tps(:,ind_empty)=[];
180    NbCentre(ind_empty)=[];
181end
182
183%% final adjustments
184nb_select(nb_select==0)=1;
185U_smooth=U_smooth./nb_select;% take the average at the intersection of several subdomains
186V_smooth=V_smooth./nb_select;
187
188%eliminate the vectors with diff>threshold not yet eliminated
189if exist('Threshold','var')&&~isempty(Threshold)
190UDiff=U_smooth-U;% difference between interpolated U component and initial value
191VDiff=V_smooth-V;% difference between interpolated V component and initial value
192NormDiff=UDiff.*UDiff+VDiff.*VDiff;% Square of difference norm
193FF(NormDiff>Threshold)=true;%put FF value to 1 to identify the criterium of elimmination
194end
195
196U_smooth(FF)=U(FF);% set to the initial values the eliminated vectors (flagged as false)
197V_smooth(FF)=V(FF);
198fill=zeros(NbCoord+1,NbCoord,size(SubRange,3)); %matrix of zeros to complement the matrix Data.Civ1_Coord_tps (conveninent for file storage)
199Coord_tps=cat(1,Coord_tps,fill);
200
Note: See TracBrowser for help on using the repository browser.