% set parameters used for logging and calculations % first field is the same as the raw logging directory (eg. os38) % second field is the ping type (in case of interleaved pings) %% parsed manually or by running % cruise_proc; params = get_params(allparams, 'os38', 'nb'); %% OS38 processing parameters os38.ducer_depth = 7; os38.h_align = 43.8; %45 - (cal/watertrk) %--------------------------------- %% OS38, BB pings % processing sources: os38.bb.h_align = os38.h_align; os38.bb.ducer_depth = os38.ducer_depth; os38.bb.velscale = 1.0; os38.bb.interval = 300; %os38.bb.editcfg.weakprof_numbins = 2; %--------------------------------- %% OS38, NB pings % processing sources: os38.nb.h_align = os38.h_align; os38.nb.ducer_depth = os38.ducer_depth; os38.nb.velscale = 1.0; os38.nb.interval = 300; %os38.nb.editcfg.weakprof_numbins = 1; %------------------------------------------------------- %%%% NBP NB150 processing parameters wh300.ducer_depth = 7; wh300.h_align = 45 - .5; %% - cal watertrk % processing sources: wh300.bb.h_align = wh300.h_align; wh300.bb.ducer_depth = wh300.ducer_depth; wh300.bb.interval = 300; %%%%%%%%%%%% soundspeed correction %% applied to ensemble average %% %% set velocity scale factor: %% %% obsolete: (still works, but deprecated) %%------------ %% wh300.bb.velscale = 2.0; %% %% newer method: % ----------- % option what it does % % 'calculate' (calc from thermistor temperature and salinity (below) % [] (don't change anything; i.e. use the original 1536 constant) % 1536 (or some other constant -- use this constant % % (At some later date we could add soundspeed input directly wh300.bb.velscale.soundspeed = []; wh300.bb.velscale.scalefactor = 1.0; %% also apply this scale factor allparams = struct('os38', os38, 'wh300', wh300);