defaults.pl
changeset 56 8f120b9f795a
parent 54 828e5466391b
child 57 69e39fcb7f41
equal deleted inserted replaced
55:2d8e1139acd5 56:8f120b9f795a
     1 #======================================================================
     1 #======================================================================
     2 #                    D E F A U L T S . P L 
     2 #                    D E F A U L T S . P L 
     3 #                    doc: Tue Oct 11 17:11:21 2011
     3 #                    doc: Tue Oct 11 17:11:21 2011
     4 #                    dlm: Sat May 16 10:53:34 2020
     4 #                    dlm: Fri Jul  9 13:30:48 2021
     5 #                    (c) 2011 A.M. Thurnherr
     5 #                    (c) 2011 A.M. Thurnherr
     6 #                    uE-Info: 90 31 NIL 0 0 72 0 2 4 NIL ofnI
     6 #                    uE-Info: 360 33 NIL 0 0 72 0 2 4 NIL ofnI
     7 #======================================================================
     7 #======================================================================
     8 
     8 
     9 # HISTORY:
     9 # HISTORY:
    10 #	Oct 11, 2011: - created
    10 #	Oct 11, 2011: - created
    11 #	Oct 12, 2011: - added $processing_param_file
    11 #	Oct 12, 2011: - added $processing_param_file
    86 #	Nov 29, 2017: - replaced opt_i by initial_time_lag
    86 #	Nov 29, 2017: - replaced opt_i by initial_time_lag
    87 #	Apr 24, 2018: - added $water_depth_db_cmd
    87 #	Apr 24, 2018: - added $water_depth_db_cmd
    88 #	May  2, 2018: - added max_hspeed
    88 #	May  2, 2018: - added max_hspeed
    89 #				  - replaced $PPI_seabed_editing_required by &PPI_seabed_editing_required
    89 #				  - replaced $PPI_seabed_editing_required by &PPI_seabed_editing_required
    90 #	May 16, 2020: - updated doc
    90 #	May 16, 2020: - updated doc
       
    91 #	Jun 30, 2021: - ditto
       
    92 #	Jul  9, 2021: - added $layer_residuals_rms_max
       
    93 # HISTORY END
    91 
    94 
    92 #======================================================================
    95 #======================================================================
    93 # Output Log Files
    96 # Output Log Files
    94 #	- there are 4 verbosity levels, selected by -v
    97 #	- there are 4 verbosity levels, selected by -v
    95 #		0 :	errors
    98 #		0 :	errors
   346 		warning(2,"unknown horizontal speed limit for this instrument frequency ($LADCP{BEAM_FREQUENCY} kHz)\n");
   349 		warning(2,"unknown horizontal speed limit for this instrument frequency ($LADCP{BEAM_FREQUENCY} kHz)\n");
   347 		$max_hspeed = 9e99;
   350 		$max_hspeed = 9e99;
   348 	}
   351 	}
   349 }
   352 }
   350 
   353 
       
   354 
       
   355 # After the beam-pair residuals have been binned into profiles, rms
       
   356 # values in 5-output-bin-thick layers (200m by default) are calculated.
       
   357 # Vertical velocities from bins with values greater than the following 
       
   358 # limit are set to nan in the the output. 
       
   359 
       
   360 $layer_residuals_rms_max = 0.003;
       
   361 
   351 #======================================================================
   362 #======================================================================
   352 # Time Lagging
   363 # Time Lagging
   353 #======================================================================
   364 #======================================================================
   354 
   365 
   355 # The following variable allows specifying an initial guess for the time 
   366 # The following variable allows specifying an initial guess for the time 
   527 
   538 
   528 # The following variables limit the bins used to grid w_oean
   539 # The following variables limit the bins used to grid w_oean
   529 #	- in contrast to -b, the other bins are still used e.g. for BT 
   540 #	- in contrast to -b, the other bins are still used e.g. for BT 
   530 #	- values recorded in %outgrid_firstbin, %outgrid_lastbin
   541 #	- values recorded in %outgrid_firstbin, %outgrid_lastbin
   531 #	- values beyond range are:
   542 #	- values beyond range are:
   532 #		- greyed out in *_mean_residuals.ps
   543 #		- greyed out in *_bin_residuals.ps
   533 #		- not used in *_w.ps, *_residuals.ps
   544 #		- not used in *_w.ps, *_residuals.ps
   534 
   545 
   535 $outGrid_firstBin = '*';			# use $LADCP_firstBin (-b)
   546 $outGrid_firstBin = '*';			# use $LADCP_firstBin (-b)
   536 $outGrid_lastBin  = '*';			# use $LADCP_lastBin (-b)
   547 $outGrid_lastBin  = '*';			# use $LADCP_lastBin (-b)
   537 
   548