From a2dc05391ee3e0b3ccda815c93b15b1e89ad2f16 Mon Sep 17 00:00:00 2001 From: chrishavlin Date: Wed, 17 Jul 2024 21:35:34 -0500 Subject: [PATCH 1/2] fix typo in docstring of test for analytical_andrade --- vbr/testing/test_vbrcore_011_analytical_andrade.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vbr/testing/test_vbrcore_011_analytical_andrade.m b/vbr/testing/test_vbrcore_011_analytical_andrade.m index 3fccd50..fbcb2c4 100644 --- a/vbr/testing/test_vbrcore_011_analytical_andrade.m +++ b/vbr/testing/test_vbrcore_011_analytical_andrade.m @@ -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 % ---------- @@ -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 \ No newline at end of file +end From e8841551297d235ad01c589e1c2405f49e05db01 Mon Sep 17 00:00:00 2001 From: chrishavlin Date: Wed, 17 Jul 2024 21:46:49 -0500 Subject: [PATCH 2/2] another typo in the actual function docstring --- vbr/vbrCore/functions/Q_andrade_analytical.m | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vbr/vbrCore/functions/Q_andrade_analytical.m b/vbr/vbrCore/functions/Q_andrade_analytical.m index 2a0d6fd..3534c41 100644 --- a/vbr/vbrCore/functions/Q_andrade_analytical.m +++ b/vbr/vbrCore/functions/Q_andrade_analytical.m @@ -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. @@ -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; @@ -100,4 +100,4 @@ VBR.out.anelastic.andrade_analytical.units = Q_method_units(); VBR.out.anelastic.andrade_analytical.units.tau_M = 's'; -end \ No newline at end of file +end