-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathElectrodeType.m
More file actions
116 lines (113 loc) · 4.93 KB
/
ElectrodeType.m
File metadata and controls
116 lines (113 loc) · 4.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
function [electrodes,manufacturer] = ElectrodeType(number,year)
% Usage: [electrodes,manufacturer] = ElectrodeType(number,year)
%
% returns the electrode information for Earthscope MT project
% based on the electrode number and the year in which the data
% were collected...
%
% Adam's notes as of 2011-06-17:
%
% As far as provenance of electrodes goes, 2006-2009 are all straightforward,
% since we used exclusively one type or another in each successive year.
%
% Starting in 2009 when we switched over to OSU manufactured electrodes,
% we could trace the year of manufacture by the first two digits of the
% electrode serial number. There are some differences in the electrodes
% from one year to the next in terms of minor design variations. So it is
% necessary to refer to the serial number to know the precise type.
%
% 2006
% Contractor: GSY
% All electrodes used were:
% Pb-PbCl2 single chamber liquid filled porous cell,
% manufactured by Steve Park
%
% 2007
% Contractor: GSY
% All electrodes used were:
% Pb-PbCl2 solid plaster matrix,
% manufactured by Wolf Chemical Ltd (Hungary)
%
% 2008
% Contractor: University of Utah/Phil Wannamaker
% All electrodes used began with '08':
% Pb-PbCl2 kaolin gel Petiau 2 chamber type,
% manufactured by Oregon State University/Adam Schultz and Prasanta Patro
%
% 2009
% Contractor: University of Utah/Phil Wannamaker
% All electrodes used began with '08':
% Pb-PbCl2 kaolin gel Petiau 2 chamber type OSU V1.0,
% manufactured by Oregon State University/Adam Schultz and Prasanta Patro
%
% 2010
% Contractor: Zonge International
% Electrodes beginning with '08':
% Pb-PbCl2 kaolin gel Petiau 2 chamber type OSU V1.0,
% manufactured by Oregon State University/Adam Schultz and Prasanta Patro
% Electrodes: beginning with '10':
% Pb-PbCl2 kaolin gel Petiau 2 chamber type OSU V2.0,
% manufactured by Oregon State University/Adam Schultz and Tristan Peery
%
% 2011
% Electrodes beginning with '10':
% Pb-PbCl2 kaolin gel Petiau 2 chamber type OSU V2.0,
% manufactured by Oregon State University/Adam Schultz and Tristan Peery
% Electrodes beginning with '11':
% Pb-PbCl2 kaolin gel Petiau 2 chamber type OSU V3.0,
% manufactured by Oregon State University/Tristan Peery
%
% USGS
% Paul Bedrosian uses Borin Stelth Ag/AgCl Model SRE-011-SPB
% portable silver-silver chloride electrodes.
% Size: 1" x 8"
% Stability: 10 millivolts with 3.0 microamp load.
% Temperature Range: +32oF to +135oF (0oC to +57.2oC).
switch year
case 2006
electrodes = 'Pb-PbCl2 single chamber liquid filled porous cell';
manufacturer = 'Steve Park';
case 2007
electrodes = 'Pb-PbCl2 solid plaster matrix';
manufacturer = ' Wolf Chemical Ltd (Hungary)';
case 2008
electrodes = 'Pb-PbCl2 kaolin gel Petiau 2 chamber type OSU V1.0';
manufacturer = 'Oregon State University/Adam Schultz and Prasanta Patro';
case 2009
electrodes = 'Pb-PbCl2 kaolin gel Petiau 2 chamber type OSU V1.0';
manufacturer = 'Oregon State University/Adam Schultz and Prasanta Patro';
case 2010
if length(number) < 2 % electrode number not specified; details unknown
electrodes = 'Pb-PbCl2 kaolin gel Petiau 2 chamber type';
manufacturer = 'Oregon State University';
elseif strcmp(number(1:2),'08')
electrodes = 'Pb-PbCl2 kaolin gel Petiau 2 chamber type OSU V1.0';
manufacturer = 'Oregon State University/Adam Schultz and Prasanta Patro';
elseif strcmp(number(1:2),'10')
electrodes = 'Pb-PbCl2 kaolin gel Petiau 2 chamber type OSU V2.0';
manufacturer = 'Oregon State University/Adam Schultz and Tristan Peery';
else % details unknown
electrodes = 'Pb-PbCl2 kaolin gel Petiau 2 chamber type';
manufacturer = 'Oregon State University';
end
otherwise
if strcmp(number,'USGS')
electrodes = 'Ag/AgCl Slelth 3 portable SRE-011-SPB';
manufacturer = 'Borin';
elseif length(number) < 2 % electrode number not specified; details unknown
electrodes = 'Pb-PbCl2 kaolin gel Petiau 2 chamber type';
manufacturer = 'Oregon State University';
elseif strcmp(number(1:2),'08')
electrodes = 'Pb-PbCl2 kaolin gel Petiau 2 chamber type OSU V1.0';
manufacturer = 'Oregon State University/Adam Schultz and Prasanta Patro';
elseif strcmp(number(1:2),'10')
electrodes = 'Pb-PbCl2 kaolin gel Petiau 2 chamber type OSU V2.0';
manufacturer = 'Oregon State University/Adam Schultz and Tristan Peery';
elseif strcmp(number(1:2),'11')
electrodes = 'Pb-PbCl2 kaolin gel Petiau 2 chamber type OSU V3.0';
manufacturer = 'Oregon State University/Tristan Peery';
else % details unknown
electrodes = 'Pb-PbCl2 kaolin gel Petiau 2 chamber type';
manufacturer = 'Oregon State University';
end
end