User`s manual
Table Of Contents
- SEASAVE
- Limited Liability Statement
- Table of Contents
- Section 1: Introduction
- Section 2: Installation & Use
- Section 3: Configure Inputs, Part I - Instrument Configuration (.con file)
- Introduction
- Instrument Configuration
- Viewing, Modifying, or Creating .con File
- SBE 9plus Configuration
- SBE 16 SEACAT C-T Recorder Configuration
- SBE 16plus SEACAT C-T Recorder Configuration
- SBE 19 SEACAT Profiler Configuration
- SBE 19plus SEACAT Profiler Configuration
- SBE 21 Thermosalinograph Configuration
- SBE 25 SEALOGGER Configuration
- SBE 45 MicroTSG Configuration
- SBE 49 FastCAT Configuration
- Section 4: Configure Inputs, Part II - Calibration Coefficients
- Accessing Calibration Coefficients Dialog Boxes
- Calibration Coefficients for Frequency Sensors
- Calibration Coefficients for A/D Count Sensors
- Calibration Coefficients for Voltage Sensors
- Pressure (Strain Gauge) Calibration Coefficients
- Altimeter Calibration Coefficients
- Fluorometer Calibration Coefficients
- Methane Sensor Calibration Coefficients
- OBS/Nephelometer Calibration Coefficients
- Oxidation Reduction Potential (ORP) Calibration Coefficients
- Oxygen Calibration Coefficients
- PAR/Irradiance Calibration Coefficients
- pH Calibration Coefficients
- Pressure/FGP (voltage output) Calibration Coefficients
- Suspended Sediment Calibration Coefficients
- Transmissometer Calibration Coefficients
- User Polynomial (for user-defined sensor) Calibration Coefficients
- Zaps Calibration Coefficients
- Section 5: Configure Inputs, Part III – Serial Ports, Water Sampler, TCP/IP Ports, Miscellaneous, & Pump Control
- Section 6: Configure Outputs
- Section 7: Display - Setting Up SEASAVE Displays
- Section 8: Real-Time Data & Real-Time Control - Real-Time Data Acquisition
- Section 9: Archived Data Displaying Archived Data
- Section 10: Processing Data
- Appendix I: Command Line Operation
- Appendix II: Configure (.con) File Format
- Appendix III: Software Problems
- Appendix IV: Derived Parameter Formulas
- Index

Appendix IV: Derived Parameter Formulas
103
potential temperature [IPTS-68] = θ (s, t, p, p
r
) [
°
C]
(Potential temperature is the temperature an element of seawater would have if
raised adiabatically with no change in salinity to reference pressure p
r
.
Sea-Bird software uses a reference pressure of 0 decibars).
potential temperature [ITS-90] = θ (s, t, p, p
r
) / 1.00024 [
°
C]
potential temperature anomaly =
potential temperature - a0 - a1 x salinity
or
potential temperature - a0 - a1 x Sigma-theta
(Note: Enter a0 and a1, and select salinity or sigma-theta on the Miscellaneous
tab in Configure Inputs.)
plume anomaly =
potential temperature (s, t, p, Reference Pressure) – Theta-B
– Theta-Z / Salinity-Z * (salinity – Salinity-B)
(Note: Enter Theta-B, Salinity-B, Theta-Z / Salinity-Z, and Reference Pressure
on the Miscellaneous tab in Configure Inputs.)
specific conductivity = (C * 10,000) / (1 + A * [T – 25]) [microS/cm]
(C = conductivity (S/m), T = temperature (° C),
A = thermal coefficient of conductivity for a natural salt solution
[0.019 - 0.020]; Sea-Bird software uses 0.020.)
Potential Temperature [IPTS-68] calculation:
C Computer Code -
// ATG (used in potential temperature calculation)
double ATG(double s, double t, double p) /* adiabatic temperature gradient deg C per decibar */
/* ref broyden,h. Deep-Sea Res.,20,401-408 */
// s = salinity, t = temperature deg C ITPS-68, p = pressure in decibars
{
double ds;
ds = s - 35.0;
return((((-2.1687e-16 * t + 1.8676e-14) * t - 4.6206e-13) * p + ((2.7759e-12 * t - 1.1351e-
10) * ds + ((-5.4481e-14 * t + 8.733e-12) * t - 6.7795e-10) * t + 1.8741e-8)) * p + (-4.2393e-8 * t
+ 1.8932e-6) * ds + ((6.6228e-10 * t - 6.836e-8) * t + 8.5258e-6) * t + 3.5803e-5);
}
// potential temperature
double PoTemp(double s, double t0, double p0, double pr) /* local potential temperature at pr */
/* using atg procedure for adiabadic lapse rate */
/* Fofonoff,N.,Deep-Sea Res.,24,489-491 */
// s = salinity, t0 = local temperature deg C ITPS-68, p0 = local pressure in decibars, pr =
reference pressure in decibars
{
double p, t, h, xk, q, temp;
p = p0;
t = t0;
h = pr - p;
xk = h * ATG(s,t,p);
t += 0.5 * xk;
q = xk;
p += 0.5 * h;
xk = h * ATG(s,t,p);
t += 0.29289322 * (xk-q);
q = 0.58578644 * xk + 0.121320344 * q;
xk = h * ATG(s,t,p);
t += 1.707106781 * (xk-q);
q = 3.414213562 * xk - 4.121320344 * q;
p += 0.5 * h;
xk = h * ATG(s,t,p);
temp = t + (xk - 2.0 * q) / 6.0;
return(temp);
}