Skip to content

Commit 24345b9

Browse files
committed
Updated constants
1 parent 2a3a8fc commit 24345b9

6 files changed

+85
-82
lines changed

Front End/MIT_MasterUThDataReduction.m

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@
3737
% Last updated: 09/09/15
3838
%
3939
%% ---------------------- REVISION HISTORY ------------------------------ %
40+
% 02/15/24 [BHT] Removed signifiant figures output. Updated units
41+
% for raw signal intensities.
4042
% 09/09/15 [CYC] Renamed the function that takes user input and makes
4143
% it into a struct 'MIT_convertUserInput2Struct'. It
4244
% used to be 'MIT_makeSampInfoStruct'.
@@ -330,7 +332,7 @@ function MIT_MasterUThDataReduction(filename_sample_info)
330332
'Flag\tFlag\tFlag\tFlag\tFlag\tFlag\t' ...
331333
'Yield\tYield\t\n']);
332334
fprintf(fileID, ['Sample Name\t' ...
333-
'U238 (V)\tU236 (mV)\tTh230 (cps)\tTh229 (mV)\tTh230bg (V)\t234tail/234 (per mil)\t' ...
335+
'U238 (V)\tU236 (mV)\tTh230 (cps)\tTh229 (mV)\tTh230bg (cps)\t234tail/234 (per mil)\t' ...
334336
'238/236\t238/234\t230/229\t232/229\t' ...
335337
'Th mass bias\tU mass bias\tTh IC yield\tU IC yield\tTh low spike\tU low spike\t'...
336338
'U236 (%%)\tTh229 (%%)\n']);

Front End/MIT_readConstants.m

+8-7
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@
1010
% ----------------------------------------------------------------------- %
1111
% AUTHORS: Christine Y Chen [CYC], David McGee [DM]
1212
% Created: 06/09/15
13-
% Last updated: 06/09/15
13+
% Last updated: 2/15/24
1414
%% ---------------------- REVISION HISTORY ------------------------------ %
1515
%
16+
% 02/15/24 [BHT] Updated spike constants
1617
% 06/09/15 [CYC] Created by CYC. Based on Excel reduction sheet from
1718
% Dec 2014.
1819
%
@@ -21,20 +22,20 @@
2122

2223
constants.spk.arag.U238_U233 = 0.000284180083703407;
2324
constants.spk.arag.U235_U233 = 0.0000436564125150588;
24-
constants.spk.arag.U234_U233 = 0.000346078761686624;
25+
constants.spk.arag.U234_U233 = 0.000357;
2526
constants.spk.arag.Th232_Th229 = 0.0035688899585085;
2627
constants.spk.arag.Th230_Th229 = 0.0000568907919271831;
27-
constants.spk.arag.Th229 = 0.44434;
28-
constants.spk.arag.U233 = 8.25560374325385;
28+
constants.spk.arag.Th229 = 0.372470996654462;
29+
constants.spk.arag.U233 = 6.921675;
2930
constants.spk.arag.U236_U233 = 0.981296488921163;
3031

3132
constants.spk.calc.U238_U233 = 0.000175450777882931;
3233
constants.spk.calc.U235_U233 = 0.0000430555690434635;
33-
constants.spk.calc.U234_U233 = constants.spk.arag.U234_U233;
34+
constants.spk.calc.U234_U233 = 0.00036;
3435
constants.spk.calc.Th232_Th229 = 0.00119508371329823;
3536
constants.spk.calc.Th230_Th229 = 0.0000538350424096104;
36-
constants.spk.calc.Th229 = 0.34846;
37-
constants.spk.calc.U233 = 2.572262028;
37+
constants.spk.calc.Th229 = 0.329206684955765;
38+
constants.spk.calc.U233 = 2.422859592;
3839
constants.spk.calc.U236_U233 = 0.981296488921163;
3940

4041
%% --------------------- Read in decay constants and masses ------------- %

UTh-reduced-data-13-Feb-2024.xls

-72
This file was deleted.

0 commit comments

Comments
 (0)