commit a8f727dac7d0609c888c9e8e562ea93e21758f75
parent 60353d43e54b8f0a66aa28d09f48b1a02d3b99f9
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date: Mon, 7 Dec 2015 20:42:03 +0100
add note on muon ratios
Diffstat:
1 file changed, 10 insertions(+), 4 deletions(-)
diff --git a/matlab/m_pakke2014maj11/gCosmoLongsteps.m b/matlab/m_pakke2014maj11/gCosmoLongsteps.m
@@ -99,6 +99,12 @@ fm_rat10 = 0.0940/(0.1070+0.0940);
nm_rat26 = 0.7/(0.7+0.6);
fm_rat26 = (0.6/(0.7+0.6));
+% use ratios from 10Be since I (Anders) don't know better...
+nm_rat14 = nm_rat10;
+fm_rat14 = fm_rat10;
+nm_rat21 = nm_rat10;
+fm_rat21 = fm_rat10;
+
%>>>BHJ: To be used in analytical expressions
% L_spal = Tau_spal/rho; %Decay depth, exp(-z/L)
% L_nm = Tau_nm/rho;
@@ -197,8 +203,8 @@ if exist('fixed_stuff.ne_prod_spall', 'var') == 1 && ...
if ~isempty(fixed_stuff.ne_prod_spall) && ...
~isempty(fixed_stuff.ne_prod_muons)
P21_top_spal = fixed_stuff.ne_prod_spall;
- P21_top_nm = nm_rat10*fixed_stuff.ne_prod_muons;
- P21_top_fm = fm_rat10*fixed_stuff.ne_prod_muons;
+ P21_top_nm = nm_rat21*fixed_stuff.ne_prod_muons;
+ P21_top_fm = fm_rat21*fixed_stuff.ne_prod_muons;
end
end
@@ -218,8 +224,8 @@ if exist('fixed_stuff.c_prod_spall', 'var') == 1 && ...
if ~isempty(fixed_stuff.c_prod_spall) && ...
~isempty(fixed_stuff.c_prod_muons)
P14_top_spal = fixed_stuff.c_prod_spall;
- P14_top_nm = nm_rat10*fixed_stuff.c_prod_muons;
- P14_top_fm = fm_rat10*fixed_stuff.c_prod_muons;
+ P14_top_nm = nm_rat14*fixed_stuff.c_prod_muons;
+ P14_top_fm = fm_rat14*fixed_stuff.c_prod_muons;
end
end