Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix typo in docstring of test for analytical_andrade #125

Merged
merged 2 commits into from
Jul 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions vbr/testing/test_vbrcore_011_analytical_andrade.m
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
function TestResult = test_vbrcore_011_analytical_andrade()
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% TestResult = test_vbrcore_010_premelt_volatiles()
% TestResult = test_vbrcore_011_analytical_andrade()
%
% test for volatile behavior
% test that analytical_andrade runs with the different viscosity options
%
% Parameters
% ----------
Expand Down Expand Up @@ -110,4 +110,4 @@
VBR.in.SV.f = [0.01, .1, 1.0]; % [Hz]

fdep_size = [sz(1), sz(2), numel(VBR.in.SV.f)]; % size of freq-dep outputs
end
end
6 changes: 3 additions & 3 deletions vbr/vbrCore/functions/Q_andrade_analytical.m
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
function [VBR] = Q_andrade_analytical(VBR)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% [VBR]=Q_andrade_simple(VBR)
% [VBR]=Q_andrade_analytical(VBR)
%
% the analytical andrade model. See supplement of Lau and Holtzman, 2019,
% https://doi.org/10.1029/2019GL083529, for a nice, succinct formulation.
Expand All @@ -12,7 +12,7 @@
%
% Output:
% ------
% VBR the VBR structure, with VBR.out.anelastic.MTH2011 structure
% VBR the VBR structure, with VBR.out.anelastic.analytical structure
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

method_settings = VBR.in.anelastic.andrade_analytical;
Expand Down Expand Up @@ -100,4 +100,4 @@
VBR.out.anelastic.andrade_analytical.units = Q_method_units();
VBR.out.anelastic.andrade_analytical.units.tau_M = 's';

end
end
Loading