Bottle Sampling Depths

Bottle Sampling Depths, based on downcast profiles

here

The CalCOFI CTD-rosette is equipped with a Sea-Bird Electronic carousel water sampler (SBE 32), a computer-driven, electro-magnetically-released latch system. The 24 ten-liter plastic (PVC) bottles, equipped with epoxy-coated springs & Viton (non-toxic) O-rings, connect to 24 individual triggers by lanyards which keep the bottle ends open. During the downcast, profiles of different sensor measurements vs depth are displayed real-time on a computer screen. Based on the chlorophyll maximum & mixed layer depths, bottles are closed at specific depths to isolate the seawater. The 10 meter bottle spacing shifts up or down (see table below) to resolve steep gradient features such as chlorophyll, oxygen, nitrite maxima and shallow salinity minimum. Salinity, oxygen and nutrients samples are analyzed at-sea for all depths sampled. Chlorophyll-a and phaeopigments samples from the top 200 meters, bottom depth permitting, are also extracted for 24hrs and analyzed at-sea. Most CTD-rosette casts sample 20 depths to a maximum of 515 meters, bottom depth permitting. Occasionally, additional bottle depths or multiple bottles are tripped at the same depth to provide extra water for ancillary projects or primary productivity incubations. Two basin stations, off Santa Monica & Santa Barbara, are sampled beyond 515m to within 10m of bottom. Wire-length permitting, a 3500m deep cast is performed at sta 90.90.

Continue reading “Bottle Sampling Depths”

CTD Setup & Diagnostics

Seabird CTD-Carousel Setup & Deck Unit Diagnostics

Deck Unit 00000000
Deck Unit LED Panel Numbers

SIO-CalCOFI’s method of terminating the sea cable uses a custom 4-pin pigtail to terminate a multi-strand conductive wire that allows each individual conductor to be used in any combination. Terminating the sea cable using this technique may be viewed in the CalCOFI Handbook: CTD Termination.

Conventional two-pin Seabird pigtail terminations are standard on NOAA vessels and are usually performed by the ET. So interfacing the CTD deck unit only requires the attachment of the sea cable to the deck unit. This is done by connecting a two-conductor wire, such as Seabird part no. 31371 or a coaxial cable equipped with MS3106A connector, from the winch junction box in the CTD lab to the Sea Cable port on the back of the deck unit (see the deck unit section below).
Once the sea cable is connected to the Seabird 9plus and Seabird 11plus deck unit, the deck unit can be powered on. If cabled properly and all electronics are functioning, the numeric LED panel of the deck unit should display non-zero numbers. These values are different for each channel which can be selected by rotating the WORD SELECT dial to the right of the LED panel.
If the LED panel displays “0.0.0.0.0.0.0.0” then the deck unit and CTD “fish” are not handshaking correctly. Turn the deck unit off and wait 60 seconds before touching any exposed wire. Typically, with only two pins, the problem is reversed polarity so switching the wires in the junction box will correct this issue. Please note that powering on the deck unit with reversed polarity may blow the fuse(s). So after switching the wires and before re-powering on the deck unit, check both the 1/2A and 2A fuses on the back of the deck unit & replace if necessary. It is prudent to keep a good supply of these fuses on hand. Power on the deck unit and hopefully, the LED panel has numbers.

Please note in the photos, yellow tape is used to keep the deck unit Signal Source set to Fish. If the switch is toggled to Tape, the deck unit will not communicate with the CTD. The yellow tape prevents the switch from changing from Fish to Tape unintentionally.

Continue reading “CTD Setup & Diagnostics”

Distance From Shore

Distance = Distance from shore in nautical miles. The CalCOFI database includes a calculated distance-from-shore value used primarily for vertical section plots published in the hydrographic data reports. CalCOFI line coastline intercepts, digitized from Google maps, are tabulated below; the latitudes and longitudes are the origins (zero starting point) for vertical section plots.

Line Sta (if calculated) Latitude N Longitude W
 93.3, 93  26.2  32.978982  -117.272386
 90.0  27.6  33.497430  -117.741800
 86.7, 87  32.1  33.917500  -118.430800
 83.3, 83  39.1  34.273350  -119.308200
 80.0  50.3  34.474500  -120.476500
 76.7, 77  47.23  35.148000  -120.653000
 73.3, 73  49.6  35.653333  -121.221667
 70.0  50.9  36.196667  -121.723333
 66.7, 67  46.9  36.903333  -121.845000
 63.3, 63  49.3  37.398333  -122.425000
 60.0  49.0  37.988333  -122.815000

Basic Source Code (translated from F77 Fortran)

Public Static Sub OLDDS(LAT1!, Lon1!, D!, Liine$)
‘C
‘C — ROUTINE TO RETURN DISTANCE IN NAUTICAL MILES GIVEN TWO POSITIONS
‘C    IN DECIMAL DEGREES.  USES A METHOD THAT WILL MATCH THE RESULTS
‘C    PRODUCED IN THE OLD VERTICAL SECTION PROGRAM.
‘C
‘C  -> LAT0  — LATITUDE OF FIRST POINT. (DECIMAL DEGREES. SOUTH NEGATIVE.)
‘C  -> LON0  — LONGITUDE OF FIRST POINT. (WEST NEGATIVE)
‘C  -> LAT1  — LAT. OF SECOND POINT.
‘C  -> LON1  — LONG. OF SECOND POINT.
‘C  <- D     — DISTANCE (NAUTICAL MILES) BETWEEN POINTS.
‘C
  Dim COSD#
‘      Real LAT1, LON1, LAT2, LON2, D
‘      Real L, DLO, COSD, PI, F, A
      PI# = 3.141592654
      F# = PI# / 180
‘C
‘      INTRINSIC COS,ABS,SQRT
‘C
      ‘COSD#(A#) = Cos(A# * F#)
      If frmSelData.txtDataIn(6) = “” Then
        LineIn! = (Val(Liine$))
      Else
        LineIn! = Val(frmSelData.txtDataIn(6))
      End If
      D! = 0
      Dist2Orig$ = “”
190
    Select Case CInt(LineIn!)
    Case 93, 94 ‘, 93.3
            Lat0! = 32.969    ‘93.3 26.2 Google projection 2010; old value 32.95298 from Ralf & Nav Program
            Lon0! = -117.2696 ‘Google projection 2010; old value -117.2664
    Case 90, 91
            Lat0! = 33.49743   ‘90.0 27.6  Google checked 2010    ‘4969634422
            Lon0! = -117.7418      ‘745017037
    Case 87, 86 ‘, 86.7
            Lat0! = 33.9175    ‘86.7 32.1 Google projection 2010; old .89568      ‘918195424
            Lon0! = -118.4308  ‘Google projection 2010; old .419      ‘431669307
    Case 83, 84  ‘, 83.3
            Lat0! = 34.27335    ‘83.3 39.1  Google checked 2010  ‘2739356345
            Lon0! = -119.3082     ‘310048755
    Case 80, 79
            Lat0! = 34.4745     ‘80.0 50.3 Google projection 2010; old .4631       ‘4823190269
            Lon0! = -120.4765   ‘Google projection 2010; old .4739     ‘485679527
    Case 77, 76  ‘, 76.7
            Lat0! = 35.148     ‘76.7 47.23  Google checked 2010  ‘1446809515
            Lon0! = -120.653     ‘650653673
    Case 73  ‘, 73.3
            Lat0! = 35.6533333333
            Lon0! = -121.221666667
    Case 70
            Lat0! = 36.1966666667
            Lon0! = -121.723333333
    Case 67  ‘, 66.7
            Lat0! = 36.9033333333
            Lon0! = -121.845
    Case 63
            Lat0! = 37.3983333333
            Lon0! = -122.425
    Case 60  ‘, 57.8, 57.9
            Lat0! = 37.9883333333
            Lon0! = -122.815
    Case Else
     Select Case LineIn!
      Case 91.7, 91.6, 91.8, 92
            Lat0! = 33.25773      ‘from Ralf & Nav Program
            Lon0! = -117.4385
      Case 88.5, 88.6, 88.4, 88
            Lat0! = 33.69985      ‘from Ralf & Nav Program
            Lon0! = -118.0522
      Case 85.4, 85.5, 85.6
            Lat0! = 34.01588      ‘from Ralf & Nav Program
            Lon0! = -118.8243
      Case 82, 81.9, 82.1
            Lat0! = 34.435        ‘from Ralf & Nav Program
            Lon0! = -119.955
      Case 81.7, 81.8, 81
            Lat0! = 34.4174       ‘from Ralf & Nav Program
            Lon0! = -119.8033
      Case 78.5, 78.4, 78.6
            Lat0! = 34.77699      ‘from Ralf & Nav Program
            Lon0! = -120.6302
      Case Else
        If LineIn! <> Val(Liine$) And LineIn! <> Val(StndL$) Then
          LineIn! = Val(StndL$)
          GoTo 190
        Else
          Exit Sub
        End If
      End Select
  End Select
‘C
      Lon0! = Lon0! * -1
      L! = Abs(LAT1! – Lat0!)
      DLO! = Abs(Lon1! – Lon0!)
      If (DLO! > 180) Then DLO! = 360 – DLO!
‘C
      L! = L! * 60
      DLO! = DLO! * 60
      DLO! = DLO! * Cos(F# * ((Lat0! + LAT1!) / 2))
      D! = (Sqr(L! * L! + DLO! * DLO!)) * -1
      Dist2Orig$ = Format(D!, “#0.00”)
      If D! = 0 Then Dist2Orig$ = “”

End Sub

Underway Data Processing

Underway Data Processing Methods

1.       Navigate to Underway Data folder and join into a single file, do so using Advanced File Joiner or similar:  http://download.cnet.com/Advanced-File-Joiner/3000-2094_4-169639.html



a.     CalCOFI collects its own data while aboard SIO ships (New Horizon).  These are saved in the Events folder of the appropriate cruise.  A single file name is similar to: 0901NHMETEV_06012009.csv.  Although each filename is labeled by date, date data my not correlate.  This is of no particular consequence, just be aware of it.



b.     When a cruise is aboard a NOAA ship, it is normal to receive a CD-ROM at the cruise with a variety of SCS data.  These data formats are highly variable by ship and by year.  It will usually take a combination of files to find all that you will require (i.e., one file type for TSG, one for fluorescence, one for lat long).  Just merge each file type, then cut and paste columns into the correct order.  Make all SCS data available on the web.



c.     The resultant  file becomes the RAW UNDERWAY DATA for that cruise.  This file contains all unedited data from the Shipboard Computer System (SCS).  This file may include navigational, meteorological, oceanographic, and other mechanical data.  In your local working directory  (e.g., ../UnderwayData/2009/0911NH) save raw data in tab delimited ASCII format and name as YYMMSS_UnderwayRaw.txt  (e.g., 0901NH_RawUnderway.txt)



d.      *Links to SCS information

                               i.    http://oceanexplorer.noaa.gov/technology/tools/scs/scs.html

                               ii.    http://www.unols.org/meetings/2006/200610inm/SessionIIIa/SessionIIIa_Shields.pdf

                               iii.    http://sdsioa.ucsd.edu/



2.       Open merged file and crop data columns to include the following, in order and with the following column headers:



a.     DATE_UTC, TIME_UTC, LA, LO, ST, SA, FL, FI  (Date(UTC), Time(UTC), Lat, Lon, Temp, Salinity, Fluor, Pump)



                                          i.    *Note – There is the possibility that power gets toggled on/off to underway sensors during the cruise.  This results in changes in the total number of data columns (i.e., the first days may have 100 columns of data and the next few only 98).  Attention  is needed to make sure that when cropping data that the correct data is sub sampled.



                                         ii.     **Note – Different ships have different underway column headers/variable designations/configurations.  Consult Underway Data Formats (link) for more information.



3.        Delete rows with:



a.     pump speed not within than manufacturer’s specifications



                                          i.     Doubling the flow rate from what we recommend will have at least one main problem. This flow rate will probably be too high for the conductivity cell and overtime you can see a degradation of the conductivity readings due to this flow rate. What can happen is that the high flow rate may slowly remove the platinum on the electrode within the conductivity cell, especially in areas with a lots of debris and particulate in the water. This will change the area of the conductivity cell which can cause the readings to be high of correct. I am unsure how long this process would take but it is something we have seen before. I really suggest using the recommended flow rate for this instrument. ~SBE Technical Support



b.     no spatial coordinates



c.     erroneous values



                                          i.    *Note – There is the possibility that one or more columns may be missing some or all of the data.   There are several workarounds depending on the missing variable. Consult WTF Moments (link) for more information.



                                         ii.    **Note – With upwards of 100,000 rows of data it is inevitable that most bad values will go unnoticed at this point.  Subsequent data processing steps (i.e., plotting) will make it easier to find errors and to remove them.  Just try to find the large and obvious discrepancies. 



4.    Save cropped file as 0901NH_UnderwayCrop.txt  in same folder as the raw file.



5.    It is necessary to compare and calculate correction regressions based on the comparison of CTD to Underway Data.  Navigate to the final CTD Downcast .csv file folder and join all csvs into a single file (as in Step 1).  These csv files are the ones with IEH bottle data added to them.  In your local working directory  (e.g., ../UnderwayData/2009/0901NH) save raw data in tab delimited ASCII format and name as YYMMSS_CTDd.txt (e.g., 0901NH_CTDd.txt).  If the YYMM_CTDd.csv file is available open in Excel and crop columns accordingly (#7).  



6.    Open file with MS Excel and select the first column ‘A’ and Text-to-Column the Data with comma delimiter.



a.   *Note – DO NOT save this file as YYMMSS_CTDd.txt while in Excel.  A host of things can go wrong.  Data will be Cut and Pasted into a new file shortly.  If you must you can save it as some tempfile.xlsx.



7.        Crop data columns to include the following, in order and with the following column headers:



a.      Date_Time_UTC, Lat_Dec, Lon_Dec, Temp0, Temp1, BTL_Depth, BTL_Salt, BTL_Chl



                                          i.    *Note – If Underway Data was only available with Date and Time in PST select Date_Time_PST instead.



8.    Sort Ascending (Smallest to Largest) based on BTL_Depth and Delete all depths greater than 2m, all rows with no BTL_Depth values, and all Header rows except for one which needs to be cut and pasted back at the top after we are finished sorting.



9.    Sort Ascending based on Date_Time.



10.  Delete any rows that are missing any information.



11.  Delete any duplicate stations.  You can tell if two subsequent rows are from the same station by the time, delete  the deeper.



12.  Make sure Header row is at the top.



13.  After the Temp 1 column, insert 2 additional blank columns.



a.   Average the two Temp columns into the first blank column, then copy and paste ‘values only’ into the second.  Delete the Temp0, Temp1, and first column.  Header the remaining column as TempAvg.



14.      Add three extra headers/columns  at the end of the existing



a.      …, ST, SA, FL, FI (…, T, S, Fluro, Pump)



15.  Open a previously completed copy of YYMMSS_CTDvsUnderway.xlsx.  Select, Copy, and Paste all rows and columns from the sorted and corrected …CTDd.txt file into the recently opened xlsx file.  Save and RENAME the xlsx file accordingly (i.e., NEW YYMMSS ).  Make sure no old data lingers in the spreadsheet as this would cause errors in the fit of the regression.



a.   *Note – We reuse the xlsx file because it already has multiple graphs set up.  You will of course need to resize the data sets for each graph as necessary, and rename the graph titles.  But if you followed the above steps the columns will be in the right places and everything should fall into place.



16.  Open the …UnderwayCrop.txt in MS Excel, Tab delimited.  Arrange both files in Tile View.



17.  Using this new …CTDvsUnderway.xlsx file’s Date_Time as a guide, scroll down the …UnderwayCrop.txt and find a corresponding date and time.  There will be more than one row of data for the time you are trying to match.  Try not to bias the selection of the Underway data and just pick the first one you see. Select the four columns, Temp, Salinity, Fluor, Pump, from UnderwayCrop and Copy them, and Paste them to the xlsx file in the last four columns ST, SA, etc.  Do this for all the rows in the CTDvsUnderway file.



a.     Because the number of rows will change from cruise to cruise, the graph data source will need to be adjusted accordingly.  This is important as the linear regression equations shown on the graphs are used to correct the Underway Data in subsequent steps.  Save file.



18.  For export to MATLAB it is necessary to Cut the xlsx data (numbers no graph info) and paste it into a new UltraEdit .txt file. Name it accordingly (YYMMSS_CTDvsUnderway.txt).  This is done to remove any .xlsx formatting that may cause MATLAB to choke on import.



19.  Start Matlab and load a previously completed .m file as a template (e.g., 0901NH.m).  The .m file will have incorrect variable names and notes pertaining to that specific cruise.  Change and update accordingly.  Also make sure you are working in your current underway folder.



a.     Import UnderwayCrop.txt and follow along the notes in the script for error checking and saving data as a .mat file.



b.      Import …CTDvsUnderway.txt.  There will be an error with this as the Date_Time will not ingest properly.  Ignore it, the date is not important for plotting  unless GPS has failed and you need the data and time to correlate with the Event Log GPS to get some coordinates to make these maps.



c.      An important step to be aware of is toward the end of the script it asks you to use dlmwrite function to export the final underway data product.



20.     The template m-file will guide you through the entire process.  When you get to the regression corrections take the values from the xlsx file graphs that you generated earlier.  When you make the Matlab plots they should print into your working folder.



21.     Open a previous yymmplot.ai file in Adobe Illustrator and the first plot from Matlab (i.e., t0901NHpath.eps).  Save the .ai file with the current cruise YYMM.



a.     In dealing with the .eps file from Matlab you will find that all we really need is the color path and the gradient bar frame and numbers.  Ungroup and delete all you don’t need (coastline, grid, tick marks, gradient color, etc.)



b.     Since the path is thousands of small circles, select them all, group them, then copy them to the clipboard. Delete the preexisting path in the .ai file and make sure you paste the new one in the correct .ai layer and resize to fit the station layout / cruise path.  This isn’t an exacting process, just make it fit best you can.  Make sure to lock/unlock layers as you go to prevent the pasting / editing in the wrong place.



c.     Go back to the eps and copy the gradient bar box, tickmarks, and numbers.  Since each cruise’s graph has a different range of values these gradient bars change.  The colors stay the same (if you followed the Matlab m-file correctly) but we need to make the new numbers fit the template.   Delete the old box and numbers and paste in the new and resize accordingly.  Resizing will skew the font so once everything is in the right place check the font setting and set to 18pt Myriad Pro with 100% font stretching in both directions.  You will also have to change the decimals and numbers a bit as Matlab tend to separate the numbers after the decimal in eps format.  Just delete the end and retype the number using the left half.



d.     Unlock and Edit  the Title layer to the correct cruise designation and dates and title.



e.     In Illustrator to save as pdf “save a copy”, to save as png Use Export (white background, medium resolution, anti aliased) .  Open each png in Photoshop and shrink to 75 pixels keep proportionality and rename with a         ” _t” at the end for the web thumb.

31.   Upload all data and images to calcofi.com FTP Underway_Data directory.

32.   Edit calcofi.com Joomla site with new underway data accordingly.

 

CTD General Practices

 

CTD General Practices: System Description, Deployment, Data Aquisition, & Maintenance


SUMMARY: Since 1993, the CalCOFI program has deployed a Seabird 911 CTD mounted on a 24-bottle rosette during seasonal, quarterly cruises off California. The CTD-rosette is lowered into the ocean to 515m, depth-permitting, on 75 hydrographic stations using the ship’s conductive-wire winch. Data from the sensors are transmitted up the conductive wire and displayed real-time on a data acquistion computer. Discrete seawater samples are collected in 10L bottles at specific depths determined by the chlorophyll maximum and mixed layer depth. These samples are analyzed at sea and used to assess the CTD sensor data quality plus measure additional properties. Processed CTD sensor data are compared to the seawater sample data and corrected when necessary. Preliminary data are available on CalCOFI’s website, calcofi.com, while the cruise is at sea when internet is available. Preliminary processed data files are online shortly after the cruise returns. Final, publication-quality bottle & CTD data are available once the bottle data have been fully processed & scrutinized.


1. Basic CTD Components

The Seabird 911/911plus CTD configuration has evolved since 1993.  Components are added or upgraded as new sensor technology becomes available.

The current (since Nov 2009) CTD & sensors configuration: 

  • SBE9plus CTD with SBE11 v2 Deck Unit (CTD 911plus); rated to 6800m 
  • dual SBE3plus fast response temperature sensors (T); rated to 6800m 
  • dual SBE4C conductivity sensors (C); rated to 6800m 
  • dual SBE43 oxygen sensors (O2); rated to 7000m 
  • dual SBE5T pumps; rated to 10,500m 
  • Seapoint Chlorophyll Fluorometer; passive flow (not pumped), mounted on rosette, not shuttered; rated to 6000m 
  • Wetlabs C-Star Transmissometer; 25cm 660nm, passive flow; rated to 6000m
  • Satlantic ISUS Nitrate sensor; since 0411; v1 ISUS powered by an external 12v battery, passive flow; rated to 1000m 
  • Seabird SBE-18 pH sensor; since 0911; rated to 1200m 
  • Datasonics/Teledyne-Benthos PSA-916 Altimeter; mounted unobstructed & low; rated to 6000m 
  • Biospherical Remote Photoradiometer (PAR) QSP-2300; rated to 2000m; alternate model QSP-200L; rated to 1000m 
  • Biospherical Surface Photoradiometer (PAR) QSR-240; attached to deck unit
  • Remote Depth Readout SBE14; attached to deck unit; allows winch operator to see CTD depth

The SBE9plus (‘fish’) is mounted on the rosette horizontally and plumbed accordingly, with pump output at the same height as temperture sensor intake. Temperature, conductivity, & oxygen sensors plus pumps are affixed to the SBE9plus housing.Other sensors are mounted on the rosette frame so they have unobstructed water flow particularly during the downcast. Remote PAR is attached as high on the rosette frame as possible with a protected but unobstructed surface view. The altimeter is mounted as low as possible so the acoustic signal is not impeded by the rosette frame.

2. Preparation & Deployment

Weather-permitting, the CTD and bottles are prepared for deployment 20 minutes prior to station arrival. 
CTD-rosette preparations on CalCOFI cruises include: 

  • Prep the electronics: removal of fresh-water rinse tubes attached to the pumps; removal of the PAR protective cap;removal of the pH sensor capRBS rinse (using a squirt bottle) the transmissometer lenses to eliminate surface film.
  • Prep the rosette bottles: 24-10 liter bottles are propped open by stretching the spring-loaded end caps back and securing their nylon lanyards to the proper carousel position. Bottle breathers & sample-drawing valves are checked for closure. Tag lines are attached to the rosette and once secured, the deck straps are removed. ISUS nitrate sensor battery deck charging cable is disconnected and set out of the way and the battery connected to the sensor.Header Form
  • Electronics warmup: after bottle prep, ~fifteen minutes prior to station arrival, the CTD deck unit is turned on, powering up the CTD electronics. Seabird has recommended at least a 10min warmup to improve SBE43 oxygen data at surface. After filling out the header form (see example), data aquisition is started. The ISUS nitrate sensors power cable is attached to the battery to allow several minutes warmup prior to deployment if not done after bottle prep.
  • Before deployment, the CTD’s pressure reading on-deck is logged on the console ops form. This value is monitored at the beginning and end of the cast for shifts in the pressure baseline. It’s median on-deck reading should be ~0. If the on-deck pressure become greater than +-0.3db, a corrective pressure sensor offset should be applied and documented in the CTD cast notes. It is important to wait several minutes after turning on the CTD deck unit before assessing the deck pressure.

Deploying the CTD-rosette: 

  • The CTD-rosette is launched and held just below surface; enough wire is paid out so the bottle tops do not break surface when the ship rolls. SIO-CalCOFI uses high visibility yellow tape above the cable grip as a visual guide for the winch operator to adjust 0m.
  • The winch readout is zeroed and the CTD is sent to 10 meters for ~2 minutes to purge air from the system, allow the pumps to turn on (triggered by seawater contact; status is verified on the CTD computer screen). This gives the sensors a few minutes to stabilize and thermally equilibrate after sitting on-deck. (Please note that some CTD operators do not power-up the CTD system until the unit is in the water. This a a precaution recommended by some programs and UNOLS but not practiced by SIO-CalCOFI. Since 1990, SIO-CalCOFI has powered up the system on-deck then deployed and never had a problem.)
  • Communicating with the winch operator using intercom or radio, the CTD operator requests the CTD return to just below surface. Data archiving is initialted by selecting Real-Time Data/Start Archiving in Seasave (IMPORTANT if data archiving has not already started) and Display/Erase All Plots clears the surface & 10m soak noisy plots. Hold at surface for ~one minute to log data and verify T, C, & O2 sensor correctness & agreement between the primary and secondary pairs.
  • If everything looks good, the CTD is lowered to 515m, depth-permitting, at 30m/min for the first 100m then 60m/min to terminal depth.
  • If the bottom depth is less than 515m, the CTD is lowered to 10m above the bottom, according to the altimeter reading, not wire readout. After the wire settles and if conditions permit, the CTD depth may be adjusted to ~5m above the bottom if a standard level is attainable.

3. Data Acquistion & Seawater Collection

Our CTD data acquistion system is a Intel (ASUS) blade PC running Windows 7 64-bit and Seasave v7, Seabird’s data acquisiton program. Calibration coefficients for each sensor are entered during CTD setup and termination before the first cast. Data are logged at 24hz to insure maximum resolution & flexibility in post-cast data processing; 24Hz data allow re-calculation of derived values using different post-cast or post-cruise coefficients. The SBE11 deck unit v1 auto-applies a 0.073ms offset to the primary conductivity only. The SBE11 deck unit v2, used since Jul 2009, auto-applies a 0.073ms offset to both primary & secondary conductivity sensors. 
During the cast, Seasave’s main plot window displays real-time temperature, salinity, oxygen, and fluorometry versus depth. Seasave has a 4 parameters-per-plot limitation so additional plots are used to display other sensor profiles. A fixed-data window lists real-time data in numeric form so T, C, & S values may be transcribed to the CTD console operations log prior to bottle closure. 

  1. When the CTD arrives to the target depth, time, wire out, depth, T, C, S, & alt (if near bottom) are written on the console ops form. This usually takes at least 20secs, the minimum mandated flushing time before closing a bottle. 
  2. In Seasave, the ‘create marker’ command is initiated followed by the ‘fire bottle’ command. When the bottle closure confirmation is received by the deck unit, the ‘bottles fired’ will increment by one. The CTD operator records the confirmation time on the bottle depth record, then checkmarks the bottle confirmation boxes.
  3. When the first bottle has closed, the bottle-closure confirmation time, latitude, longitude, and bottom depth (from echo sounder), are recorded on the form’s CTD-At-Depth sidebar. If a cruise event log is running, a CTD AT DEPTH event is logged. A 500m CTD cast takes ~50mins so the GPS position & time recorded during the first bottle trip becomes the primary cast information for the bottle data.
  4. The CTD-rosette is raised to the next target bottle depth at ~60m/min, conditons permitting. Console ops logging and bottle closure steps (1 & 2) are repeated until the CTD-rosette is back at surface and final bottle closed.
  5. The CTD-rosette is recovered using taglines and once on deck, re-secured to the deck eyes with short lines or strap.
  6. The deck pressure is recorded on the console ops form and data aquisition is halted.
  7. SIO-CalCOFI-authored CTD backup program (CTDbackup.exe) is used to immediately zip all cast files and archive the zip file to other media. This program also generates an electronic sample log using the CTD AT DEPTH event plus .hdr & .mrk files to log seawater samples (see CESL: CalCOFI Electronic Sample Log).
  8. The ISUS power cable is disconnected, PAR & pH sensors are capped.

4. Water Sampling

Seawater samples are drawn from the 10L rosette bottles once the CTD-rosette has been secured. Oxygen samples are drawn first, followed by DIC/pHs, salts, nutrients, chlorophylls (from depths 200m or less), and LTER’s suite of samples. Please refer to the specific water sampling or analytical method for more information.

5. Quality Control

The CTD electronics and sensors are reliable and stable when properly serviced and maintained. CalCOFI has established some standard practices over time to keep the CTD functioning properly. 

  • De-ionized or freshwater rinses: post-cast the plumbed-pumped sensors (2 pairs of T, C, O2, & pump) are flushed with de-ionized or Milli-Q water to minimize bio-fouling.
  • The carousel is hosed with fresh water to reduce mis-trips from bio-fouling or inorganic particulate buildup. A vinyl rosette cover is used when the CTD-rosette needs protection from contaminants or debris.
  • PAR and pH sensor (stored in buffer) are capped when on-deck.
  • Deck tests are performed before the first cast to derive transmissometer coefficients based on in-air and blocked light path voltage readings. A chlorophyll standard, finger or palm (yes – your finger or hand can be used max out the fluorometer, just avoid touching the optical surfaces) in front of the fluorometer optics can test the maximum response voltage. Deck tests are performed occasionally during the cruise to monitor transmissometer and fluorometer stability and response.
  • At-sea analyses of seawater samples allow bottle data to be compared to sensor data quickly, particularly salinities. When bottle salts are analyzed, the bottle salinity calculation is immediately compared to the CTD value and flagged if significantly different.  This allows early detection of analytical equipment or CTD sensor malfunction. Oxygen, chlorophyll, and nutrients data comparisons are less immediate but when data look suspect, this ability helps identify real vs faulty measurements. Oxygen sample draw temperature (temperature of the seawater sample at the time the O2 sample is taken) is the first indicator of bottle mistrip. If the O2 draw temperature does not follow the trend indicated by the CTD temperture displayed on the sample log. The bottle may have closed at the wrong depth.

6. Equipment/Supplies

Conditions at sea can be rough and gear can break so CalCOFI prefers to have backups of all mission-critical components to conserve shiptime. Replacing defective gear often takes less time then troubleshooting or repairs. All sensors include their respective sensor-to-CTD interface cables plus spares.

  1. 2 – Seabird SBE9plus CTDs with sensors; the primary package is inventoried in section 1; sensors without backups: ISUS nitrate sensor, pH sensor, deck unit remote depth readout 
  2. 2 – deck units: primary SBE11v2; backup SBE11v1
  3. 2 – Windows 7 (ASUS blade) computers with 2 serial ports; deck unit, & GPS interface cables.
  4. 2 – SBE32 carousels; plus spare trigger assemblies
  5. Console operations forms plus clipboard
  6. Timer, for 2 minute soak at surface
  7. 2 – 24 place aluminum rosette frame
  8. 2 – sets of 24 10L Niskin bottles; plus 4 spare bottles; multitude of spare parts
  9. 2 – sets of 24 nylon lanyards for Niskin bottles
  10. Termination toolkit and supplies – please refer to termination documentation for info on CalCOFI CTD wire termination techniques.
    1. butane soldering wand, solder, butane
    2. adhesive-lined shrink tubing: 1/8″
    3. Scotch 130 electrical splicing tape
    4. Scotch 33 electrical tape
    5. Scotch-kote electrical coating
  11. Cable grips, stainless steel thimbles, and shackles to attached sea cable to the rosette
  12. 3 – taglines with detachable hooks
  13. 3 – 1m deck lines to secure the rosette on deck; straps
  14. 4L Milli-Q filled carbuoy with hose for flushing the plumbed sensors post-cast 
  15. Hose, for freshwater rinse of carousel and other components post-cast
  16. Stainless steel hose clamps: 100 – size 88 for mounting Niskin bottles to the rosette; misc others to mounted the CTD, ISUS, battery, and sensors to the frame.
  17. Turner Designs fluorometer standard for SCUFA (fits Seapoint fluorometer) for deck calibration; Black rubber “card” for transmissometer deck test. Currently we using Wetlabs ECO-Fl fluorometer which does not have an optical path that works with the Turner Designs standard so fingers an inch away from the detector is used to max out the voltage. Seapoint flurometer is backup.
  18. RBS or Micro in a squirt bottle for rinsing the transmissometer lenses before deployment. RBS or Micro are residue-free soaps in dilute Milli-Q solutions.
  19. CTD cable servicing kit containing silicone grease; electrical contact cleaner; cotton swabs; Kim-wipes
  20. 3 – Wetlabs 12v batteries, multi-battery charging station, on-deck weather-proof battery charging cable for ISUS nitrate sensor batteries.

7. Maintenance

CalCOFI sends all CTD electronics to their respective manufacturer for service and maintenance. The conductivity, and oxygen sensors are serviced & re-calibrated after use on two consecutive cruises (~150-200 deployments). SBE3plus temperature sensor calibration has changed to annually since the stability of these sensors is well documented. Routine Seabird carousel maintainance is performed by the CalCOFI-SIO Technical Group (CSTG). When repairs or five-year service are needed, the carousel is sent to Seabird. PAR sensors are serviced by Biospherical every three years. 
General protocol is any sensor is returned for repair if the sensor fails or data quality diminishes. The SBE9+ CTD (‘fish’) is routinely serviced every five years. The aluminum-frame rosette is repaired or modified at SIO’s Research Support Shop whenever necessary.

8. References

  1. Sea-Bird Electronics, Inc, 2009. SBE 9plus Underwater Unit Users Manual, Version 012
  2. Sea-Bird Electronics, Inc, 2009. SBE 11plus V2 Deck Unit Users Manual, Version 012
  3. Sea-Bird Electronics, Inc, 1998. SBE 32 Carousel Water Sampler Operating and Maintenance Manual

 

ISUS Nitrate History

 ISUS NITRATE HISTORY

 


The original methods description was written Feb 2010 by J. Wilkinson.  Changes to the method or instrument are listed below.


 

Changes

Cruise/Ship

Date

Author

Description

1611SR+ 11-06-2016 J.Wilkinson ISUS firmware upgraded to v3 allowing ISUScom software usage & sensor recalibration by SIO-CalCOFI, plus batch downloading via USB cable
1203SH+ 3-24-2012 L. Ekern Discrete nitrate sample analysis now preformed on Seal QuAAtro Analyzer by an in-house technician rather than being contracted out.

0810NM

10-14-2008

J.Wilkinson

ISUS not deployed this cruise.

0610RR

10-21-2006

J.Wilkinson

new LTER ISUSv2 deployed for the first time this cruise.

0607NM

07-01-2006

J.Wilkinson

ISUSv1 (crushed on LTER Process Cruise P200605) not deployed this cruise.

0411RR

11-02-2004

J.Wilkinson

ISUSv1 (P. Franks) deployed for the first time on Seabird 911+

 

ISUS Nitrate

ISUS Nitrate Sensor

 


SUMMARY: Since November 2004, a Satlantic ISUS nitrate sensor has been integrated with a Seabird 911+ CTD-Rosette system deployed on CalCOFI cruises. Cruises typically occupy 75 stations, collecting approximately 1400 discrete seawater samples throughout the water column. The discrete seawater samples are analyzed at-sea for nitrate, nitrite, silicate, phosphate and ammonia within 24 hours of collection. The ISUS voltage data are processed along with other sensor data using Seabird’s SBE Data Processing Suite. Processed CTD-ISUS data are merged with bottle data. The ISUS voltages are plotted versus corresponding nitrate data, generating a voltage-to-nitrate regression. These regression coefficients are applied to all ISUS voltages, converting voltages to estimated nitrate.


 

1. Principle

The Satlantic ISUS (In Situ Ultraviolet Spectrophotometer) is a real-time, chemical-free ultraviolet spectrophotometer detecting absorption characteristics of inorganic compounds in the UV light spectrum. The ISUS uses the UV (200-400 nm) absorption characteristics of nitrate and bromide to provide in situ measurements of their concentrations in solution. The sensor has four key components: a stable UV light source, a UV spectrophotometer, a bifurcated fibre optic sampling probe, and a processing microcomputer housed in a pressure case rated to 1000 meters. The ISUS measures the in situ absorption spectrum and then uses the calibrated coefficients and a least-squares curve fitting routine to calculate an absorption spectrum matching the measured spectrum. It then calculates the concentrations of nitrate and bromide required to generate the matching spectrum. This response is exported to the Seabird CTD as voltage logged with other sensor data at 24Hz.

2. CTD Integration

2.1.

Clean the sensor: prior to mounting, the ISUS sensor optical path is cleaned with an alcohol-dipped cotton swab following the method described in the Satlantic ISUS manual. Basically, the alcohol-dipped swab it pulled across the optical surfaces in one direction. Using a fresh swab each time, the process is repeated until the optical surface is clean. This process should be performed whenever the sensor response seems effected by bio-fouling.

2.2.

The ISUS is mounted on the rosette so the sensor has unobstructed seawater flow. An ISUS battery is mounted nearby to provide power (ISUS v1 or v2 draws more amps at startup than can be provided by the Seabird 911+ CTD).

2.3.

Cable connections: connect the ISUS analog-out port to an open CTD channel; rig the battery cable so it can be easily, securely attached to the ISUS power connector several minutes prior to deployment. Note that internal data logging will begin when the battery is attached but the sensor generates better in-situ data when warmed-up for several minutes.

2.4.

 Software setup: Seasave, the Seabird CTD data acquisition software, will record the voltage from the ISUS on the channel it is installed. To display a real-time estimated nitrate cast profile, a ‘user-polynomial’ is setup to display ISUS data. Coefficients from a previous discrete-nitrate vs ISUS voltage comparison are entered as second-order polynomials.

 

3. Data Processing

3.1.

Using Seabird’s SBE Data Processing Suite, apply the 911+ recommended (by the help or data processing manual) modules:

3.1.1 Datcnvascii-formatted cnv files are generated for all casts

3.1.2 Window filter – median filter all data; 9 is used for all data channels except the ISUS voltage channel – 500 is used to smooth the sensor oscillation.

3.1.3 Filter – low pass filter A equal to 3 secs is applied to ISUS voltage; low pass filter B equal to 0.15 secs applied to pressure

3.1.4 AlignCTD – oxygen sensors 4 secs offsets applied

3.1.5 Cell Thermal Mass – standard corrections applied to both conductivity sensors

3.1.6 Derive – depths, salinities, oxygens, densities, potential temperatures, specific volume anomaly, dynamic meters (heights) are (re)calculated using processed cnvs.

3.1.7 Ascii-out – export the basic parameters: scans, pressure, temperatures, salinities, oxygens, depths & voltages to asc files.

3.2.

A preliminary IEH (legacy data processing & archival ascii format) data file of bottle sample data is generated using CODES & DECODR, two ‘in-house’ data processing programs.

3.3.

The CTD data is merged with bottle data using another ‘in-house’ developed Windows software program, BtlVsCTD.exe.

3.3.1 During each CTD cast, Seasave generates a .bl file which indexes the scan value when a bottle-trip is initiated and when the bottle closure is confirmed. Using the .bl file indexes as end points, BtlVsCTD bin-averages 4 seconds of CTD data prior to the bottle closures.

3.3.2 The matching bottle data are appended to the comma-delimited CTD data records into a csv. This csv includes data from all CTD records with matching bottle data.

3.3.3 Importing the csv into Excel, the 4-sec average ISUS voltages are plotted vs the bottle nitrate data. A linear regression is applied and the coefficients tabulated.

3.3.5 In addition to ISUS/nitrate, CTD oxygen (ml/L) and fluorometer voltage are regressed vs bottle data, coefficients tabulated; CTD salinities are compared to bottle salts > 340m, offsets derived for both conductivity sensors.

3.3.5 BtlVsCTD.exe – using the bottle vs CTD regression/correction coefficients, csvs of 1m bin-avg upcast CTD data merged with bottle data are generated. These data (temperature, salinity, oxygen, chlorophyll, & nitrate) vs depth are plotted using Matlab for point-checking and CTD data-quality assessment.

3.4.

Final CTD data processing is performed using Seasoft modules.

3.4.1 CTD data files are split into down and up casts using the Split module.

3.4.2 The Loopedit module is applied to downcast data; Settings: type = ‘Fixed Minimum Velocity’, ‘Minimum CTD Velocity’ = 0.0333m/s, ‘Bad Scans Excluded’

3.4.3 Binavg module applied to both down and up cast files, averaging CTD data into 1 meter depth bins.

3.4.4 Ascii-out of up and downcast CTD data.

3.5.

Once final bottle data are available, they are merged with final CTD data using BtlVsCTD.exe. Resulting csvs are plotted using Matlab for final data QC. Data are considered final once the final plots are assessed and final corrections applied, if necessary.

4. Calculations

4.1 Linear regression of ISUS voltage vs discreet nitrate data generates cruise-average correction coefficients.

4.2 BtlVsCTD calculates individual station regressions of ISUS voltage vs discreet nitrate data. This ‘on-the-fly’ linear regression generates station-specific corrections coefficients which are applied to the specific cast.

Both cruise and station-corrected nitrate estimates (and the coefficients) are tabulated in the final csvs.

5. Equipment/Supplies

·         Satlantic ISUS v2 Nitrate Sensor

·         Three 12v Wet-labs rechargeable battery packs

·         ISUS analog signal to Seabird 9 interface cable

·         ISUS power to battery cable

·         ISUS Rs-232 interface cable to download internal data files

·         Windows laptop with serial interface to program the ISUS and download data.

·         Alcohol & cotton swabs

·         Nutrient collection tubes for seawater samples

·         Seal QuAAtro nutrient analyzer & in-house analyst

6. References

·         Johnson, K.S.; & L.J. Coletti. 2002. In situ ultraviolet spectrophotometry for high resolution and long-term monitoring of nitrate, bromide and bisulfide in the ocean. Deep Sea Research I 49: 1291-1305.

·         Maillet, Gary and Geoff MacIntyre. 2009 Real-Time Monitoring of Nitrate With the Satlantic-ISUS Sensor. Online at: http://www.meds-sdmm.dfo-mpo.gc.ca/isdm-gdsi/azmp-pmza/documents/docs/bulletin_6_10.pdf

·         Satlantic Incorporated. 2005. MBARI-ISUS V2 Operation Manual, Document Number: SAT-DN-272, Revision G.1, August 2006

 

Primary Productivity History

PRIMARY PRODUCTIVITY CHANGES


A description of the method was written February 2010 by D. Wolgast.  Changes to the method are listed below.


Radioactive Specific Activity Changes

Section Date Prepared By Description
       
3.3 6/10/2016 D. Wolgast 25mCi diluted to 32uCi/ml Batch 0509YW4, 800mls
3.3 8/8/2014 D. Wolgast New 14C Stock: diluted to 69.40µCi/ml; Batch 0500ZV4 (replaces 0509G57 orig. UCSD barcode), used for (1411) November 2014 to present
3.3 9/8/2010 D. Wolgast & D. Faber New 14C Stock: diluted to 308.37µCi/ml; Source: MP Biomedicals, barcode 0508YD5, used for (1011) September 2010 until July 2014 (1407)
3.3 12/15/2008 D. Wolgast & D. Faber New 14C Stock: diluted to 284.23 µCi/ml; Source: MP Biomedicals, batch 081215, used for (0901) January 2009 until August 2010 (1008)
3.3 3/9/2007 D. Wolgast & J. Sheldon New 14C Stock: diluted to 271.32 µCi/ml; Source: MDS Nordion, batch 070308, used for (0704) April 2007 until November 2008 (0810)
3.3 6/23/2005 D. Wolgast New 14C Stock: diluted to 335.90 µCi/ml; Source: MP Biomedicals, batch 0506, used for (0507) July 2005 until January 2007 (0701)
3.3 4/5/2005 D. Wolgast New 14C Stock: diluted to 215.76 µCi/ml; Source: MP Biomedicals, used for (0504) April 2005
3.3 10/25/2004 D. Wolgast New 14C Stock: diluted to 2351.46µCi/ml; Batch 0411, used for (0411) November 2004 until January 2005 (0501)
3.3 3/3/2004 J. Sheldon New 14C Stock: diluted to 75.03 µCi/ml; Source: ICN Biomedicals, batch 0402, used for (0403) March 2004 until July 2004 (0407)
3.3 Mar-03 D. Wolgast New 14C Stock: diluted to 41.48 µCi/ml; Source: ICN Biomedicals, batch 0324, used for (0304) April 2003 until January 2004 (0401)
3.3 Mar-03 D. Wolgast New 14C Stock: diluted to 42.38 µCi/ml; Source: ICN Biomedicals, batch 0302, used for (0204) April 2002 until February 2003 (0302)
3.3 11/17/1995 D. Wolgast New 14C Stock: diluted to 51.45 µCi/ml; Source: ICN Biomedicals,batch 03Z58 used for Nov 1995 until  January 2002 (0201)

Radioactivity added

Cruise Radioactivity added µCi Comments
1704    
1701 5.89  
1611 6.58  
1607 6.63 New Batch 0509YW4
1604 9.26  
1601 8.64  
1511 10.36  
1507 11.64  
1504 12.18  
1501 8.74; 8.08 Due to the decreasing activity of the isotope stock through the cruise the prodo samples were processed in two batches.
1411 10.21  
1407 7.783  
1404 9.481  
1402 9.47  
1311 10.239  
1307 11.47  
1304 11.03  
1301 11.28  
1210 Varied  
1207 27.68; 12.95  
1203 12.69  
1202 12.36  
1110 11.76; 10.15 Due to the decreasing activity of the isotope stock through the cruise the prodo samples were processed in two batches.
1108 13.78  
1104 6.992  
1101 49.66  
1011 50.64  
1008 25.6  
1004 40.05  
1001 40.6  
0911 43.19  
0907 43.38  
0903 45.75  
0901 46.59  
0810 40.27  
0808 44.36  
0804 45.8  
0801 52.29  
0711 47.95  
0707 48.55  
0704 53.14  
0701 44  
0610 56.1  
0607 63.1  
0604 59.1  
0602 59.1  
0511 59.1  
0507 64.74  
0504 41.58  
0501   Variable due to problems with acid/Teflon and bicarbonate substrate.
0411 32.3-41.66 Transition to higher activity to facilitate DO14C assay.
0407 15  
0404 15  
0401 8.3  
0310 8.3  
0307 8.3  
0304 8.3  
0302 8.48  
0211 8.48  
0207 8.48  
0204 8.48 Stock diluted and stored in cleaned polycarbonate and Teflon
0201 11.3 Stock in glass sealed ampoules
0110 11.3 Stock in glass sealed ampoules
0107 11.3 Stock in glass sealed ampoules
0104 11.3 Stock in glass sealed ampoules
0101 11.3 Stock in glass sealed ampoules
0010 11.3 Stock in glass sealed ampoules
0007 11.3 Stock in glass sealed ampoules
0004 11.3 Stock in glass sealed ampoules
0001 11.3 Stock in glass sealed ampoules
9910 11.3 Stock in glass sealed ampoules
9908 11.3 Stock in glass sealed ampoules
9904 11.3 Stock in glass sealed ampoules
9901 11.3 Stock in glass sealed ampoules

Methodological Changes

Section

Date

Author

Description

       

 

Apr-05

D. Wolgast

The procedure for calculating cruise 14C specific activity for the productivity assay was changed to reflect daily 14C additions averaged over the course of a cruise.  the six dark bottles have one milliliter removed, added to ethanolamine spiked scintillation cocktail for counting.  Previously specific activity was calculated for a batch of stock and used for the entire cruise.  The new method served to check pipeting, inoculation amounts and any changes in volatile 14C stocks.

0411

 

D. Wolgast

Transition to higher activity to facilitate DO14 C assay, 10ml split removed from samples for 14 C

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Salinity

Salinity Determination


OVERVIEW: This procedure describes the method for the determination of seawater salinity using a Guildline Portasal™ Salinometer (Model 8410).
 

1. Principle

During a cruise a 24 bottle rosette is used to collect seawater salinity samples of ~225 mL from all bottles closed from pre-designated depths.  A Guildline Instruments Portasal™ Salinometer (8410A) makes the precise conductivity comparisons between the water samples and a reference water standard.  From these comparisons salinities are then calculated and logged using PC based software that averages data that meet replicate criteria. Concurrent with the water sampling, a Sea-Bird Electronics CTD (SBE 911 plus) profiles in situ data.  Data processing software is used to compare the bottle salts to in situ CTD measurements.  This is useful to confirm bottle closure, monitor CTD performance, and to select the best salinity data for future comparison.  

2. Sample Bottles

Salinity bottles are collected in ~250 ml borosilicate KIMAX-35 bottles.  These square cross sectioned bottles have screw tops and lids with separate plastic thimbles to prevent leakage and evaporation. Numbered stackable divider boxes hold 24 numbered bottles to match the 24 Niskins on the rosette water sampler. Bottles are filled with previously unused sample water to limit salt crystallization and to pre-leech silicate from the glass.  

3. Sample Collection

Numbered salt bottles are drawn from corresponding Niskin bottles and filled to the shoulder after three ~40 ml rinses. The last fill is done without interruption until overflowing; then ~10 ml is poured out over the thimble and the bottle is stoppered and capped. Samples are left to equilibrate to room temperate for >8 hours prior to measurement. Before being placed in the salinometer samples are: gently inverted 3 times to remove any possible stratification, wiped around the bottom of the cap to draw out as much water as possible that may be trapped under and around the cap, wiped around the thimble and threaded neck once the cap is removed to eliminate any excess water or salt precipitate, and flushed by dumping out ~10 ml into a collection bucket.  

4. Guildline Portasal™ Salinometer (8410A)

Guildline Portasal Salinometer model 8410A is used to make the precise conductivity comparisons between the water samples and reference water standards.  Two of these instruments are taken on each cruise.  Guildline specifications state an accuracy of  ±0.003 PSU (same set point temperature as standization and within -2°C and +4°C of ambient), and a precision of 0.0003 PSU.  

3. configuring the PORTASAL™

Bath temperature must be within 2 degrees below and 4 degrees above ambient. To check bath temperature set point press the TSET key. Compare set point to actual by pressing ENTER for actual bath temperature. Set point and actual temperature must be within 0.02°C. Press UP ARROW key to view temperatures of the dual bath thermistors (TH1 and TH2). TH1 and TH2 must agree to within 0.04°C.  

The Portasal must be powered up for >3 hours to ensure bath temperature regulation has begun before Reference values can be calibrated. While the the FUNCTION switch is in STDBY pressing REF key will display alternating Reference readings plus (+), minus (-), and Reference readings. After several cycles, when + and – values are within 1 unit of each other, pressing the COND key will initiate salinometer self-calibration.  

With the FUNCTION switch set to ZERO, pressing the COND key will initiate the ZERO calibration process. When satisfied that the displayed value is stable, press the ZERO key. When the subsequent displayed number is stable (but not necessarily zero) press the COND key. The display should then read 0.00000. Setting the FUNCTION switch back to STDBY will ready the Portasal for Standardization.  

4. SubStandard Preparation

Deep sea water is collected on cruises from bottles tripped at depths greater than 300m in 10 liter polyethtylene jerry jugs. The seawater is then transfered to 50 liter carboys at the lab for filtration. During the transfer 10 ml hypochlorate (bleach) is added to inhibit biological activity.   Concentrated high salinity seawater is prepared by evaporating deep sea water (>300m) by heating the seawater at about 90°C in an oven overnight. A volume of 1800 ml will evaporate down to about 1000 ml in 24 hours, final volume can be adjusted with DI water, this will give a salinity of around 60psu. Filter the concentrate through GF/F filter before using it for adjusting the sub-standard. Filter the deep seawater through GF/F to 46 liter mark. Add 10 ml laundry bleach to inhibit biological activity. Measure the salinity of the filtered water. Adjustment of the substandard salinity is usually done in two steps. For the first adjustment, add concentrate to the filtered sea water to adjust to the desired salinity using the relationship:

(vol. sw)(sal. sw) + (vol. conc.)(sal. conc.) = (vol. sw + vol. conc.)( final sal. sub)

The salinity of the concentrate will be too high to measure on the salinometer. If you have prepared the concentrate as above you can do your initial adjustment using an estimated salinity of 60 for the concentrate. The final salinity of the sub should be close to your standard value ± 0.015 PSU. For the initial adjustment it works well to add about 90% of the concentrate volume calculated above. Be sure you have thoroughly mixed the solution by stirring gently. A motorized paddle wheel is used to thoroughly stir the mixture. Measure the salinity of the sub after the first adjustment. Using the equation above you can now calculate the apparent salinity of the concentrate, by using the salinity of the concentrate as an unknown, along with the known values for the initial salinity of the seawater, and the adjusted value of the substandard as just measured. Applying the calculated salinity value for the concentrate, use the equation again to calculate a new volume of concentrate to be added to get to the final desired salinity of the substandard. If your initial concentrate addition was to large you may have to dilute with DI water using zero for salinity concentrate in the equation. When you have arrived at the desired salinity for the sub-standard add a layer dimethylpolysiloxane to prevent evaporation resulting in salinity changes. 
 

6. IAPSO Standard Seawater

Cut and Paste from WHP Operations and Methods July 1991 

Standard Seawater prepared by Ocean Scienti c International Ltd. (OSI) is the recognized standard for the calibration of instruments measuring conductivity (salinity). This water is natural surface water which has been collected in the North Atlantic and carefully ltered and diluted with distilled water to yield seawater with a conductivity ratio near unity and a salinity near 35. The seawater is sealed in glass vials and labeled with the date, batch number, K15 value and chlorinity. Mantyla (1987) has compared batches of this seawater (P-29 to P-102) and found inter-batch di erences as great as about 0.003 in some of the older batches. Since batch P- 93 however, inter-batch di erences have not exceeded about 0.001.

It is recommended that a single batch of SSW be used during each cruise and that it be identi ed in the cruise report. It is the responsibility of the salinity analyst and chief scientist to ensure that the quality of the salinity observations are the highest attainable. It follows, therefore, that the inter-batch di fferences described by Mantyla (1987) should be used to correct the nal salinities before they are reported. It has also been noted that the conductivity of some Standard Seawater changes with time. Vials more than 4-5 years old should be compared with fresher Standards to determine possible changes in conductivity due to aging.

7. Wolga Water

In addition to using IAPSO SSW, a batch of aforementioned substandard water has been bottled and sealed in glass vials.  This is done to decrease dependence on IAPSO standard while maintaining acceptable standardization accuracies.

8. Standardizing the Portasal with substandard

Before standardization can begin the conductivity cell must be flushed rigorously as it had been filled with detergent or 50% ethanol between uses. To flush, attach the peristaltic pump to the Portasal sampling tube. Turn on both the Portasal and peristaltic pumps, and open the valve on the on the substandard feed line. Flush repeatedly (~10 flushes) until the cell is free of contamination. It is convenient to do this during Portasal configuration. Begin the salt program on the salt computer, and complete requisite data fields.

With the conductivity cell full of substandard and a stable value being displayed turn the FUNCTION switch to READ. When displayed value is stable press STD key. When the Portasal display reads STD STANDARDIZE press ENTER key. The display will show the conductivity of the standard being used. Press ENTER key to proceed (if values of substandard need to be adjusted use ARROW keys.) The BATCH # will be displayed and should match what is being used. If values need to be changed modify with the ARROW keys, pressing the ENTER key will ready Portasal for standardization. The display will read ENTER WHEN READY, press ENTER key. The Portasal will begin measurement and display a substandard value. When stable press the COND key. This will terminate the standardization and the displayed conductivity ratio should match that of your sub-standard within ± 0.00001. Pressing the ENTER key on the salt computer will save it to file.

At the beginning of each sample run the Portasal is standardized with substandard.  However, every other day IAPSO and Wolga standards are also sampled.  All three standards are run before and after the sample run in order to ascertain instrument drift.  

9. Salt Data ACQUISITION Program

The SIO-CalCOFI-authored conductivity recording software, PSal.exe, is a Windows-based data acquisition program that records conductivity values from discreet salinity samples. Averaging five or more conductivity readings from the Guildline Portasal, the operator saves a stable reading. The flow cell is flushed and refilled and additional readings are performed. A pair of conductivity values which agree within 0.0010 standard deviation are recorded and salinity calculated. The software compares this calculated bottle measurement to the matching CTD salinity when available. This comparison is a good indicator of sensor performance and bottle sampling accuracy.
The data are saved as salt run files which may contain more than one station. Keeping the salt runs combined is necessary to calculate the drift-over-time calculated from any change in the end standard or substandard reading. The data are also save in a single, combined, database-friendly csv for database processing (in development).

10. CTD Equipment and Data Processing

A SBE 9ll+ CTD is equipped with dual conductivity and temperature sensors.  These are routinely calibrated (~6 months), but because of superior stability the pressure sensor in calibrated much less frequently (~24 months).

The SBE 11plus Deck Unit applies a real time alignment correction to conductivity during data collection, and the accompanying software generates a marker file for each profile containing CTD data at the instant of each Niskin closure.
Seasoft-processed CTD salinities are processed and imported into station csvs for comparison to bottle salinities.

11. DECODR: Data Entry Compiler & Output Data Reports

CalCOFI-authored Windows program will process the bottle sample conductivity data files generated by the SalReCap.exe data acquisition program. Using beginning and end standards, a linear drift is applied to each conductivity pair before salinity (PSU) is calculated. DECODR combines all stations selected into a single text file for data-quality assessment. When CTD salinities for matching depths are available, DECODR compares the bottle & CTD salinities, calculating & reporting the differences. DECODR, as an option, will save the bottle salinity values into each station’s csv. DECODR can generate data products using bottle or CTD data such as IEH or data reports.

Dissolved Oxygen

DISSOLVED OXYGEN

 


SUMMARY: The amount of dissolved oxygen in seawater is measured using the Carpenter modification of the Winkler method. Carpenters modification (1965) was designed to increase the accuracy of the original method devised by Winkler in 1889. Using Carpenters modification, the significant loss of iodine is reduced and air oxidation of iodide is minimized. Rather than using the visible color of the iodine-starch complex as an indicator of the titration end-point, we use an automated titrator that measures the absorption of ultraviolet light by the tri-iodide ion, which is centered at a wavelength of 350 nm.


 

1. Principle

Manganous chloride solution is added to a known quantity of seawater and is immediately followed by the addition of sodium hydroxide iodide solution.  Manganous hydroxide is oxidized by the dissolved oxygen in the seawater sample and precipitates forming hydrated tetravalent oxides of manganese.

Mn+2 + 2OH ———————————————-> Mn(OH)2 (solid)
2Mn(OH)2 + O2 ——————————————–> 2MnO(OH)2 (solid)

Upon acidification of the sample, the manganese hydroxides dissolve and the tetravalent manganese in MnO(OH)2 acts as an oxidizing agent, setting free iodine from the iodide ions.

Mn(OH)2 + 2H+ ——————————————-> Mn+2 + 2H2O
MnO(OH)2 +4H+ +2I ————————————> Mn+2 +I2 +3H2O

The liberated iodine, equivalent to the dissolved oxygen present in the sample, is then titrated with a standardized sodium thiosulfate solution and the dissolved oxygen present in the sample is calculated.  The reaction is as follows:

I2 + 2S2O3 ————————————————–> 2I + S4O6

2. Reagent Preparation

2.1.  The manganous chloride solution (3M) is prepared by dissolving 600g of reagent grade manganous chloride tetrahydrate, MnCl2•4H20, in Milli-Q water to a final volume of 1 liter.  This solution is then filtered using 47mm glass fiber filters (Whatman GF/F).

2.2  The sodium hydroxide (8M)-sodium iodide (4M) solution is prepared by first dissolving 600g sodium iodide (NaI) in approximately 600ml Milli-Q water.    After the NaI is dissolved, 320g of NaOH is added slowly (caution-the solution will get hot) and the volume is adjusted to 1 liter with Milli-Q.  The solution is then filtered through a GF/F.

2.3.  Sulfuric acid solution (10N) is prepared by slowly adding 280ml of reagent grade concentrated sulfuric acid, H2SO4, to 770ml of Milli-Q water.   This should be prepared with caution as is gets very hot.

2.4.     The sodium thiosulfate solution (0.2N) is prepared by dissolving 50g sodium thiosulfate pentahydrate (Na2S2O3.5H20) and 0.1g anhydrous sodium carbonate (Na2CO3) in Milli-Q water to a final volume of 1 liter.  This solution is prepared approximately 2 weeks before use and stored in an amber glass bottles.

2.5.  The potassium iodate standard (0.0100N) is prepared by first drying potassium iodate(KIO3) in a drying oven for approximately one hour.  Once the KIO3 is dried, carefully measure out 0.3567g, using a 5-place balance, and dissolve in Milli-Q water to a final volume of 1 liter.

3. Sample Drawing

3.1.     Oxygen samples are always drawn first from the Niskin bottles and should be drawn as soon as possible to avoid contamination from atmospheric oxygen.  Approximately 6 inches of Tygon tubing connected to a temperature probe via a y-connector is slipped onto the discharge valve of the Niskin.

3.2.  A calibrated volumetric flask is rinsed three times, then with the seawater still flowing, the end of the tygon tubing is placed into the flask nearing the bottom.  The sample is then overflowed with twice the sample volume while making sure that there are no bubbles in the tubing during the overflow process.  The tubing is then carefully removed from the sample flask to prevent the influx of bubbles.

3.3. Immediately after drawing the sample, 1 ml of manganous chloride solution is added into the flask.  This is followed by the addition of 1ml of sodium hydroxide-sodium iodide solution to the sample.  Both dispensers should be purged to remove air bubbles prior to the addition of these reagents.

3.4.  The stopper is then carefully placed in the bottle to avoid the trapping of air and the temperature of the seawater at the time of sample draw is recorded.

3.5.  After all samples are drawn, they are shaken vigorously to disperse the precipitate uniformly through the flask.  This process is repeated again after the precipitate has settled to the bottom of the flask, or after at least ten minutes.
 

4. Standardization of thiosulfate

4.1.  Proper care in the setup of the auto-titrator is required before running blanks, standards and samples.  The UV lamp is turned on at least 30 minutes prior to the run and should have a stable voltage of 2.4-2.5 volts for the run.  The dosimat tubing is carefully purged so that the lines are completely free of air bubbles, and the water bath inside the auto-titrator is clean and filled with Milli-Q water prior to analysis.  Make sure, prior to your first run, any thiosulfide solution is rinsed off the tip of the line with Milli-Q after purging.

4.2.  Using a Metrohm 655 Dosimat, dispense 10 ml of the standard potassium iodate solution into a clean oxygen flask.  Add a stir bar and rinse down the sides with a small amount of Milli-Q water.  Add 1 ml of the 10N sulfuric acid solution and swirl to ensure the solution is well mixed before adding the pickling reagents.

4.3.  Add 1 ml sodium hydroxide-sodium iodide solution to the acidified flask and swirl gently.  Then add 1ml of Manganous chloride solution, swirl gently, and fill the solution to the neck of the flask with Milli-Q water. 

4.4.  The UV detector on the auto-titrator measures the transmission of ultra-violet light through the standard (as well as seawater sample and blank) as a Metrohm 665 Dosimat dispenses thiosulfate at increasingly slower rates.  The endpoint is reached when no further change in absorption is detected by the detector.  At this point all of the iodine has been consumed.
 

5. Blank determination

5.1.  Using the Metrohm 655 Dosimat, dispense 1 ml of the standard Potassium Iodate solution into a clean oxygen flask.  Add a stir bar and rinse down the sides with a small amount of Milli-Q water.  Add 1 ml of the 10N sulfuric acid solution and swirl to ensure the solution is well mixed before adding the pickling reagents.

5.2.  Add 1 ml sodium hydroxide-sodium iodide solution to the acicified flask and swirl gently.  Then add 1ml of Manganous chloride solution, swirl gently, and fill the solution to the neck of the flask with Milli-Q water.  The solution is then titrated to the end-point as described in section 4.3 above.

5.3.  A second 1 ml aliquot is added to the same solution which is then titrated to a second end-point.  The difference between the first and second titration is used as the reagent blank.
 

6. Sample analysis

6.1.  Samples are analyzed after all of the precipitate settles to the bottom of the flask, after the second shake.  The top of the flask is wiped with a kimwipe to remove moisture containing excess reagent around the stopper and then the stopper is carefully removed.

6.2.  1ml of 10N sulfuric acid is added to the sample and a stir bar is placed inside the flask.  The flask is then secured inside the clean water bath.  The tip of the thiosulfate dispenser is placed inside the sample flask and the automated titration can begin with the use of an auto-titrator program.

 

7. Certified Standard Comparison

7.1 Presented here are the results of a comparison of several certified standards with a CalCOFI prepared standard (weighed and diluted up to set normality in 1 liter volumetric)standard.   Three certified iodate solutions, (Table 1) were tested using the same 0.2N thiosulphate solution.   Iodate concentrations are back calculated from defined thiosulphate concentrations for comparison purposes.   It is noteworthy that the Acculute and Fisher solutions had to be diluted before use.  The same volumetric was used for all dilutions, the same Dosimat and piston was used for all titrations, extensive rinsing between uses.  Titration n=9 as dictated by the maximum number of samples that could be acquired from the 100ml portion for the OSIL standard.  CalCOFI values are a result of cruise and shore based titrations to demonstrate an integrated real use sampling.  Differences between all standards represent less than   +/-  0.5 percent of the signal. 


 


Average[KIO3]


mM


 


STDEV


mM


 


% Diff from CC


       mM


CalCOFI iodate 12/16/2012 used on 1301


 

 

 


10.015722


 


0.009609


 


        n.a.


 

 

 

 

 

 


OSIL iodate oxygen standard


 

 

 

 


9.972671


 


0.013310


 


99.57


 

 

 

 

 

 


Acculute iodate Lot 00702


 

 

 

 


10.049259


 


0.007684


 


100.33


 

 

 

 

 

 


Fisher iodate Lot 125009


 

 

 

 


10.044804


 


0.007650


 


100.29

 7.2 These results are consistent with previously published methods comparison for precision of oxygen measurements1 (WOCE Report 73/91) and previous replicate analysis to verify precision with auto-titration methods2.  Although the Ocean Data Facility (ODF) performed the 1991 comparisons for Scripps and was different than CalCOFI, the Winkler techniques used then and now are the same.  Presently, CalCOFI methods employ a UV end point auto-titrator made by ODF that produces a precision of 0.005-.01 ml/L.  The difference between high and low samples in replicate analysis equals ~0.5% with a standard deviation typically under 0.010 ml/L.  See references:

  1. oceaninformatics.ucsd.edu/calcofi/docs/CCConf06Wolgast.ppt
  2. odf.ucsd.edu/index.php?id=56

8. Calculation and Expression of Results

8.1.  The auto-titrator uses a UV detector that detects changes in voltage as thiosulfate is added to the sample.  The volume of thiosulfate added is recorded at an endpoint once there is no change in voltage.  The end point is determined by a least squares fit using a group of data points just prior to the end point, where the slope of the titration curve is steep, and a group of data points just after the endpoint, where the slope of the curve is close to zero.  The intersection of the two lines is taken as the endpoint.

8.2.  The calculation of dissolved oxygen follows the same principle oulined by Carpenter (1965).  Our results are expressed in mL/L.
 

                       (R-Rblk)VIO3*NIO3*E         DOreg

O2(ml/L)=      —————————  –  ———

                       (Rstd-Rblk)*(Vb-Vreg)         Vb

Where:
R= Sample titration (mL)
Rblk = Blank value (mL)
VIO3 = Volume of KIO3 standard (mL)
NIO3 – Normality of KIO3 standard
E = 5,598 mL O2/equivalent
Rstd = Volume used to titrate standard
Vb – Volume of sample bottle
Vreg = Volume of reagents
DOreg = Oxygen added in reagents
 

9. Equipment/Supplies

  • Volumetrically calibrated 100ml Glass Erlenmeyer flasks with paired ground glass stoppers
  • 3 – 1ml Brinkman reagent dispensers
  • Tygon tubing
  • Fisher Scientific UV Longwave Pencil Lamp, 365 nm and power supply, 115 VAC
  • 2 Metrohm Dosimat 665 Automatic Burets
  • 10ml Metrohm Dosimat Exchange unit
  • 1ml Metrohm Dosimat Exchange unit
  • Metrohm Dosimat Keypad
  • Spare 1ml and 10ml dispensor pistons for the Metrohm Dosimat Exchange units
  • Scripps/STS Auto-titrator Unit and Software
  • PC Computer
  • Waterproof sampling thermometer
  • Concentrated Sulfuric Acid, H2SO4, ACS Grade
  • Manganous Chloride Tetrahydrate, MnCl2•4H20, ACS Grade
  • Sodium Hydroxide, NaOH, ACS Grade
  • Sodium Thiosulfate, Na2S2O3•5H20, ACS Grade
  • Potassium Iodate, Dry high purity KIO3, Alfa Aesar
  • Granular Sodium Iodide, EMD Chemicals via VWR
  • Magnetic Stir Bars

 

10. References

  • Anderson, G. C., compiler, 1971. “Oxygen Analysis,” Marine Technician’s Handbook, SIO Ref. No. 71-8, Sea Grant Pub. No. 9.
  • Carpenter, J. H., 1965. The Chesapeake Bay Institute technique for the Winkler dissolved oxygen method.  Limnol. Oceanogr., 10: 141-143.
  • Culberson, C. H. 1991. Dissolved oxygen. WHP Operations and Methods — July 1991.
  • Parsons, T. R., Y. Maita, C. M. Lalli, 1984. A Manual of Chemical and Biological Methods for Seawater Analysis. Pergamon Press Ltd., 3-28.
  • oceaninformatics.ucsd.edu/calcofi/docs/CCConf06Wolgast.ppt