LADCPintsh
author A.M. Thurnherr <athurnherr@yahoo.com>
Fri, 06 Mar 2015 15:54:23 -0500
changeset 33 dd5b67a41791
parent 30 8697ba5a88ec
parent 29 f72cd642972c
child 35 3d769eee8c4f
permissions -rwxr-xr-x
merged Explorer with DoMORE-1 changes
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
     1
#!/usr/bin/perl
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
     2
#======================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
     3
#                    L A D C P I N T S H 
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
     4
#                    doc: Thu Oct 14 21:22:50 2010
33
dd5b67a41791 merged Explorer with DoMORE-1 changes
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 30 29
diff changeset
     5
#                    dlm: Fri Mar  6 15:51:49 2015
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
     6
#                    (c) 2010 A.M. Thurnherr & E. Firing
33
dd5b67a41791 merged Explorer with DoMORE-1 changes
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 30 29
diff changeset
     7
#                    uE-Info: 8 0 NIL 0 0 72 0 2 4 NIL ofnI
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
     8
#======================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
     9
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    10
$antsSummary = 'integrate LADCP shear';
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    11
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    12
# NOTES:
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    13
#	- the core of this code is a simplified version of avg_sh.m and
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    14
#	  int_sh.m written by Eric Firing
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    15
#	- comments beginning with ## are taken from Eric's code
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    16
#	- cubic velocity interpolation across PPI gap from Eric's code has
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    17
#	  not been implemented (yet?)
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    18
#	- low-pass-filtered shear code has not yet been implemented
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    19
#	- currently, shear gaps are assumed to have vanishing shear;
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
    20
#	  better solutions are possible
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
    21
#	- elapsed time is simply copied from shear elapsed time (i.e.
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
    22
#	  it is not interpolated onto the new depth grid)
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    23
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    24
# WEIRDNESSES IN Eric's CODE:
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    25
#	- in Eric's [avg_sh.m] the calculation of output shear stddev incorrectly assumes that the 4th column
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    26
#	  in the shear profile is stddev, rather than variance. However, as far as I can tell, this output
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    27
#	  is not used anywhere in Eric's code
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    28
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    29
# HISTORY:
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    30
#	Oct 14, 2010: - created
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    31
#	Oct 20, 2010: - first working version
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    32
#	Oct 23, 2010: - added support for -b)
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    33
#	Oct 24, 2010: - fix spuriously small variances that can occur for BT velocities based on very small
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    34
#					samples (i.e. primarily when chosing a small -r)
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
    35
#	Dec  9, 2010: - allowed for empty BT file
2
16726a31a399 pre IWISE
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 1
diff changeset
    36
#	Feb 16, 2011: - BUG: gaps in shear data were not handled correctly in baroclinic solution
3
711dd29cb6dd post 2011_IWISE
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 2
diff changeset
    37
#	Jul  7, 2011: - added -m
5
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
    38
#	Jul 19, 2011: - added shear sigma output for shear inversion
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
    39
#				  - BUG: dc/uc v component was not correctly referenced
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    40
#	Jul 24, 2011: - BUG: BT constraint was erroneously assumed to be available for dc,uc only, if it
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    41
#						 was available for <dc,uc> combo profile
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    42
#	Jul 25, 2011: - BUG: nan in either of ul/dl u_z.sig caused combined u_z.sig to be nan, too
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    43
#	Jul 27, 2011: - removed code related to smoothed shear
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    44
#				  - replaced -r by -n
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    45
#				  - removed shear sigma output
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    46
#				  - replaced ndata by nsamp
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    47
#				  - removed -w (Eric's way of dealing with dc/uc temporal variability)
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
    48
#	Feb 19, 2012: - added processing of elapsed time
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
    49
#				  - adapted to new shear file layout (nsamp instead of nshear)
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
    50
#				  - BUG: uplooker data was not used for downcasts and and only partially for combo data
11
d0af7f7aa23b V1.0beta2
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 7
diff changeset
    51
#   May 16, 2012: - adapted to ANTSlib V5.0
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
    52
#	May 25, 2012: - added code to read LDEO_IX bottom-track data
16
ff157f4445ce V1.0 beta7
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 15
diff changeset
    53
#	Jun 14, 2012: - noticed that -b now works also with LDEO SADCP files :-); renamed -b option to -r
20
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
    54
#	Jun  5, 2013: - BUG: code bombed when either UC or DC was missing
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
    55
#	Jun 28, 2013: - adapated to new :: convention
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
    56
#				  - make sure LADCP DUL metadata are dealt with correctly
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
    57
#	Jul 12, 2013: - clarified -u usage with better messages
25
91bd907db97f before debugging weird nsamp problem
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 20
diff changeset
    58
#	Mar 20, 2014: - fiddled while debugging [LADCPproc]
29
f72cd642972c whoosher
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 26
diff changeset
    59
#	Jun  7, 2014: - improved error messages
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    60
11
d0af7f7aa23b V1.0beta2
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 7
diff changeset
    61
($ANTS) = (`which ANTSlib` =~ m{^(.*)/[^/]*$});
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    62
require "$ANTS/ants.pl";
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    63
require "$ANTS/libstats.pl";
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    64
16
ff157f4445ce V1.0 beta7
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 15
diff changeset
    65
&antsUsage('dm:n:r:s:w:u:',0,
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    66
	'[-d)ebug]',
16
ff157f4445ce V1.0 beta7
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 15
diff changeset
    67
	'[-r)eference with <BT or SADCP file> [-m)in <samp[10]>]]',
20
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
    68
	'[secondary -u)plooker <shear file>]',
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    69
	'[min -n) <shear samp[10]>]',
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    70
	'[output -s)hear-pro <file>]',
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    71
	'[LADCP shear file]');
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    72
16
ff157f4445ce V1.0 beta7
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 15
diff changeset
    73
croak("$0: -m meaningless without -r\n")
ff157f4445ce V1.0 beta7
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 15
diff changeset
    74
	if defined($opt_m) && !defined($opt_r);
3
711dd29cb6dd post 2011_IWISE
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 2
diff changeset
    75
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
    76
&antsCardOpt(\$opt_n,10);				# minimum number of samples for shear
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
    77
$minBTsamp = &antsCardOpt($opt_m,10);	# minimum number of samples for BT data
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
    78
16
ff157f4445ce V1.0 beta7
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 15
diff changeset
    79
&antsFileOpt($opt_r);		# reference velocity file
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
    80
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
    81
&antsFileOpt($opt_u);		# UL shear file
20
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
    82
if (defined($opt_u)) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
    83
	open(ULF,$opt_u) || croak("$opt_u: $!\n");
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
    84
	%UL_P = &antsFileParams(ULF);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
    85
}
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    86
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    87
#======================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    88
# Step 1: Read and Average Shear Data
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    89
#	- depth bins with less than $opt_n values are blanked out
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    90
#======================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
    91
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    92
sub wavg_sig(@)
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    93
{
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    94
	my($sumSq) = my($n) = 0;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    95
	for (my($i)=0; $i<$#_; $i+=2) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    96
		next unless numberp($_[$i+1]);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    97
		$sumSq += $_[$i] * $_[$i+1]**2;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    98
		$n += $_[$i];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
    99
	}
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   100
	return ($n>0) ? sqrt($sumSq/$n) : nan;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   101
}
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   102
	
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   103
20
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   104
#--------------------
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   105
# Handle Metadata
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   106
#--------------------
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   107
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   108
if (%UL_P) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   109
	croak("$0: inconsistent vertical resolution\n")
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   110
		unless ($P{LADCPproc::vertical_resolution} == $UL_P{LADCPproc::vertical_resolution});
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   111
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   112
	unless ($P{LADCPproc::bin_length} == $UL_P{LADCPproc::bin_length}) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   113
		&antsInfo("Warnining: different DL/UL bin lengths; derived spectra cannot be corrected");
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   114
		&antsAddParams('LADCPproc::bin_length','',
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   115
					   'LADCPproc::DL_bin_length',$P{LADCPproc::bin_length},
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   116
					   'LADCPproc::UL_bin_length',$UL_P{LADCPproc::bin_length});
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   117
	}
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   118
}
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   119
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   120
$depthF = fnrNoErr('depth');									# layout of [LADCPproc] output
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   121
unless (defined($depthF)) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   122
	if (defined($opt_u)) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   123
		croak("No 'depth' field in primary shear file (extraneous -u?)\n");
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   124
	} else {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   125
		croak("No 'depth' field in primary shear file\n");
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   126
	}
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   127
}
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   128
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   129
$dc_nshF = fnrNoErr('dc_nshear');
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   130
$dc_nshF = fnr('dc_nsamp') unless defined($dc_nshF);
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   131
$dc_uzF  = fnr('dc_u_z');
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   132
$dc_uzsF = fnrNoErr('dc_u_z.sig');
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   133
$dc_uzsF = fnr('dc_u_z_sig') unless defined($dc_uzsF);
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   134
$dc_vzF  = fnr('dc_v_z');
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   135
$dc_vzsF = fnrNoErr('dc_v_z.sig');
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   136
$dc_vzsF = fnr('dc_v_z_sig') unless defined($dc_vzsF);
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   137
$dc_wzF  = fnr('dc_w_z');
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   138
$dc_wzsF = fnrNoErr('dc_w_z.sig');
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   139
$dc_wzsF = fnr('dc_w_z_sig') unless defined($dc_wzsF);
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   140
$dc_elapsedF = fnr('dc_elapsed');
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   141
$uc_nshF = fnrNoErr('uc_nshear');
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   142
$uc_nshF = fnr('uc_nsamp') unless defined($uc_nshF);
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   143
$uc_uzF  = fnr('uc_u_z');
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   144
$uc_uzsF = fnrNoErr('uc_u_z.sig');
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   145
$uc_uzsF = fnr('uc_u_z_sig') unless defined($uc_uzsF);
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   146
$uc_vzF  = fnr('uc_v_z');
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   147
$uc_vzsF = fnrNoErr('uc_v_z.sig');
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   148
$uc_vzsF = fnr('uc_v_z_sig') unless defined($uc_vzsF);
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   149
$uc_wzF  = fnr('uc_w_z');
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   150
$uc_wzsF = fnrNoErr('uc_w_z.sig');
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   151
$uc_wzsF = fnr('uc_w_z_sig') unless defined($uc_wzsF);
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   152
$uc_elapsedF = fnr('uc_elapsed');
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   153
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   154
my(@gaps); my($curGap) = 0;
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   155
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   156
for (my($r)=0; &antsIn(); $r++) {
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   157
	my(@UL_);
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   158
	if (defined($opt_u)) {
5
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   159
		@UL_ = &antsFileIn(ULF);							# read UL shear data
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   160
		undef($opt_u) unless (@UL_);						# cheap trick
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   161
	}
20
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   162
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   163
	$depth[$r] = $ants_[0][$depthF];						## depth grid values
18
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 16
diff changeset
   164
	croak("$opt_u: inconsistent depth record $r (DL: $depth[$r]; UL: $UL_[$depthF])\n")
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   165
		if defined($opt_u) && ($UL_[$depthF] != $depth[$r]);
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   166
		
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   167
	$dc_nsamp = $ants_[0][$dc_nshF];						# number of shear samples
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   168
	$uc_nsamp = $ants_[0][$uc_nshF];
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   169
	if (defined($opt_u)) {
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   170
		$dl_nsamp = $dc_nsamp + $uc_nsamp;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   171
		$dc_nsamp += $UL_[$dc_nshF];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   172
		$uc_nsamp += $UL_[$uc_nshF];
25
91bd907db97f before debugging weird nsamp problem
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 20
diff changeset
   173
		$ul_nsamp = $dc_nsamp + $uc_nsamp;
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   174
	}
25
91bd907db97f before debugging weird nsamp problem
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 20
diff changeset
   175
	
91bd907db97f before debugging weird nsamp problem
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 20
diff changeset
   176
	$dc_nsamp[$r] = $dc_nsamp;								# save for each record
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   177
	$uc_nsamp[$r] = $uc_nsamp;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   178
	$nsamp[$r] = $dc_nsamp + $uc_nsamp;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   179
	if (defined($opt_u)) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   180
		$ul_nsamp[$r] = $ul_nsamp;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   181
		$dl_nsamp[$r] = $dl_nsamp;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   182
	}
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   183
5
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   184
	if (defined($opt_u)) {									# dual-head instrument
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   185
		if ($dc_nsamp > 0) {								# downcast shear
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   186
			my($DLf) = $ants_[0][$dc_nshF] / $dc_nsamp;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   187
			my($ULf) =      $UL_[$dc_nshF] / $dc_nsamp;
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   188
			if ($DLf>0 && $ULf>0) {
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   189
				$dc_uz[$r] = $DLf*$ants_[0][$dc_uzF] + $ULf*$UL_[$dc_uzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   190
				$dc_vz[$r] = $DLf*$ants_[0][$dc_vzF] + $ULf*$UL_[$dc_vzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   191
	            $dc_wz[$r] = $DLf*$ants_[0][$dc_wzF] + $ULf*$UL_[$dc_wzF];
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   192
	            $dc_elapsed[$r] = $DLf*$ants_[0][$dc_elapsedF] + $ULf*$UL_[$dc_elapsedF];
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   193
	        } elsif ($DLf > 0) {
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   194
				$dc_uz[$r] = $ants_[0][$dc_uzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   195
				$dc_vz[$r] = $ants_[0][$dc_vzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   196
				$dc_wz[$r] = $ants_[0][$dc_wzF];
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   197
				$dc_elapsed[$r] = $ants_[0][$dc_elapsedF];
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   198
	        } else {
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   199
				$dc_uz[$r] = $UL_[$dc_uzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   200
				$dc_vz[$r] = $UL_[$dc_vzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   201
				$dc_wz[$r] = $UL_[$dc_wzF];
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   202
				$dc_elapsed[$r] = $UL_[$dc_elapsedF];
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   203
	        }
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   204
		} else {
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   205
			$dc_uz[$r] = $dc_vz[$r] = $dc_wz[$r] = $dc_elapsed[$r] = nan;
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   206
	    }
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   207
		if ($uc_nsamp > 0) {								# upcast shear
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   208
			my($DLf) = $ants_[0][$uc_nshF] / $uc_nsamp;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   209
			my($ULf) =      $UL_[$uc_nshF] / $uc_nsamp;
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   210
			if ($DLf>0 && $Ulf>0) {
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   211
				$uc_uz[$r] = $DLf*$ants_[0][$uc_uzF] + $ULf*$UL_[$uc_uzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   212
				$uc_vz[$r] = $DLf*$ants_[0][$uc_vzF] + $ULf*$UL_[$uc_vzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   213
				$uc_wz[$r] = $DLf*$ants_[0][$uc_wzF] + $ULf*$UL_[$uc_wzF];
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   214
				$uc_elapsed[$r] = $DLf*$ants_[0][$uc_elapsedF] + $ULf*$UL_[$uc_elapsedF];
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   215
	        } elsif ($DLf > 0) {
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   216
				$uc_uz[$r] = $ants_[0][$uc_uzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   217
				$uc_vz[$r] = $ants_[0][$uc_vzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   218
				$uc_wz[$r] = $ants_[0][$uc_wzF];
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   219
				$uc_elapsed[$r] = $ants_[0][$uc_elapsedF];
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   220
	        } else {
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   221
				$uc_uz[$r] = $UL_[$uc_uzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   222
				$uc_vz[$r] = $UL_[$uc_vzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   223
				$uc_wz[$r] = $UL_[$uc_wzF];
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   224
				$uc_elapsed[$r] = $UL_[$uc_elapsedF];
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   225
	        }
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   226
		} else {
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   227
			$uc_uz[$r] = $uc_vz[$r] = $uc_wz[$r] = $uc_elapsed[$r] = nan;
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   228
	    }
5
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   229
	} else {	# downlooker only
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   230
		if ($dc_nsamp > 0) {							# downcast shear
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   231
			$dc_uz[$r] = $ants_[0][$dc_uzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   232
			$dc_vz[$r] = $ants_[0][$dc_vzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   233
			$dc_wz[$r] = $ants_[0][$dc_wzF];
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   234
			$dc_elapsed[$r] = $ants_[0][$dc_elapsedF];
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   235
		} else {
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   236
			$dc_uz[$r] = $dc_vz[$r] = $dc_wz[$r] = $dc_elapsed[$r] = nan;
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   237
	    }
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   238
		if ($uc_nsamp > 0) {							# upcast shear
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   239
			$uc_uz[$r] = $ants_[0][$uc_uzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   240
			$uc_vz[$r] = $ants_[0][$uc_vzF];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   241
			$uc_wz[$r] = $ants_[0][$uc_wzF];
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   242
			$uc_elapsed[$r] = $ants_[0][$uc_elapsedF];
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   243
		} else {
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   244
			$uc_uz[$r] = $uc_vz[$r] = $uc_wz[$r] = $uc_elapsed[$r] = nan;
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   245
	    }
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   246
    }
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   247
    
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   248
	if ($nsamp[$r] > 0) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   249
		my($dcf) = $dc_nsamp / $nsamp[$r];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   250
		my($ucf) = $uc_nsamp / $nsamp[$r];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   251
		if ($dcf>0 && $ucf>0) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   252
			$uz[$r] = $dcf*$dc_uz[$r] + $ucf*$uc_uz[$r];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   253
			$vz[$r] = $dcf*$dc_vz[$r] + $ucf*$uc_vz[$r];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   254
            $wz[$r] = $dcf*$dc_wz[$r] + $ucf*$uc_wz[$r];
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   255
            $elapsed[$r] = $dcf*$dc_elapsed[$r] + $ucf*$uc_elapsed[$r];
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   256
        } elsif ($dcf > 0) {
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   257
			$uz[$r] = $dc_uz[$r];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   258
			$vz[$r] = $dc_vz[$r];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   259
			$wz[$r] = $dc_wz[$r];
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   260
			$elapsed[$r] = $dc_elapsed[$r];
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   261
        } else {
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   262
			$uz[$r] = $uc_uz[$r];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   263
			$vz[$r] = $uc_vz[$r];
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   264
			$wz[$r] = $uc_wz[$r];
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   265
			$elapsed[$r] = $uc_elapsed[$r];
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   266
        }
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   267
	} else {
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   268
		$uz[$r] = $vz[$r] = $wz[$r] = $elapsed[$r] = nan;
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   269
	}
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   270
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   271
	if (numberp($uz[$r]) && $curGap>0) {						# end of gap
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   272
		push(@gaps,$curGap)	unless ($r == $curGap);				# do not report "gap" at beginning of profile
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   273
#		print(STDERR "$curGap-gap at $depth[$r]m\n");
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   274
		$curGap = 0;
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   275
    } elsif (!numberp($uz[$r])) {								# currently in gap
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   276
#    	print(STDERR "in gap at $depth[$r]m (nsamp = $nsamp[$r], $dc_nsamp,$uc_nsamp)\n");
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   277
		$curGap++;
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   278
    }
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   279
	
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   280
	if ($nsamp[$r] > 0) {
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   281
		if (defined($opt_u)) {
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   282
			$uzsig[$r] = wavg_sig($ants_[0][$dc_nshF],$ants_[0][$dc_uzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   283
							           $UL_[$dc_nshF],     $UL_[$dc_uzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   284
							      $ants_[0][$uc_nshF],$ants_[0][$uc_uzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   285
							           $UL_[$uc_nshF],     $UL_[$uc_uzsF]);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   286
			$vzsig[$r] = wavg_sig($ants_[0][$dc_nshF],$ants_[0][$dc_vzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   287
									   $UL_[$dc_nshF],     $UL_[$dc_vzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   288
							      $ants_[0][$uc_nshF],$ants_[0][$uc_vzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   289
									   $UL_[$uc_nshF],     $UL_[$uc_vzsF]);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   290
			$wzsig[$r] = wavg_sig($ants_[0][$dc_nshF],$ants_[0][$dc_wzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   291
									   $UL_[$dc_nshF],     $UL_[$dc_wzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   292
							      $ants_[0][$uc_nshF],$ants_[0][$uc_wzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   293
	                                   $UL_[$uc_nshF],     $UL_[$uc_wzsF]);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   294
		} else { # DL only
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   295
			$uzsig[$r] = wavg_sig($ants_[0][$dc_nshF],$ants_[0][$dc_uzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   296
							      $ants_[0][$uc_nshF],$ants_[0][$uc_uzsF]);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   297
			$vzsig[$r] = wavg_sig($ants_[0][$dc_nshF],$ants_[0][$dc_vzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   298
							      $ants_[0][$uc_nshF],$ants_[0][$uc_vzsF]);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   299
			$wzsig[$r] = wavg_sig($ants_[0][$dc_nshF],$ants_[0][$dc_wzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   300
	                              $ants_[0][$uc_nshF],$ants_[0][$uc_wzsF]);
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   301
	    }
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   302
	} else {
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   303
		$uzsig[$r] = $vzsig[$r] = $wzsig[$r] = nan;
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   304
	}
5
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   305
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   306
	if ($dc_nsamp > 0) {									# same calc for downcast only
5
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   307
		if (defined($opt_u)) {
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   308
			$dc_uzsig[$r] = wavg_sig($ants_[0][$dc_nshF],$ants_[0][$dc_uzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   309
							              $UL_[$dc_nshF],     $UL_[$dc_uzsF]);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   310
			$dc_vzsig[$r] = wavg_sig($ants_[0][$dc_nshF],$ants_[0][$dc_vzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   311
							              $UL_[$dc_nshF],     $UL_[$dc_vzsF]);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   312
			$dc_wzsig[$r] = wavg_sig($ants_[0][$dc_nshF],$ants_[0][$dc_wzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   313
							              $UL_[$dc_nshF],     $UL_[$dc_wzsF]);
5
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   314
		} else {
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   315
			$dc_uzsig[$r] = $ants_[0][$dc_uzsF];
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   316
			$dc_vzsig[$r] = $ants_[0][$dc_vzsF];
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   317
			$dc_wzsig[$r] = $ants_[0][$dc_wzsF];
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   318
	    }
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   319
	} else {
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   320
		$uzsig[$r] = $vzsig[$r] = $wzsig[$r] = nan;
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   321
	}
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   322
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   323
	if ($uc_nsamp > 0) {									# same calc for upcast only
5
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   324
		if (defined($opt_u)) {
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   325
			$uc_uzsig[$r] = wavg_sig($ants_[0][$uc_nshF],$ants_[0][$uc_uzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   326
							              $UL_[$uc_nshF],     $UL_[$uc_uzsF]);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   327
			$uc_vzsig[$r] = wavg_sig($ants_[0][$uc_nshF],$ants_[0][$uc_vzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   328
							              $UL_[$uc_nshF],     $UL_[$uc_vzsF]);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   329
			$uc_wzsig[$r] = wavg_sig($ants_[0][$uc_nshF],$ants_[0][$uc_wzsF],
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   330
							              $UL_[$uc_nshF],     $UL_[$uc_wzsF]);
5
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   331
		} else {
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   332
			$uc_uzsig[$r] = $ants_[0][$uc_uzsF];
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   333
			$uc_vzsig[$r] = $ants_[0][$uc_vzsF];
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   334
			$uc_wzsig[$r] = $ants_[0][$uc_wzsF];
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   335
	    }
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   336
	} else {
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   337
		$uzsig[$r] = $vzsig[$r] = $wzsig[$r] = nan;
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   338
	}
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   339
}
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   340
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   341
if (@gaps) {
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   342
	&antsAddParams('shear_gaps',"@gaps");
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   343
	print(STDERR "shear gaps: @gaps\n");
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   344
} else {
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   345
	&antsAddParams('shear_gaps',0);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   346
}
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   347
	
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   348
#===============================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   349
# Step 2: Low-Pass filter high-quality shear data; not yet implemented
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   350
#===============================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   351
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   352
#======================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   353
# Step 3: Integrate Shear
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   354
#	- z(vel) = z(sh) + DZ/2
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   355
#======================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   356
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   357
my($DZ) = $depth[1] - $depth[0];
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   358
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   359
for (my($r)=my($u)=my($v)=my($w)=my($dc_u)=my($dc_v)=my($dc_w)=my($uc_u)=my($uc_v)=my($uc_w)=0;
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   360
	 $r<@depth; $r++) {
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   361
	if ($nsamp[$r] >= $opt_n) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   362
		$u = $u[$r] = $u + $DZ*$uz[$r];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   363
		$v = $v[$r] = $v + $DZ*$vz[$r];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   364
		$w = $w[$r] = $w + $DZ*$wz[$r];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   365
	}
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   366
	if ($dc_nsamp[$r] >= $opt_n) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   367
		$dc_u = $dc_u[$r] = $dc_u + $DZ*$dc_uz[$r];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   368
		$dc_v = $dc_v[$r] = $dc_v + $DZ*$dc_vz[$r];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   369
		$dc_w = $dc_w[$r] = $dc_w + $DZ*$dc_wz[$r];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   370
	}
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   371
	if ($uc_nsamp[$r] >= $opt_n) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   372
		$uc_u = $uc_u[$r] = $uc_u + $DZ*$uc_uz[$r];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   373
		$uc_v = $uc_v[$r] = $uc_v + $DZ*$uc_vz[$r];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   374
		$uc_w = $uc_w[$r] = $uc_w + $DZ*$uc_wz[$r];
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   375
	}
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   376
}
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   377
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   378
#======================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   379
# Step 4: Reference Velocities
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   380
#======================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   381
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   382
my($refU,$refV,$refW,$dc_refU,$dc_refV,$dc_refW,$uc_refU,$uc_refV,$uc_refW);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   383
25
91bd907db97f before debugging weird nsamp problem
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 20
diff changeset
   384
if (defined($opt_r)) {											# reference using velocity profile
16
ff157f4445ce V1.0 beta7
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 15
diff changeset
   385
	print(STDERR "Loading reference-velocity data from $opt_r...\n")
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   386
		if ($opt_d);
16
ff157f4445ce V1.0 beta7
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 15
diff changeset
   387
	open(BTF,$opt_r) || croak("$opt_r: $!\n");
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   388
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   389
	my(@BTL) = &antsFileLayout(BTF);
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   390
	if (@BTL) {													# valid ANTS file
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   391
		my($BTdF,$BTndF,$BTuF,$BTvF,$BTwF,$BTusF,$BTvsF,$BTwsF);
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   392
		for (my($f)=0; $f<@BTL; $f++) {
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   393
			$BTdF = $f if ($BTL[$f] eq 'depth');
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   394
			$BTuF = $f if ($BTL[$f] eq 'u');
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   395
			$BTvF = $f if ($BTL[$f] eq 'v');
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   396
			$BTwF = $f if ($BTL[$f] eq 'w');
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   397
			$BTusF = $f if ($BTL[$f] eq 'u.sig');
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   398
			$BTvsF = $f if ($BTL[$f] eq 'v.sig');
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   399
			$BTwsF = $f if ($BTL[$f] eq 'w.sig');
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   400
			$BTndF = $f if ($BTL[$f] eq 'nsamp');
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   401
			$BTerrF= $f if ($BTL[$f] eq 'err');
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   402
		}
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   403
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   404
		if (defined($BTdF) && defined($BTuF) &&					# from LADCPproc
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   405
		    defined($BTvF) && defined($BTwF) &&
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   406
		    defined($BTusF) && defined($BTvsF) &&
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   407
			defined($BTwsF) && defined($BTndF)) {	
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   408
			while (my(@BTr) = &antsFileIn(BTF)) {
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   409
				my($gi) = int($BTr[$BTdF] / $DZ);
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   410
				next unless ($BTr[$BTndF] >= $minBTsamp);
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   411
				$BT_nsamp[$gi] = $BTr[$BTndF];
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   412
				$BT_u[$gi] = $BTr[$BTuF];
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   413
				$BT_v[$gi] = $BTr[$BTvF];
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   414
				$BT_w[$gi] = $BTr[$BTwF];
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   415
				$BT_u_var[$gi] = $BTr[$BTusF]**2;
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   416
				$BT_v_var[$gi] = $BTr[$BTvsF]**2;
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   417
				$BT_w_var[$gi] = $BTr[$BTwsF]**2;
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   418
			}
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   419
			&fixLowSampStat(\@BT_u_var,@BT_nsamp);				# remove spurious small variances
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   420
			&fixLowSampStat(\@BT_v_var,@BT_nsamp);
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   421
	        &fixLowSampStat(\@BT_w_var,@BT_nsamp);
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   422
        } elsif (defined($BTdF) && defined($BTuF) &&			# LDEO_IX ANTS format
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   423
				 defined($BTvF) && defined($BTerrF)) {
29
f72cd642972c whoosher
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 26
diff changeset
   424
			croak("$0: -m not supported for LDEO_IX output\n")
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   425
				if defined($opt_m);
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   426
			while (my(@BTr) = &antsFileIn(BTF)) {
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   427
				my($gi) = int($BTr[$BTdF] / $DZ);
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   428
				$BT_u[$gi] = $BTr[$BTuF];
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   429
				$BT_v[$gi] = $BTr[$BTvF];
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   430
				$BT_u_var[$gi] = $BTr[$BTerrF]**2;
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   431
				$BT_v_var[$gi] = $BTr[$BTerrF]**2;
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   432
#				print(STDERR "$gi $BT_u[$gi] $BT_v[$gi] $BT_u_var[$gi] $BT_v_var[$gi]\n");
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   433
			}
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   434
        } else {
16
ff157f4445ce V1.0 beta7
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 15
diff changeset
   435
			croak("$opt_r: not a valid reference-velocity file (ANTS format)\n");
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   436
		}
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   437
	} else {													# non-ANTS file (LDEO_IX assumed)
29
f72cd642972c whoosher
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 26
diff changeset
   438
		croak("$0: -m not supported for LDEO_IX output\n")
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   439
			if defined($opt_m);
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   440
		while (<BTF>) {
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   441
			last if /^Columns\s+=\s+z:u:v:err/;
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   442
		}
16
ff157f4445ce V1.0 beta7
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 15
diff changeset
   443
		croak("$opt_r: not a valid reference-velocity file (non-ANTS format)\n")
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   444
			unless /^Columns\s+=\s+z:u:v:err/;
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   445
		while (<BTF>) {
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   446
			my($depth,$u,$v,$err) = split;
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   447
			croak("$0: cannot handle non-numeric BT data (implementation restriction)\n")
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   448
				unless numberp($depth) && numberp($u) && numberp($v) && numberp($err);
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   449
			my($gi) = int($depth / $DZ);
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   450
			$BT_u[$gi] = $u;
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   451
			$BT_v[$gi] = $v;
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   452
			$BT_u_var[$gi] = $err**2;
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   453
			$BT_v_var[$gi] = $err**2;
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   454
#			print(STDERR "$gi $BT_u[$gi] $BT_v[$gi] $BT_u_var[$gi] $BT_v_var[$gi]\n");
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   455
		}
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   456
    }
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   457
    close(BTF);
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   458
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   459
	my($sumU,$sumV,$sumW,$dc_sumU,$dc_sumV,$dc_sumW,		# average integrated-shear velocities
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   460
	   $uc_sumU,$uc_sumV,$uc_sumW);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   461
	my($nSumVel,$dc_nSumVel,$uc_nSumVel);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   462
	my($wSumBTu,$wSumBTv,$wSumBTw);							# weighted sums of BT-ref'd velocities
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   463
	my($dc_wSumBTu,$dc_wSumBTv,$dc_wSumBTw);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   464
	my($uc_wSumBTu,$uc_wSumBTv,$uc_wSumBTw);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   465
	my($sumVarBTu,$sumVarBTv,$sumVarBTw);					# sum of variances of BT-ref'd vels
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   466
	my($dc_sumVarBTu,$dc_sumVarBTv,$dc_sumVarBTw);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   467
	my($uc_sumVarBTu,$uc_sumVarBTv,$uc_sumVarBTw);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   468
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   469
	for (my($r)=0; $r<@depth; $r++) {
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   470
		if (numberp($BT_u[$r]) && numberp($u[$r])) {
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   471
			$nSumVel++;
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   472
			$sumU += $u[$r]; $sumV += $v[$r]; $sumW += $w[$r];
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   473
			$wSumBTu += $BT_u[$r] / $BT_u_var[$r]; $sumVarBTu += 1/$BT_u_var[$r];
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   474
			$wSumBTv += $BT_v[$r] / $BT_v_var[$r]; $sumVarBTv += 1/$BT_v_var[$r];
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   475
			if (@BT_w) {
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   476
				$wSumBTw += $BT_w[$r] / $BT_w_var[$r]; $sumVarBTw += 1/$BT_w_var[$r];
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   477
			}
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   478
		}
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   479
		if (numberp($BT_u[$r]) && numberp($dc_u[$r])) {
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   480
			$dc_nSumVel++;
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   481
			$dc_sumU += $dc_u[$r]; $dc_sumV += $dc_v[$r]; $dc_sumW += $dc_w[$r];
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   482
			$dc_wSumBTu += $BT_u[$r] / $BT_u_var[$r]; $dc_sumVarBTu += 1/$BT_u_var[$r];
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   483
			$dc_wSumBTv += $BT_v[$r] / $BT_v_var[$r]; $dc_sumVarBTv += 1/$BT_v_var[$r];
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   484
			if (@BT_w) {
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   485
				$dc_wSumBTw += $BT_w[$r] / $BT_w_var[$r]; $dc_sumVarBTw += 1/$BT_w_var[$r];
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   486
			}
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   487
		}
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   488
		if (numberp($BT_u[$r]) && numberp($uc_u[$r])) {
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   489
			$uc_nSumVel++;
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   490
			$uc_sumU += $uc_u[$r]; $uc_sumV += $uc_v[$r]; $uc_sumW += $uc_w[$r];
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   491
			$uc_wSumBTu += $BT_u[$r] / $BT_u_var[$r]; $uc_sumVarBTu += 1/$BT_u_var[$r];
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   492
			$uc_wSumBTv += $BT_v[$r] / $BT_v_var[$r]; $uc_sumVarBTv += 1/$BT_v_var[$r];
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   493
			if (@BT_w) {
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   494
				$uc_wSumBTw += $BT_w[$r] / $BT_w_var[$r]; $uc_sumVarBTw += 1/$BT_w_var[$r];
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   495
			}
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   496
		}
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   497
	}
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   498
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   499
	if ($nSumVel > 0) {
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   500
		$refU = $sumU/$nSumVel - $wSumBTu/$sumVarBTu;
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   501
		$refV = $sumV/$nSumVel - $wSumBTv/$sumVarBTv;
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   502
		$refW = $sumW/$nSumVel - $wSumBTw/$sumVarBTw if (@BT_w);
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   503
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   504
		if ($dc_nSumVel > 0) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   505
			$dc_refU = $dc_sumU/$dc_nSumVel - $dc_wSumBTu/$dc_sumVarBTu;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   506
			$dc_refV = $dc_sumV/$dc_nSumVel - $dc_wSumBTv/$dc_sumVarBTv;
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   507
			$dc_refW = $dc_sumW/$dc_nSumVel - $dc_wSumBTw/$dc_sumVarBTw if (@BT_w);
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   508
		} else {
25
91bd907db97f before debugging weird nsamp problem
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 20
diff changeset
   509
			&antsInfo("$opt_r: insufficient reference-velocity data to constrain DC profile --- baroclinic profile only");
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   510
		}
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   511
	    
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   512
		if ($uc_nSumVel > 0) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   513
			$uc_refU = $uc_sumU/$uc_nSumVel - $uc_wSumBTu/$uc_sumVarBTu;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   514
			$uc_refV = $uc_sumV/$uc_nSumVel - $uc_wSumBTv/$uc_sumVarBTv;
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   515
		    $uc_refW = $uc_sumW/$uc_nSumVel - $uc_wSumBTw/$uc_sumVarBTw if (@BT_w);
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   516
		} else {
25
91bd907db97f before debugging weird nsamp problem
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 20
diff changeset
   517
			&antsInfo("$opt_r: insufficient reference-velocity data to constrain UC profile --- baroclinic profile only");
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   518
		}
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   519
	} else {
16
ff157f4445ce V1.0 beta7
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 15
diff changeset
   520
		&antsInfo("$opt_r: no valid reference-velocity data --- baroclinic profiles only");
1
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   521
	}
54222c82435f after DIMES UK2
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 0
diff changeset
   522
}
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   523
5
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   524
unless (defined($refU)) {									# no reference velocity => use zero mean
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   525
	my($sumU,$sumV,$sumW,$nSumVel);
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   526
	for (my($r)=0; $r<@depth; $r++) {
2
16726a31a399 pre IWISE
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 1
diff changeset
   527
		if (numberp($u[$r])) {
16726a31a399 pre IWISE
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 1
diff changeset
   528
			$nSumVel++;
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   529
			$sumU += $u[$r]; $sumV += $v[$r]; $sumW += $w[$r] if (@BT_w);
2
16726a31a399 pre IWISE
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 1
diff changeset
   530
        }
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   531
    }
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   532
	$refU = $sumU / $nSumVel; $refV = $sumV / $nSumVel; $refW = $sumW / $nSumVel if (@BT_w);
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   533
}
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   534
unless (defined($dc_refU)) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   535
	my($dc_sumU,$dc_sumV,$dc_sumW,$dc_nSumVel);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   536
	for (my($r)=0; $r<@depth; $r++) {
2
16726a31a399 pre IWISE
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 1
diff changeset
   537
        if (numberp($dc_u[$r])) {
16726a31a399 pre IWISE
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 1
diff changeset
   538
			$dc_nSumVel++;
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   539
			$dc_sumU += $dc_u[$r]; $dc_sumV += $dc_v[$r]; $dc_sumW += $dc_w[$r] if (@BT_w);
2
16726a31a399 pre IWISE
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 1
diff changeset
   540
		}
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   541
	}
20
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   542
	if ($dc_nSumVel) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   543
		$dc_refU = $dc_sumU / $dc_nSumVel; $dc_refV = $dc_sumV / $dc_nSumVel;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   544
		$dc_refW = $dc_sumW / $dc_nSumVel if (@BT_w);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   545
	}
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   546
}
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   547
unless (defined($uc_refU)) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   548
	my($uc_sumU,$uc_sumV,$uc_sumW,$uc_nSumVel);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   549
	for (my($r)=0; $r<@depth; $r++) {
2
16726a31a399 pre IWISE
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 1
diff changeset
   550
        if (numberp($uc_u[$r])) {
16726a31a399 pre IWISE
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 1
diff changeset
   551
			$uc_nSumVel++;
15
7896932f0206 V1.0beta6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 11
diff changeset
   552
			$uc_sumU += $uc_u[$r]; $uc_sumV += $uc_v[$r]; $uc_sumW += $uc_w[$r] if (@BT_w);
2
16726a31a399 pre IWISE
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 1
diff changeset
   553
		}
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   554
	}
20
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   555
	if ($uc_nSumVel) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   556
		$uc_refU = $uc_sumU / $uc_nSumVel; $uc_refV = $uc_sumV / $uc_nSumVel;
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   557
		$uc_refW = $uc_sumW / $uc_nSumVel if (@BT_w);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   558
	}
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   559
}
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   560
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   561
for (my($r)=0; $r<@depth; $r++) {							# reference velocities
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   562
	$u[$r] -= $refU if defined($u[$r]);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   563
	$v[$r] -= $refV if defined($v[$r]);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   564
	$w[$r] -= $refW if defined($w[$r]);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   565
	$dc_u[$r] -= $dc_refU if defined($dc_u[$r]);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   566
	$dc_v[$r] -= $dc_refV if defined($dc_v[$r]);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   567
	$dc_w[$r] -= $dc_refW if defined($dc_w[$r]);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   568
	$uc_u[$r] -= $uc_refU if defined($uc_u[$r]);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   569
	$uc_v[$r] -= $uc_refV if defined($uc_v[$r]);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   570
	$uc_w[$r] -= $uc_refW if defined($uc_w[$r]);
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   571
}
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   572
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   573
#======================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   574
# Determine X Factor
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   575
#======================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   576
20
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   577
if ($dc_nSumVel && $uc_nSumVel) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   578
	my($first_w,$last_w);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   579
	for (my($r)=0; !defined($first_w) || !defined($last_w); $r++) {
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   580
		$first_w = $dc_w[$r] unless defined($first_w);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   581
		$last_w  = $uc_w[$r] unless defined($last_w);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   582
	}
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   583
	
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   584
	my($X_Factor) = 100 * abs($last_w-$first_w) / sqrt(@depth / $DZ);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   585
	&antsAddParams('X-Factor',$X_Factor);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 18
diff changeset
   586
	printf(STDERR "X-Factor = %.1f\n",$X_Factor);
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   587
}
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   588
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   589
#======================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   590
# Output Velocity Profile
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   591
#======================================================================
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   592
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   593
@antsNewLayout = ('depth','elapsed','u','v','w','nsamp',
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   594
				  'dc_elapsed','dc_u','dc_v','dc_w','dc_nsamp',
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   595
				  'uc_elapsed','uc_u','uc_v','uc_w','uc_nsamp');
5
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   596
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   597
for (my($r)=0; $r<@depth; $r++) {
5
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 3
diff changeset
   598
	&antsOut($depth[$r]+$DZ/2,
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   599
			 $elapsed[$r],$u[$r],$v[$r],$w[$r],$nsamp[$r],
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   600
			 $dc_elapsed[$r],$dc_u[$r],$dc_v[$r],$dc_w[$r],$dc_nsamp[$r],
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   601
			 $uc_elapsed[$r],$uc_u[$r],$uc_v[$r],$uc_w[$r],$uc_nsamp[$r]);
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   602
}
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   603
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   604
#======================================================================
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   605
# Output Averaged Shear Profile
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   606
#======================================================================
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   607
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   608
if (defined($opt_s)) {
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   609
	@antsNewLayout = ('depth','elapsed','u_z','v_z','w_z','u_z.sig','v_z.sig','w_z.sig','nsamp',
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   610
							  'dc_elapsed','dc_u_z','dc_v_z','dc_w_z','dc_u_z.sig','dc_v_z.sig','dc_w_z.sig','dc_nsamp',
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   611
							  'uc_elapsed','uc_u_z','uc_v_z','uc_w_z','uc_u_z.sig','uc_v_z.sig','uc_w_z.sig','uc_nsamp');
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   612
	&antsOut('EOF');
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   613
    close(STDOUT);
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   614
	open(STDOUT,">$opt_s") || croak("$opt_s: $!\n");
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   615
	for (my($r)=0; $r<@depth; $r++) {
7
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   616
		&antsOut($depth[$r],$elapsed[$r],$uz[$r],$vz[$r],$wz[$r],$uzsig[$r],$vzsig[$r],$wzsig[$r],$nsamp[$r],
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   617
			     $dc_elapsed[$r],$dc_uz[$r],$dc_vz[$r],$dc_wz[$r],$dc_uzsig[$r],$dc_vzsig[$r],$dc_wzsig[$r],$dc_nsamp[$r],
A.M. Thurnherr <ant@ldeo.columbia.edu>
parents: 6
diff changeset
   618
			     $uc_elapsed[$r],$uc_uz[$r],$uc_vz[$r],$uc_wz[$r],$uc_uzsig[$r],$uc_vzsig[$r],$uc_wzsig[$r],$uc_nsamp[$r]);
6
A.M. Thurnherr <athurnherr@yahoo.com>
parents: 5
diff changeset
   619
	}
0
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   620
}
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   621
de00d0f32431 initial version to process P403 yoyo
A.M. Thurnherr <athurnherr@yahoo.com>
parents:
diff changeset
   622
&antsExit();