Skip to content

Commit

Permalink
Merge pull request #125 from chrishavlin/fix_andrade_test_typo
Browse files Browse the repository at this point in the history
fix typo in docstring of test for analytical_andrade
  • Loading branch information
chrishavlin authored Jul 18, 2024
2 parents 88d5555 + e884155 commit 07bb74b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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

0 comments on commit 07bb74b

Please sign in to comment.