Skip to content

Commit feec920

Browse files
committed
230808 Ver 4.0.2: Better PS forward model + GUI changes.
1 parent fb27a1f commit feec920

15 files changed

+478
-321
lines changed

src/BackwordCompatible_ginput.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
%% 2017A - 2018B
2424
if (2017.1 <= MRelease) && (MRelease <= 2018.2)
2525
% Solve the 2017 issue by using the 2018B ginput version
26-
[xx,yy] = sam2018b_ginput(N, haxis);
26+
[xx,yy] = SAM_2018b_ginput(N, haxis);
2727
return
2828
end
2929

src/BodyWavesForwardModel.p

762 Bytes
Binary file not shown.

src/Pfiles__INTERNAL_VARIABLES.m

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
%% INFO
33
P.appname_3D = 'OpenHVSR-3D Inversion (BETA)';%% Note: the "3D" in P.appname is used to recognize dimensionality
4-
P.appversion_3D = 'v4.0.1';
4+
P.appversion_3D = '4.0.2';
55

66
%% Data shown
77
P.isshown.id = 0;% Id of dataset shown in inversion
@@ -111,4 +111,3 @@
111111
%
112112

113113
%%
114-

src/SAM_smooth.m src/SAM_2018a_smooth.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
function [c,ww] = SAM_smooth(varargin)
1+
function [c,ww] = SAM_2018a_smooth(varargin)
22
%SMOOTH Smooth data.
33
% Z = SMOOTH(Y) smooths data Y using a 5-point moving average.
44
%
File renamed without changes.

src/SAM_2022b_griddata3.m

+169
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,169 @@
1+
function w = SAM_griddata3(x,y,z,v,xi,yi,zi,method,options)
2+
%GRIDDATA3 Data gridding and hyper-surface fitting for 3-dimensional data.
3+
%
4+
% GRIDDATA3 will be removed in a future release. Use TriScatteredInterp instead.
5+
%
6+
% W = GRIDDATA3(X,Y,Z,V,XI,YI,ZI) fits a hyper-surface of the form
7+
% W = F(X,Y,Z) to the data in the (usually) nonuniformly-spaced vectors
8+
% (X,Y,Z,V). GRIDDATA3 interpolates this hyper-surface at the points
9+
% specified by (XI,YI,ZI) to produce W.
10+
%
11+
% (XI,YI,ZI) is usually a uniform grid (as produced by MESHGRID) and is
12+
% where GRIDDATA3 gets its name.
13+
%
14+
% [...] = GRIDDATA3(X,Y,Z,V,XI,YI,ZI,METHOD) where METHOD is one of
15+
% 'linear' - Tessellation-based linear interpolation (default)
16+
% 'nearest' - Nearest neighbor interpolation
17+
%
18+
% defines the type of surface fit to the data.
19+
% All the methods are based on a Delaunay triangulation of the data.
20+
% If METHOD is [], then the default 'linear' method will be used.
21+
%
22+
% [...] = GRIDDATA3(X,Y,Z,V,XI,YI,ZI,METHOD,OPTIONS) specifies a cell
23+
% array of strings OPTIONS that were previously used by Qhull.
24+
% Qhull-specific OPTIONS are no longer required and are currently ignored.
25+
%
26+
% Example:
27+
% x = 2*rand(5000,1)-1; y = 2*rand(5000,1)-1; z = 2*rand(5000,1)-1;
28+
% v = x.^2 + y.^2 + z.^2;
29+
% d = -0.8:0.05:0.8;
30+
% [xi,yi,zi] = meshgrid(d,d,d);
31+
% w = griddata3(x,y,z,v,xi,yi,zi);
32+
% Since it is difficult to visualize 4D data sets, use isosurface at 0.8:
33+
% p = patch(isosurface(xi,yi,zi,w,0.8));
34+
% isonormals(xi,yi,zi,w,p);
35+
% set(p,'FaceColor','blue','EdgeColor','none');
36+
% view(3), axis equal, axis off, camlight, lighting phong
37+
%
38+
% Class support for inputs X,Y,Z,V,XI,YI,ZI: double
39+
%
40+
% See also TriScatteredInterp, DelaunayTri, GRIDDATAN, DELAUNAYN, MESHGRID.
41+
42+
% Copyright 1984-2009 The MathWorks, Inc.
43+
% $Revision: 1.11.4.11 $ $Date: 2009/09/03 05:25:18 $
44+
45+
if nargin < 7
46+
error('MATLAB:griddata3:NotEnoughInputs', 'Needs at least 7 inputs.');
47+
end
48+
if ( nargin == 7 || isempty(method) )
49+
method = 'linear';
50+
elseif ~strncmpi(method,'l',1) && ~strncmpi(method,'n',1)
51+
error('MATLAB:griddata3:InvalidMethod',...
52+
'METHOD must be one of ''linear'', or ''nearest''.');
53+
end
54+
if nargin == 9
55+
if ~iscellstr(options)
56+
error('MATLAB:griddata3:OptsNotStringCell',...
57+
'OPTIONS should be cell array of strings.');
58+
end
59+
opt = options;
60+
else
61+
opt = [];
62+
end
63+
64+
if ndims(x) > 3 || ndims(y) > 3 || ndims(z) > 3 || ndims(xi) > 3 || ndims(yi) > 3 || ndims(zi) > 3
65+
error('MATLAB:griddata3:HigherDimArray',...
66+
'X,Y,Z and XI,YI,ZI cannot be arrays of dimension greater than three.');
67+
end
68+
69+
x = x(:); y=y(:); z=z(:); v = v(:);
70+
m = length(x);
71+
if m < 3, error('MATLAB:griddata3:NotEnoughPts','Not enough unique sample points specified.'); end
72+
if m ~= length(y) || m ~= length(z) || m ~= length(v)
73+
error('MATLAB:griddata3:InputSizeMismatch',...
74+
'X,Y,Z,V must all have the same size.');
75+
end
76+
77+
X = [x y z];
78+
79+
% Sort (x,y,z) so duplicate points can be averaged before passing to delaunay
80+
81+
[X, ind] = sortrows(X);
82+
v = v(ind);
83+
ind = all(diff(X)'==0);
84+
if any(ind)
85+
warning('MATLAB:griddata3:DuplicateDataPoints',['Duplicate x data points ' ...
86+
'detected: using average of the v values.']);
87+
ind = [0 ind];
88+
ind1 = diff(ind);
89+
fs = find(ind1==1);
90+
fe = find(ind1==-1);
91+
if fs(end) == length(ind1) % add an extra term if the last one start at end
92+
fe = [fe fs(end)+1];
93+
end
94+
95+
for i = 1 : length(fs)
96+
% averaging v values
97+
v(fe(i)) = mean(v(fs(i):fe(i)));
98+
end
99+
X = X(~ind(2:end),:);
100+
v = v(~ind(2:end));
101+
end
102+
103+
if size(X,1) < 3
104+
error('MATLAB:griddata3:NotEnoughSamplePts',...
105+
'Not enough unique sample points specified.');
106+
end
107+
108+
%warning('MATLAB:griddata3:DeprecatedFunction',...
109+
% 'GRIDDATA3 will be removed in a future release. Use TriScatteredInterp instead.');
110+
111+
switch lower(method(1)),
112+
case 'l'
113+
w = linear(X,v,[xi(:) yi(:) zi(:)]);
114+
case 'n'
115+
w = nearest(X,v,[xi(:) yi(:) zi(:)]);
116+
otherwise
117+
error('MATLAB:griddata3:UnknownMethod', 'Unknown method.');
118+
end
119+
w = reshape(w,size(xi));
120+
121+
122+
123+
%------------------------------------------------------------
124+
function vi = linear(x,v,xi)
125+
%LINEAR Triangle-based linear interpolation
126+
127+
% Reference: David F. Watson, "Contouring: A guide
128+
% to the analysis and display of spacial data", Pergamon, 1994.
129+
130+
dt = DelaunayTri(x);
131+
scopedWarnOff = warning('off', 'MATLAB:TriRep:EmptyTri3DWarnId');
132+
restoreWarnOff = onCleanup(@()warning(scopedWarnOff));
133+
dtt = dt.Triangulation;
134+
if isempty(dtt)
135+
error('MATLAB:griddata3:EmptyTriangulation','Error computing Delaunay triangulation. The sample datapoints may be coplanar or collinear.');
136+
end
137+
138+
139+
if(isreal(v))
140+
F = TriScatteredInterp(dt,v);
141+
vi = F(xi);
142+
else
143+
vre = real(v);
144+
vim = imag(v);
145+
F = TriScatteredInterp(dt,vre);
146+
vire = F(xi);
147+
F.V = vim;
148+
viim = F(xi);
149+
vi = complex(vire,viim);
150+
end
151+
152+
%------------------------------------------------------------
153+
function vi = nearest(x,v,xi)
154+
%NEAREST Triangle-based nearest neightbor interpolation
155+
156+
% Reference: David F. Watson, "Contouring: A guide
157+
% to the analysis and display of spacial data", Pergamon, 1994.
158+
159+
dt = DelaunayTri(x);
160+
scopedWarnOff = warning('off', 'MATLAB:TriRep:EmptyTri3DWarnId');
161+
restoreWarnOff = onCleanup(@()warning(scopedWarnOff));
162+
dtt = dt.Triangulation;
163+
if isempty(dtt)
164+
error('MATLAB:griddata3:EmptyTriangulation','Error computing Delaunay triangulation. The sample datapoints may be coplanar or collinear.');
165+
end
166+
k = dt.nearestNeighbor(xi);
167+
vi = k;
168+
d = find(isfinite(k));
169+
vi(d) = v(k(d));

src/START_OpenHVSR.m

+28-15
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
%% University Of Ferrara (Italy)
1212
%% - User Interface
1313
%% - Montecarlo inversion
14+
%%
15+
%% TESTED MATLAB CONFIGURATIONS: (started tracking on August 2, 2023)
16+
% OpenHVSR --- MATLAB
17+
% 4.0.2 --- R2022b 64-bit (glnxa64)
18+
%%
1419
%%
1520
%% Project Evolution
1621
%% Date:
@@ -24,19 +29,26 @@
2429
%% December 5, 2017 Minor Bugfix: linspace. (not affecting functionality)
2530
%% September 27, 2018 Files with different frequency scales are now accepted
2631
%% October 2, 2018 smooth.m (curve fittin toolbox) included as SAM_smooth.m
27-
%% November 18, 2018 modifies curve and slope terms management in the energy function
28-
%% NEW move-over suggestionss
29-
%% NEW test-function in model_manager for surface-waves
30-
%% April 4, 2019 New version 4.0.0 (Beta)
31-
%% NEW main tab showing the survey map
32-
%% NEW multiple profiles definition
33-
%% NEW terrain elevation in profiles
34-
%% August 10, 2020 2D profile revision
35-
%% September 10, 2020 Improved the View Menu.
36-
%% Solved a minor issue with color_axis variable.
37-
%% Improved image production
38-
%% Changed behavior of "Refresh" button
32+
%% November 18, 2018 modifies curve and slope terms management in the energy function
33+
% NEW move-over suggestionss
34+
% NEW test-function in model_manager for surface-waves
35+
%% April 4, 2019 New version 4.0.0 (Beta)
36+
% NEW main tab showing the survey map
37+
% NEW multiple profiles definition
38+
% NEW terrain elevation in profiles
39+
%% August 10, 2020 2D profile revision
40+
%% September 10, 2020 Improved the View Menu.
41+
% Solved a minor issue with color_axis variable.
42+
% Improved image production
43+
% Changed behavior of "Refresh" button
3944
%% January 27,2021 fixed backword compatibility R2016b: (gimput)
45+
%% August 02, 2023 TESTED AND WORKING ON MATLAB 2022b
46+
% - name change: sam_ginput.m >> SAM_2018b_ginput.m
47+
% - name change: sam_smooth.m >> SAM_2018a_smooth.m
48+
% - name change: as_Samuel.m >> BodyWavesForwardModel.p
49+
% - implemented memory preallocation in
50+
% BodyWavesForwardModel, for efficiency
51+
% - created SAM_2022b_griddata3.m from griddata3.m
4052
%%
4153
%%
4254
%%
@@ -54,8 +66,8 @@
5466
%% -----------------------------------------------------------------------
5567
enable_menu = 0;
5668
%% -----------------------------------------------------------------------
57-
mode = '2D';%% only 2D (better for 2-D profiles)
58-
mode = '3D';%%
69+
mode = '3D'; %% 3D is enable by default.
70+
% mode = '2D';%% uncomment this line to stat in 2D mode (better for 2-D profiles)
5971
%% -----------------------------------------------------------------------
6072
%% some settings
6173
fontsizeis = 15;
@@ -80,7 +92,8 @@
8092
gui_2D_210127(enable_menu,fontsizeis);% routine for 2D geometry
8193
end
8294
if strcmp(mode,'3D')
83-
gui_3D_210127();% routine for 3D geometry
95+
% gui_3D_210127();% routine for 3D geometry
96+
gui_3D_230802();% routine for 3D geometry
8497
end
8598

8699

src/SparseDtata_XYZD_to_3D.m

+3-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@
4545
Z = reshape( Z, L,1);
4646
D = reshape( D, L,1);
4747

48-
VM = griddata3( X, Y, Z, D, XM,YM,ZM, 'nearest');
48+
% VM = griddata3( X, Y, Z, D, XM,YM,ZM, 'nearest');
49+
VM = SAM_2022b_griddata3( X, Y, Z, D, XM,YM,ZM, 'nearest');
4950
VM = smooth3(VM,'box',5);
5051
correct_for_surface(meshed_surface);
5152
trim_edges();
@@ -76,7 +77,7 @@
7677
ylim([min(surface_locations(:,2)), max(surface_locations(:,2))]); hold off
7778
%zlim([min(surface_locations(:,3)), max(surface_locations(:,3))]); hold on
7879
hold off
79-
fprintf('done')
80+
%fprintf('done')
8081

8182

8283
%% SUBFUNCTIONS

0 commit comments

Comments
 (0)