Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
John, Fabian
us_multipath_model
Commits
78014c42
Commit
78014c42
authored
Jun 24, 2021
by
John, Fabian
Browse files
Add README.md
parent
207a49cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
README.md
0 → 100644
View file @
78014c42
Ultrasonic Multipath Propagation Model
-
Model is given as Matlab class in file: ./forward_model/us_mp_model.m
-
Usage:
`addpath('./lib/cosa-tools-matlab/lib');
%% gen model with properties
us_mp_mdl = us_mp_model(6e-2, ... %d1
6e-2, ... %d2
6e-3, ... %b
90e3, ... %f_low
150e3, ... %f_high
92.71e-6, ... %T_pulse
13.5e-2, ... % d_refl
0.15); % R
d_los = 0:2e-4:12e-2;
for idx = 1:length(d_los)
[f, y] = us_mp_mdl.get_rx_db(d_los(idx));
plot(f, y);
end`
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment