DATA_SECTION !!// Stock Synthesis !!// Developed by Richard Methot, NOAA Fisheries !!// SS_Label_Section_1.0 #DATA_SECTION !!// SS_Label_Info_1.1.1 #Create string with version info !!version_info+="#V3.30.14.00-safe;_2019_07_12;_Stock_Synthesis_by_Richard_Methot_(NOAA)_using_ADMB_12.0"; !!version_info+="#Stock Synthesis (SS) is a work of the U.S. Government and is not subject to copyright protection in the United States."; !!version_info+="#Foreign copyrights may apply. See copyright.txt for more information."; !!version_info2+="#_user_support_available_at:NMFS.Stock.Synthesis@noaa.gov"; !!version_info3+="#_user_info_available_at:https://vlab.ncep.noaa.gov/group/stock-synthesis"; //*********COUNTERS************************* int z // counters for size (length) int z1 // min for z counter int z2 // max for z counter int L1 // for selecting sex specific length data int L2 // used for l+nlength to get length bin for males int A2 // used for a+nages+1 to get true age bin for males int a1 // use to track a subset of ages int f // counter for fleets and surveys. total is Ntypes int f1 // another fleet counter int fs // counter for fleets when looping across size and ageselex; so = f-Ntypes int gmorph // number of biological entities: gender*GP*BirthEvent*Platoon int g // counter for biological entity int GPat // counter for Gpattern (morph) int gg // counter for sex int gp // counter for sex*GPat or for Gpat int gp2 // used to loop platoons within Gpattern int a // counter for ages int b // counter for age bins int p // counter for area int p1 int p2 // counter for destination area in migration int i // counter for observations int y // counter for year int yz // year, but not allowed to extend past endyr int s // counter for seasons int s2 // destination season int mid_subseas // index of the subseas that corresponds to the middle of the season int subseas // subseas, mostly used to calc ALK_idx int ALK_idx // index to which subseas within current year to use for the ALK ALK_idx=(s-1)*N_subseas+subseas int ALK_time // continuous index to subseas =(y-styr)*nseas*N_subseas+ALK_idx int ALK_idx_mid // index of subseason at middle of season int t // counter for time, combining year and season int mo // month (1-12), not (0-11) int j int j1 int j2 int k int k1 int k2 int k3 int s_off // offset for male section of vectors int Fishon // whether or not to do fishery catch in equil_calc int NP // number of parameters int Ip // parameter counter int firstseas // used to start season loops at the birthseason int t_base; // int niter // iteration count int loop int TG_t; // time counter (in seasons) for tag groups int Fcast_catch_start // int ParCount; int retParCount; int N_SC; // counter for starter comments int N_DC; int N_CC; int N_FC; int catch_mult_pointer; int frac_female_pointer; int icycle int No_Report // flag to skip output reports after MCMC and MCeval int mcmcFlag int noest_flag number temp; number temp1; int save_for_report; int save_gparm; int save_gparm_print; int N_warn; !! save_for_report=0; !! save_gparm=0; !! N_warn=0; int Nparm_on_bound; LOCAL_CALCS No_Report=0; Ncycle=3; z=0; z1=0; z2=0; L1=0; L2=0; A2=0; a1=0; f=0; f1=0; fs=0; gmorph=0; g=0; GPat=0; gg=0; gp=0; gp2=0; a=0; b=0; p=0; p1=0; p2=0; i=0; y=0; yz=0; s=0; s2=0; mid_subseas=0; subseas=0; ALK_idx=0; ALK_time=0; ALK_idx_mid=0; t=0; mo=0; j=0; j1=0; j2=0; k=0; k1=0; k2=0; k3=0; s_off=0; Fishon=0; NP=0; Ip=0; firstseas=0; t_base=0; niter=0; loop=0; TG_t=0; Fcast_catch_start=0; retParCount=0; N_SC=0; N_DC=0; N_CC=0; N_FC=0; catch_mult_pointer=0; frac_female_pointer=0; icycle=0; No_Report=0; mcmcFlag=0; noest_flag=0; temp=0; temp1=0; save_gparm_print=0; // SS_Label_Info_1.1.2 #Create elements of parameter labels // adstring_array NumLbl; // adstring_array GenderLbl; // gender label // adstring_array CRLF; // blank to terminate lines CRLF+=""; GenderLbl+="Fem"; GenderLbl+="Mal"; GP_Lbl+="_GP_1"; GP_Lbl+="_GP_2"; GP_Lbl+="_GP_3"; GP_Lbl+="_GP_4"; GP_Lbl+="_GP_5"; GP_Lbl+="_GP_6"; onenum=" "; for (i=1;i<=199;i++) /* SS_loop: fill string NumLbl with numbers */ { sprintf(onenum, "%d", i); NumLbl+=onenum+CRLF(1); } // SS_Label_Info_1.2 #Read the STARTER.SS file // /* SS_Label_Flow read STARTER.SS */ ad_comm::change_datafile_name("starter.ss"); // get filenames cout<<" reading from STARTER.SS"<> readline; // reads a single line from input stream if(length(readline)>2) { checkchar=readline(1); k=strcmp(checkchar,"#"); checkchar=readline(1,2); j=strcmp(checkchar,"#C"); if(j==0) {N_SC++; Starter_Comments+=readline;} } } echoinput< 2) reportdetail = 0; echoinput<0) echoinput<0) { echoinput<> tempin; echoinput< 0) { echoinput< 3) mcmc_output_detail = 0; echoinput<<"MCMC output detail: "<> finish_starter2; ALK_tolerance = finish_starter2; echoinput<<"ALK tolerance: "< 0.1) { echoinput<<"Error: ALK tolerance must be between 0.0 and 0.1"<> finish_starter3; if (finish_starter3 != 3.30) { echoinput<<"Error: the last line of starter.ss should be '3.30'"<>runnumber; runnumber++; fin1.close(); } else { runnumber=1; } // SS_Label_Info_1.3.1 #Increment runnumber and write to file ofstream fin2("runnumber.ss", ios::out); fin2 << runnumber; fin2.close(); // SS_Label_Info_1.4 #Read Profilevalues.ss file N_prof_var=998; ifstream fin3("profilevalues.ss", ios::in); fin3>>N_prof_var; // if file is null this will not return anything if (N_prof_var==998) {N_prof_var=0; prof_junk=0;} else {prof_junk=1;} fin3.close(); if(N_prof_var>0) {ad_comm::change_datafile_name("profilevalues.ss");} else {ad_comm::change_datafile_name("runnumber.ss");} // just to have something in scope prof_var_cnt=(runnumber-1)*N_prof_var+2; END_CALCS init_vector prof_var(1,prof_junk+runnumber*N_prof_var); // /* SS_Label_Flow read data file named in STARTER.SS file */ // SS_Label_Info_2.0 #READ DATA FILE // SS_Label_Info_2.1 #Read comments and dimension info // SS_Label_Info_2.1.1 #Read and save comments at top of data file LOCAL_CALCS ad_comm::change_datafile_name(datfilename); cout<<" reading from data file"<> readline; // reads the line from input stream if(length(readline)>2) { checkchar=readline(1); k=strcmp(checkchar,"#"); checkchar=readline(1,2); j=strcmp(checkchar,"#C"); if(j==0) {N_DC++; Data_Comments+=readline;} } } END_CALCS !!// SS_Label_Info_2.1.2 #Read model time dimensions int read_seas_mo // 1=read integer season; 2=read real months LOCAL_CALCS read_seas_mo=2; END_CALCS int N_subseas // number of subseasons within season; must be even number to get one to be mid_season ivector timing_constants(1,6) LOCAL_CALCS *(ad_comm::global_datafile) >> styr; //start year of the model echoinput<> endyr; // end year of the model echoinput<> nseas; // number of seasons echoinput<> N_subseas; echoinput<=11.9) { seasdur /=sumseas; seas_as_year=0; sumseas=12.0; // to be sure it is exactly 12. } else { seasdur /=12.; seas_as_year=1; // sumseas will now be used as the duration of the pseudo-year, rather than assuming year has 12 months; if(nseas>1) { N_warn++; warning<<"Error. Can only have 1 season when during seasons as psuedo-years."<1) for (s=2;s<=nseas;s++) /* SS_loop: calculate azero_seas from cumulative sum of seasdur(s) */ {azero_seas(s)=sum(seasdur(1,s-1));} subseasdur.initialize(); for (s=1;s<=nseas;s++) /* SS_loop: for each season */ { for (subseas=2;subseas<=N_subseas;subseas++) /* SS_loop: calculate cumulative time within season to start of each subseas */ { subseasdur(s,subseas)=subseasdur(s,subseas-1)+seasdur(s)/double(N_subseas); } } echoinput<nseas) { N_warn++; warning<<" spawn_seas index must be <= nseas "<> gender_rd; gender=abs(gender_rd); if(gender_rd<0) echoinput<<"gender read is negative, so total spawnbiomass will be multiplied by frac_female parameter"<> nages; echoinput<> pop; echoinput<> Nfleet; Nfleet1=0; Nsurvey=0; nages2=gender*nages+gender-1; echoinput<> fleet_setup(f)(1,5); *(ad_comm::global_datafile) >> anystring; fleetname+=anystring; fleet_type(f) = int(fleet_setup(f,1)); if(fleet_type(f)==2) N_bycatch++; if(fleet_type(f)<=2) N_catchfleets++; surveytime(f) = fleet_setup(f,2)/abs(fleet_setup(f,2)); fleet_setup(f,2)=surveytime(f); if(fleet_type(f)<=2) { YPR_mask(f)=1; if(surveytime(f)!=-1.) {warning<<"fishing fleet: "<1 && need_catch_mult(f)>0) {N_warn++; cout<<"exit; see warning"<0) { echoinput<<"Now read bycatch fleet characteristics for "<> f; bycatch_setup(f,1)=f; *(ad_comm::global_datafile) >> bycatch_setup(f)(2,6); if(fleet_type(f)==2) { echoinput<retro_yr) bycatch_setup(f,5)=retro_yr; } } else { N_warn++; cout<<"fatal input error"<(nages-2) || F_reporting_ages(1)<0) {N_warn++; warning<<" reset lower end of F_reporting_ages to be nages-2 "<(nages-2) || F_reporting_ages(2)<0) {N_warn++; warning<<" reset upper end of F_reporting_ages to be nages-2 "<) stores ALK_time // ProgLabel_2.2 Read CATCH amount by fleet matrix obs_equ_catch(1,nseas,1,Nfleet) // initial, equilibrium catch. now seasonal LOCAL_CALCS have_data.initialize(); have_data_yr.initialize(); obs_equ_catch.initialize(); for(y=1;y<=ALK_time_max;y++) for(f=1;f<=Nfleet;f++) { data_time(y,f,1)=-1.0; // set to illegal value since 0.0 is valid } END_CALCS !!// SS_Label_Info_2.2 #Read CATCH amount by fleet int N_ReadCatch; // int Catch_read; vector tempvec(1,6) // vector used for temporary reads LOCAL_CALCS typedef std::char_traits::pos_type pos_type; pos_type mark_pos = ad_comm::global_datafile->tellg(); // record current file position // N_ReadCatch=count_records(5); // ad_comm::global_datafile->seekg(mark_pos); // go back to the recorded position int ender; ender=0; do { dvector tempvec(1,5); *(ad_comm::global_datafile) >> tempvec(1,5); if(tempvec(1)==-9999.) ender=1; catch_read.push_back (tempvec(1,5)); } while (ender==0); N_ReadCatch=catch_read.size()-1; echoinput<=styr-1 && y<=endyr && (g==-999 || g>=styr)) // observation is in date range { if(s>nseas) s=nseas; // allows for collapsing multiple season catch data down into fewer seasons // typically to collapse to annual because accumulation will all be in the index "nseas" if(s>0) { t=styr+(y-styr)*nseas+s-1; { catch_ret_obs(f,t) += tempvec(4); catch_se(t,f) = tempvec(5); } } else // distribute catch equally across seasons { for (s=1;s<=nseas;s++) { t=styr+(y-styr)*nseas+s-1; { catch_ret_obs(f,t) += tempvec(4)/nseas; } } } } } obs_equ_catch.initialize(); for(s=1;s<=nseas;s++) { for (f=1;f<=Nfleet;f++) if(fleet_type(f)<=2) {obs_equ_catch(s,f)=catch_ret_obs(f,styr-nseas-1+s);} echoinput<<" equ, seas: -1 "<0.0) first_catch_yr=styr-1; for (y=styr; y<=endyr; y++) { for (s=1;s<=nseas;s++) { t=styr+(y-styr)*nseas+s-1; for (p=1;p<=pop;p++) for (f=1;f<=Nfleet;f++) if(fleet_area(f)==p && catch_ret_obs(f,t) > 0.0) { totcat(y) += catch_ret_obs(f,t); catch_seas_area(t,p,f)=1; catch_seas_area(t,p,0)=1; totcatch_byarea(t,p)+=catch_ret_obs(f,t); } } if(totcat(y)>0.0 && first_catch_yr==0) first_catch_yr=y; if(y==endyr && totcat(y)==0.0) { N_warn++; warning<<" catch is 0.0 in endyr; this can cause problem in the benchmark and forecast calculations"<0.0) { echoinput<<" Catch by survey fleet will be ignored "; N_warn++; warning<<" Catch by survey fleet will be ignored "<=30 for special patterns ivector Svy_errtype(1,Nfleet) // -1=normal / 0=lognormal / >0=T ivector Svy_sdreport(1,Nfleet) // 0=no sdreport; 1=enable sdreport int Svy_N_sdreport LOCAL_CALCS data_type=1; // for surveys echoinput<<"Units: 0=numbers; 1=biomass; 2=F; >=30 for special patterns"<0=T"<> tempvec(1,5); if(tempvec(1)==-9999.) ender=1; Svy_data.push_back (tempvec(1,5)); } while (ender==0); Svy_N_rd=Svy_data.size()-1; echoinput<0) echoinput<<" Svy_data "<0) { for (i=0;i<=Svy_N_rd-1;i++) { echoinput<=styr) { f=abs( Svy_data[i](3)); // negative f turns off observation Svy_N_fleet(f)++; if( Svy_data[i](5)<0) {N_warn++; cout<<" EXIT - see warning "<0) { j=Svy_super_N(f)/2; // because we counted the begin and end if(2*j!=Svy_super_N(f)) { N_warn++; cout<<" EXIT - see warning "<0) { for (i=0;i<=Svy_N_rd-1;i++) // loop all, including those out of yr range { y= Svy_data[i](1); if(y>endyr+20) {N_warn++;warning<<"forecast observations cannot be beyond endyr+20; SS will exit"<=styr) { // call a global function to calculate data timing and create various indexes // function will return: data_timing, ALK_time, real_month, use_midseas timing_input(1,3)=Svy_data[i](1,3); get_data_timing(timing_input, timing_constants, timing_i_result, timing_r_result, seasdur, subseasdur_delta, azero_seas, surveytime); f=abs( Svy_data[i](3)); if(y>retro_yr) Svy_data[i](3)=-f; Svy_N_fleet(f)++; // count obs by fleet j=Svy_N_fleet(f); // index of observation as stored in working array t=timing_i_result(2); ALK_time=timing_i_result(5); // some fleet specific indexes and working versions of the data and se Svy_time_t(f,j)=t; Svy_ALK_time(f,j)=ALK_time; // continuous subseas counter in which jth obs from fleet f occurs Svy_se_rd(f,j)= Svy_data[i](5); // later adjust with varadjust, copy to se_cr_use, then adjust with extra se parameter if( Svy_data[i](3)<0) {Svy_use(f,j)=-1;} else {Svy_use(f,j)=1;} Svy_obs(f,j)= Svy_data[i](4); Svy_yr(f,j)=y; if(Svy_styr(f)==0 || (y>=styr && ySvy_endyr(f)) ) Svy_endyr(f)=y; // for dimensioning survey q devs // some all fleet indexes if(data_time(ALK_time,f,1)<0.0) // so first occurrence of data at ALK_time,f {data_time(ALK_time,f)(1,3)=timing_r_result(1,3);} // real_month,fraction of season, year.fraction else if (timing_r_result(1) != data_time(ALK_time,f,1)) {N_warn++; warning<<"SURVEY: data_month already set for y,s,f: "< 0) { Svy_N_sdreport += Svy_N_fleet(f); } } if (Svy_N_sdreport < 0) Svy_N_sdreport = 0; echoinput<<"Number of sdreport index values: "<0 read: fleet, disc_units, disc_error(for 1,Ndisc_fleets), then read obs "<0) {j=Nfleet;} else {j=0;} data_type=2; // for discard END_CALCS init_imatrix disc_units_rd(1,Ndisc_fleets,1,3) ivector disc_units(1,j) // formerly scalar disc_type ivector disc_errtype(1,j) // formerly scalar DF_disc vector disc_errtype_r(1,j) // real version for T-dist LOCAL_CALCS disc_units.initialize(); disc_errtype.initialize(); nobs_disc=0; disc_N_fleet=0; N_suprper_disc=0; if(Ndisc_fleets>0) { echoinput<<"#_discard_units (1=same_as_catchunits(bio/num);2=fraction; 3=numbers)"<0 for DF of T-dist(read CV below); 0 for normal with CV; -1 for normal with se; -2 for lognormal; -3 for trunc normal with CV"<> tempvec(1,5); if(tempvec(1)==-9999.) ender=1; discdata.push_back (tempvec(1,5)); } while (ender==0); disc_N_read=discdata.size()-1; echoinput<0) { for (i=0;i<=disc_N_read-1;i++) // get count of observations in date range { echoinput<=styr) { f=abs( discdata[i](3)); disc_N_fleet(f)++; if( discdata[i](5)<0) {N_warn++; cout<<"EXIT - see warning"<0) { j=N_suprper_disc(f)/2; // because we counted the begin and end if(2*j!=N_suprper_disc(f)) { N_warn++; cout<<"EXIT - see warning"<0) { for (i=0;i<=disc_N_read-1;i++) { y= discdata[i](1); if(y>endyr+20) {N_warn++;warning<<"forecast observations cannot be beyond endyr+20; SS will exit"<=styr) { timing_input(1,3)=discdata[i](1,3); get_data_timing(timing_input, timing_constants, timing_i_result, timing_r_result, seasdur, subseasdur_delta, azero_seas, surveytime); f=abs( discdata[i](3)); if(y>retro_yr) discdata[i](3)=-f; disc_N_fleet(f)++; j=disc_N_fleet(f); // index number for data that are in date range t=timing_i_result(2); ALK_time=timing_i_result(5); disc_time_t(f,j)=t; disc_time_ALK(f,j)=ALK_time; // subseas that this observation is in if(data_time(ALK_time,f,1)<0.0) // so first occurrence of data at ALK_time,f {data_time(ALK_time,f)(1,3)=timing_r_result(1,3);} // real_month,fraction of season, year.fraction else if (timing_r_result(1) != data_time(ALK_time,f,1)) {N_warn++; warning<<"DISCARD: data_month already set for y,s,f: "<0) { *(ad_comm::global_datafile) >> DF_bodywt; echoinput<> tempvec(1,7); if(tempvec(1)==-9999.) ender=1; z++; if(z<=2) echoinput<<"meansize_obs_#:"<=styr) nobs_mnwt++; } while (ender==0); nobs_mnwt_rd=mnwtdata1.size()-1; echoinput<0) echoinput<<"meansize_obs_#:"<0) for (i=0;i<=nobs_mnwt_rd-1;i++) // loop all obs { y=mnwtdata1[i](1); if(y>endyr+20) {N_warn++;warning<<"forecast observations cannot be beyond endyr+20; SS will exit"<=styr) { if(mnwtdata1[i](2)<0.0) {N_warn++; warning<<"negative season not allowed for mnwtdata because superperiods not implemented "<retro_yr) mnwtdata1[i](3)=-f; t=timing_i_result(2); ALK_time=timing_i_result(5); // disc_time_ALK(f,j)=ALK_time; // subseas that this observation is in if(data_time(ALK_time,f,1)<0.0) // so first occurrence of data at ALK_time,f {data_time(ALK_time,f)(1,3)=timing_r_result(1,3);} // real_month,fraction of season, year.fraction else if (timing_r_result(1) != data_time(ALK_time,f,1)) { N_warn++; warning<<"MEAN_WEIGHT: data_month already set for y,s,f: "<0) echoinput<0) echoinput<0) { echoinput<<"#_now read for each fleet info for processing the length comps:"<> min_tail_L(f); *(ad_comm::global_datafile) >> min_comp_L(f); *(ad_comm::global_datafile) >> CombGender_L(f); *(ad_comm::global_datafile) >> AccumBin_L(f); *(ad_comm::global_datafile) >> Comp_Err_L(f); *(ad_comm::global_datafile) >> Comp_Err_L2(f); *(ad_comm::global_datafile) >> min_sample_size_L(f); echoinput< 0; minimum sample size set to 0.001 "<> nlen_bin; echoinput<0) { *(ad_comm::global_datafile) >> len_bins_dat; echoinput<<" len_bins_dat "<nlen_bin) { N_warn++; warning<<"Combgender_L(f) cannot be greater than nlen_bin; resetting for fleet: "<0) { startbin=1; while(len_bins(startbin)len_bins(nlength)) { N_warn++; cout<<"Critical error, see warning.sso"<0) { for (z=1;z<=nlength;z++) { if(ibin==nlen_bin) { //checkup<<" got to last ibin, so put rest of popbins here"<=topbin) {ibin++; } //checkup<<" incr ibin "; if(ibin>1) {botbin=len_bins_dat(ibin);} if(ibin=botbin && len_bins(z+1)<=topbin ) //checkup<<" pop inside dat, put here"<0) { ender=0; z=0; do { dvector tempvec(1,k); *(ad_comm::global_datafile) >> tempvec(1,k); if(tempvec(1)==-9999.) ender=1; z++; if(z<=2) echoinput<<"len_obs_#:"<0) echoinput<<"len_obs_#:"<0) for (i=0;i<=nobsl_rd-1;i++) { y= lendata[i](1); if(y>=styr) { f=abs( lendata[i](3)); if( lendata[i](6)<0) {N_warn++; cout<<"error in length data "<0) { echoinput<<"process length comps "<endyr+20) {N_warn++;warning<<"forecast observations cannot be beyond endyr+20; SS will exit"<=styr) { f=abs( lendata[i](3)); if(f==floop) { timing_input(1,3)=lendata[i](1,3); get_data_timing(timing_input, timing_constants, timing_i_result, timing_r_result, seasdur, subseasdur_delta, azero_seas, surveytime); Nobs_l(f)++; j=Nobs_l(f); f=abs( lendata[i](3)); t=timing_i_result(2); s=timing_i_result(3); ALK_time=timing_i_result(5); Len_time_t(f,j)=t; // sequential time = year+season Len_time_ALK(f,j)=ALK_time; if(data_time(ALK_time,f,1)<0.0) // so first occurrence of data at ALK_time,f {data_time(ALK_time,f)(1,3)=timing_r_result(1,3);} // real_month,fraction of season, year.fraction else if (timing_r_result(1) != data_time(ALK_time,f,1)) {N_warn++; warning<<"LENGTH: data_month already set for y,m,f: "<nseas) {N_warn++; cout<<" EXIT - see warning "< nseas"<retro_yr) header_l(f,j,3)=-f; // note that following storage is redundant with Show_Time(t,3) calculated later header_l(f,j,0) = float(y)+0.01*int(100.*(azero_seas(s)+seasdur_half(s))); // gen_l(f,j)= lendata[i](4); // gender 0=combined, 1=female, 2=male, 3=both mkt_l(f,j)= lendata[i](5); // partition: 0=all, 1=discard, 2=retained nsamp_l_read(f,j)= lendata[i](6); // assigned sample size for observation nsamp_l(f,j)=nsamp_l_read(f,j); // SS_Label_Info_2.7.6 #Create super-periods for length compositions if( lendata[i](2)<0) // start/stop a super-period ALL observations must be continguous in the file { if(in_superperiod==0) // start a super-period ALL observations must be continguous in the file {N_suprper_l(f)++; suprper_l1(f,N_suprper_l(f))=j; in_superperiod=1;} else if(in_superperiod==1) // end a super-year {suprper_l2(f,N_suprper_l(f))=j; in_superperiod=0;} } for (z=1;z<=nlen_bin2;z++) // get the composition vector {obs_l(f,j,z)= lendata[i](6+z);} if(sum(obs_l(f,j))<=0.0) {N_warn++; warning<<" zero fish in size comp (fleet, year) "<0) { for (z=1;z<=CombGender_L(f);z++) { obs_l(f,j,z)+=obs_l(f,j,z+nlen_bin); obs_l(f,j,z+nlen_bin)=0.0; } tails_l(f,j,3)=nlen_binP+CombGender_L(f); } if(gen_l(f,j)==2) obs_l(f,j)(1,nlen_bin) = 0.; // zero out females for male-only obs if(gen_l(f,j)<=1 && gender==2) obs_l(f,j)(nlen_binP,nlen_bin2) = 0.; // zero out males for female-only or combined gender obs obs_l(f,j) /= sum(obs_l(f,j)); // make sum to 1.00 if(gen_l(f,j)!=2) // do females, unless Male-only observation { k=0; temp=sum(obs_l(f,j)(1,nlen_bin)); // sum of females proportions for (z=1;z<=nlen_bin;z++) if(obs_l(f,j,z)>0.) // find Number of bins with data {k++;} if(temp>0.0 && k>1) // only compress tail if obs exist for this gender and there is more than 1 bin with data { k=0; for (z=1;z<=nlen_bin-1;z++) // compress Female lower tail until exceeds min_tail { if(obs_l(f,j,z)<=min_tail_L(f)&& k==0) { obs_l(f,j,z+1)+=obs_l(f,j,z); obs_l(f,j,z)=0.00; tails_l(f,j,1)=z+1; } else {k=1;} } k=0; for (z=nlen_bin;z>=tails_l(f,j,1);z--) // compress Female upper tail until exceeds min_tail { if((obs_l(f,j,z)<=min_tail_L(f) && k==0) || z>(nlen_bin-AccumBin_L(f))) { obs_l(f,j,z-1)+=obs_l(f,j,z); obs_l(f,j,z)=0.00; tails_l(f,j,2)=z-1; } else {k=1;} } } obs_l(f,j)(tails_l(f,j,1),tails_l(f,j,2)) += min_comp_L(f); // add min_comp to bins in range } if(gen_l(f,j)>=2 && gender==2) // process males { k=0; temp=sum(obs_l(f,j)(nlen_binP,nlen_bin2)); for (z=nlen_binP;z<=nlen_bin2;z++) if(obs_l(f,j,z)>0.) {k++;} if(temp>0.0 && k>1) // only compress tail if obs exist for this gender and there is more than 1 bin with data { k=0; k1=tails_l(f,j,3); for (z=k1;z<=nlen_bin2-1;z++) { if(obs_l(f,j,z)<=min_tail_L(f) && k==0) { obs_l(f,j,z+1)+=obs_l(f,j,z); obs_l(f,j,z)=0.00; tails_l(f,j,3)=z+1; } else {k=1;} } k=0; for (z=nlen_bin2;z>=tails_l(f,j,3);z--) // compress Male upper tail until exceeds min_tail { if((obs_l(f,j,z)<=min_tail_L(f) && k==0) || z>(nlen_bin2-AccumBin_L(f))) { obs_l(f,j,z-1)+=obs_l(f,j,z); obs_l(f,j,z)=0.00; tails_l(f,j,4)=z-1; } else {k=1;} } } obs_l(f,j)(tails_l(f,j,3),tails_l(f,j,4)) += min_comp_L(f); // add min_comp to bins in range } // end doing males obs_l(f,j) /= sum(obs_l(f,j)); // make sum to 1.00 again after adding min_comp if(gender==1 || gen_l(f,j)!=2) {obs_l_all(1,f)(1,nlen_bin)+=obs_l(f,j)(1,nlen_bin);} // females or combined if(gender==2) { if(gen_l(f,j)==1 || gen_l(f,j)==3) // put females into female only { obs_l_all(3,f)(1,nlen_bin)+=obs_l(f,j)(1,nlen_bin); } if(gen_l(f,j)>=2) // put males into combined and into male only { for(z=1;z<=nlen_bin;z++) { obs_l_all(1,f,z)+=obs_l(f,j,nlen_bin+z); obs_l_all(4,f,z)+=obs_l(f,j,nlen_bin+z); } } } } } } } echoinput<<"Overall_Compositions"<0.0) { obs_l_all(j,f)/=temp; } else { obs_l_all(j,f)=float(1./nlen_bin); } } } obs_l_all(2,f,1)=obs_l_all(1,f,1); // first bin for (z=2;z<=nlen_bin;z++) { obs_l_all(2,f,z)=obs_l_all(2,f,z-1)+obs_l_all(1,f,z); } if(Nobs_l(f)>0) { echoinput<> n_abins; echoinput<0) { *(ad_comm::global_datafile) >> age_bins1; echoinput << age_bins1<< " agebins " << endl; *(ad_comm::global_datafile) >> N_ageerr; // number of ageing error matrices to be calculated echoinput<> age_err_rd(j,1)(0,nages); *(ad_comm::global_datafile) >> age_err_rd(j,2)(0,nages); } } else { echoinput<<"N bins set to zero, so no more reading of age data inputs"<0) { echoinput<<"ageerror_definitions_as_read"<0) { for (i=1;i<=N_ageerr;i++) { if(age_err_rd(i,2,0)<0.) Use_AgeKeyZero=i; // set flag for setup of age error parameters } if(Use_AgeKeyZero>0) echoinput<<"AgeKey: "<> min_tail_A(f); *(ad_comm::global_datafile) >> min_comp_A(f); *(ad_comm::global_datafile) >> CombGender_A(f); *(ad_comm::global_datafile) >> AccumBin_A(f); *(ad_comm::global_datafile) >> Comp_Err_A(f); *(ad_comm::global_datafile) >> Comp_Err_A2(f); *(ad_comm::global_datafile) >> min_sample_size_A(f); echoinput< 0; minimum sample size set to 0.001 "<> Lbin_method; echoinput << Lbin_method<< " Lbin method for defined size ranges " << endl; if(nobsa_rd>0 && N_ageerr==0) { N_warn++; cout<<" EXIT - see warning "<n_abins2) { N_warn++; warning<<"Combgender_A(f) cannot be greater than n_abins for fleet:_"<1) {age_bins_mean(b) =age_bins1(b)+0.5*(age_bins1(b)-age_bins1(b-1));} else {age_bins_mean(b) =age_bins1(b) + 0.5;} if(gender==2) { age_bins(b+n_abins)=age_bins1(b); age_bins_mean(b+n_abins)=age_bins_mean(b); } } // SS_Label_Info_2.8.2 #Read Age data k=9+n_abins2; ender=0; z=0; do { dvector tempvec(1,k); *(ad_comm::global_datafile) >> tempvec(1,k); if(tempvec(1)==-9999.) ender=1; z++; if(z<=2) echoinput<<"age_obs_#:"<0) echoinput<<"age_obs_#:"<=styr) { f=abs(Age_Data[i](3)); if(Age_Data[i](9)<0) {N_warn++; cout<<"error in age data "<N_ageerr) {N_warn++; cout<<"error in age data "<0) { echoinput<<"process age comps "<endyr+20) {N_warn++;warning<<"forecast observations cannot be beyond endyr+20; SS will exit"<=styr) { f=abs(Age_Data[i](3)); if(f==floop) { timing_input(1,3)=Age_Data[i](1,3); get_data_timing(timing_input, timing_constants, timing_i_result, timing_r_result, seasdur, subseasdur_delta, azero_seas, surveytime); Nobs_a(f)++; // redoing this pointer just to create index j used below j=Nobs_a(f); f=abs(Age_Data[i](3)); t=timing_i_result(2); s=timing_i_result(3); ALK_time=timing_i_result(5); Age_time_t(f,j)=t; // sequential time = year+season Age_time_ALK(f,j)=ALK_time; if(data_time(ALK_time,f,1)<0.0) // so first occurrence of data at ALK_time,f {data_time(ALK_time,f)(1,3)=timing_r_result(1,3);} // real_month,fraction of season, year.fraction else if (timing_r_result(1) != data_time(ALK_time,f,1)) {N_warn++; warning<<"AGE: data_month already set for y,m,f: "<nseas) {N_warn++; cout<<" EXIT - see warning "< nseas"<retro_yr) header_a(f,j,3)=-f; gen_a(f,j)=Age_Data[i](4); // gender 0=combined, 1=female, 2=male, 3=both mkt_a(f,j)=Age_Data[i](5); // partition: 0=all, 1=discard, 2=retained nsamp_a_read(f,j)=Age_Data[i](9); // assigned sample size for observation nsamp_a(f,j)=nsamp_a_read(f,j); if(Age_Data[i](6)>N_ageerr) { N_warn++; cout<<" EXIT - see warning "<nlength) Lbin_hi(f,j)=nlength; break; } case 2: // values are data length bin numbers { if(Lbin_lo(f,j)<=0) Lbin_lo(f,j)=1; if(Lbin_hi(f,j)<=0 || Lbin_hi(f,j)>nlen_bin) Lbin_hi(f,j)=nlen_bin; s=0; for (k=1;k<=nlength;k++) { if( len_bins(k)==len_bins_dat(Lbin_lo(f,j)) ) s=k; // find poplen bin that matches data len bin } if(s==0) {N_warn++; cout<<" EXIT - see warning "<len_bins(nlength)) Lbin_hi(f,j)=len_bins(nlength); s=0; for (k=1;k<=nlength;k++) { if( len_bins(k)==Lbin_lo(f,j) ) s=k; // find poplen bin that matches input length for lbin_lo } if(s==0) {N_warn++; cout<<" exit - see warning "<nlength || Lbin_lo(f,j)>Lbin_hi(f,j)) {N_warn++; cout<<" EXIT - see warning "<0) { for (z=1;z<=CombGender_A(f);z++) { obs_a(f,j,z)+=obs_a(f,j,z+n_abins); obs_a(f,j,z+n_abins)=0.0; } tails_a(f,j,3)=n_abins+1+CombGender_A(f); } } obs_a(f,j) /= sum(obs_a(f,j)); if(gen_a(f,j)!=2) // do females, unless Male-only observation { k=0; temp=sum(obs_a(f,j)(1,n_abins)); for (z=1;z<=n_abins;z++) if(obs_a(f,j,z)>0.) {k++;} if(temp>0.0 && k>1) // only compress tail if obs exist for this gender and there is more than 1 bin with data { k=0; for (z=1;z<=n_abins-1;z++) // compress Female lower tail until exceeds min_tail { if(obs_a(f,j,z)<=min_tail_A(f) && k==0) { obs_a(f,j,z+1)+=obs_a(f,j,z); obs_a(f,j,z)=0.00; tails_a(f,j,1)=z+1; } else {k=1;} } k=0; for (z=n_abins;z>=tails_a(f,j,1);z--) // compress Female upper tail until exceeds min_tail { if((obs_a(f,j,z)<=min_tail_A(f) && k==0) || (z>(n_abins-AccumBin_A(f)))) { obs_a(f,j,z-1)+=obs_a(f,j,z); obs_a(f,j,z)=0.00; tails_a(f,j,2)=z-1; } else {k=1;} } } obs_a(f,j)(tails_a(f,j,1),tails_a(f,j,2)) += min_comp_A(f); // add min_comp to bins in range } // done with females if(gen_a(f,j)>=2 && gender==2) // compress Male tails until exceeds min_tail { k=0; temp=sum(obs_a(f,j)(n_abins1,n_abins2)); for (z=n_abins1;z<=n_abins2;z++) if(obs_a(f,j,z)>0.) {k++;} if(temp>0.0 && k>1) // only compress tail if obs exist for this gender and there is more than 1 bin with data { k=0; for (z=n_abins1;z<=n_abins2-1;z++) { if(obs_a(f,j,z)<=min_tail_A(f) && k==0) { obs_a(f,j,z+1)+=obs_a(f,j,z); obs_a(f,j,z)=0.00; tails_a(f,j,3)=z+1; } else {k=1;} } k=0; for (z=n_abins2;z>=tails_a(f,j,3);z--) // compress Male upper tail until exceeds min_tail { if((obs_a(f,j,z)<=min_tail_A(f) && k==0) || (z>(n_abins2-AccumBin_A(f)))) { obs_a(f,j,z-1)+=obs_a(f,j,z); obs_a(f,j,z)=0.00; tails_a(f,j,4)=z-1; } else {k=1;} } } obs_a(f,j)(tails_a(f,j,3),tails_a(f,j,4)) += min_comp_A(f); // add min_comp to bins in range } if(sum(obs_a(f,j))>0.) obs_a(f,j) /= sum(obs_a(f,j)); // make sum to 1.00 again after adding min_comp if(gender==1 || gen_a(f,j)!=2) obs_a_all(1,f)(1,n_abins)+=obs_a(f,j)(1,n_abins); // females or combined if(gender==2 && gen_a(f,j)>=2) { for (a=1;a<=n_abins;a++) { obs_a_all(1,f,a)+=obs_a(f,j,n_abins+a); // males } } // warning<0) { obs_a_all(1,f)/=sum(obs_a_all(1,f)); } else { obs_a_all(1,f)=float(1./n_abins); } obs_a_all(2,f,1)=obs_a_all(1,f,1); // first bin for (a=2;a<=n_abins;a++) { obs_a_all(2,f,a)=obs_a_all(2,f,a-1)+obs_a_all(1,f,a); } echoinput<0) { k=7+2*n_abins2; ender=0; z=0; do { dvector tempvec(1,k); *(ad_comm::global_datafile) >> tempvec(1,k); if(tempvec(1)==-9999.) ender=1; z++; if(z<=2) echoinput<<"meansize@age_obs_#:"<0) echoinput<<"meansize@age_obs_#:"<0) for (i=0;i<=nobs_ms_rd-1;i++) { y=sizeAge_Data[i](1); if(y>=styr) { f=abs(sizeAge_Data[i](3)); if(sizeAge_Data[i](7)<0) {N_warn++; cout<<"error in meansize"<0) { in_superperiod=0; for (floop=1;floop<=Nfleet;floop++) for (i=0;i<=nobs_ms_rd-1;i++) { y=sizeAge_Data[i](1); if(y>endyr+20) {N_warn++;warning<<"forecast observations cannot be beyond endyr+20; SS will exit"<=styr) { f=abs(sizeAge_Data[i](3)); if(f==floop) { timing_input(1,3)=sizeAge_Data[i](1,3); get_data_timing(timing_input, timing_constants, timing_i_result, timing_r_result, seasdur, subseasdur_delta, azero_seas, surveytime); Nobs_ms(f)++; j=Nobs_ms(f); // observation counter f=abs(sizeAge_Data[i](3)); t=timing_i_result(2); s=timing_i_result(3); real_month=timing_r_result(1); ALK_time=timing_i_result(5); msz_time_t(f,j)=t; msz_time_ALK(f,j)=ALK_time; if(data_time(ALK_time,f,1)<0.0) // so first occurrence of data at ALK_time,f {data_time(ALK_time,f)(1,3)=timing_r_result(1,3);} // real_month,fraction of season, year.fraction else if (timing_r_result(1) != data_time(ALK_time,f,1)) {N_warn++; warning<<"LEN@AGE: data_month already set for y,m,f: "<nseas) {N_warn++; cout<<" EXIT - see warning "< nseas"<retro_yr) header_ms(f,j,3)=-f; if(sizeAge_Data[i](3)<0) header_ms(f,j,3)=-f; header_ms(f,j,0) = float(y)+0.01*int(100.*(azero_seas(s)+seasdur_half(s))); // gen_ms(f,j)=sizeAge_Data[i](4); mkt_ms(f,j)=sizeAge_Data[i](5); if(abs(sizeAge_Data[i](6))>N_ageerr) { N_warn++;cout<<" EXIT - see warning "<0) { do { dvector tempvec(1,3); *(ad_comm::global_datafile) >> tempvec(1,3); if(tempvec(1)==-9999.) ender=1; if(tempvec(1)>j) j=tempvec(1); env_temp.push_back (tempvec(1,3)); } while (ender==0); N_envdata=env_temp.size()-1; echoinput<<" successful read of "<0) echoinput<0) echoinput<0) echoinput<0) echoinput<0) echoinput<0) { SzFreq_HaveObs2.initialize(); for (k=1;k<=SzFreq_Nmeth;k++) { if(SzFreq_units(k)==1 && SzFreq_scale(k)>2) { N_warn++; cout<<" EXIT - see warning "<0) echoinput<<" SizeFreq bins-raw "<0) { for (k=1;k<=SzFreq_Nmeth;k++) { // set flag for accumulating, or not, fish from small pop len bins up into first SzFreq data bin // if first bin is positive, then fish smaller than that bin are ignored (omitsmall set =1) // if first bin is negative, then smaller fish are accumulated up into that first bin SzFreq_Omit_Small(k)=1; if(SzFreq_bins1(k,1)<0) { SzFreq_Omit_Small(k)=-1; SzFreq_bins1(k,1)*=-1; // make this positive for use in model, then write out as negative in data.ss_new } SzFreq_bins(k)(1,SzFreq_Nbins(k))=SzFreq_bins1(k)(1,SzFreq_Nbins(k)); if(gender==2) { for (j=1;j<=SzFreq_Nbins(k);j++) { SzFreq_bins(k,j+SzFreq_Nbins(k))=SzFreq_bins1(k,j); } } if(SzFreq_scale(k)==2) // convert from lbs to kg { SzFreq_bins(k)*=0.4536; } else if (SzFreq_scale(k)==4) // convert from inches to cm { SzFreq_bins(k)*=2.54; } SzFreq_bins2(k,0)=0.; SzFreq_bins2(k)(1,SzFreq_Nbins(k))=SzFreq_bins(k)(1,SzFreq_Nbins(k)); if(gender==2) { SzFreq_bins2(k,SzFreq_Nbins(k)+1)=0.; for (j=1;j<=SzFreq_Nbins(k);j++) {SzFreq_bins2(k,j+SzFreq_Nbins(k)+1)=SzFreq_bins2(k,j);} } for (z=1;z<=SzFreq_Nbins(k);z++) { if(z0) { g=0; for (k=1;k<=SzFreq_Nmeth;k++) for (j=1;j<=SzFreq_nobs(k);j++) {g++; SzFreq_Setup(g)=7+gender*SzFreq_Nbins(k); SzFreq_Setup2(g)=gender*SzFreq_Nbins(k);} } END_CALCS !!// SS_Label_Info_2.11.2 #Read size comp observations into a ragged array !!// , with the number of elements for each obs stored in sizefreq_setup !!// unlike the size and agecomp, obs from all fleets are in one dimension, rather than having a dimension for fleet !!// to do super-period, obs must be sorted by fleet and time within each method init_matrix SzFreq_obs1(1,SzFreq_totobs,1,SzFreq_Setup); !!if(SzFreq_totobs>0) echoinput<<" first sizefreq obs "< // SzFreq_obs_hdr: 1=y; 2=month; 3=f; 4=gender; 5=partition; 6=method&skip flag; 7=first bin to use; 8=last bin(e.g. to include males or not); 9=flag to indicate transition matrix needs calculation vector SzFreq_sampleN(1,SzFreq_totobs); vector SzFreq_effN(1,SzFreq_totobs) vector SzFreq_eachlike(1,SzFreq_totobs); matrix SzFreq_obs(1,SzFreq_totobs,1,SzFreq_Setup2); imatrix SzFreq_LikeComponent(1,Nfleet,1,SzFreq_Nmeth) number N_suprper_SzFreq // no real need to keep track of these by method, so just use a number LOCAL_CALCS SzFreq_N_Like=0; N_suprper_SzFreq=0; if(SzFreq_Nmeth>0) { SzFreq_LikeComponent.initialize(); SzFreq_obs.initialize(); iobs=0; for (k=1;k<=SzFreq_Nmeth;k++) { for (j=1;j<=SzFreq_nobs(k);j++) { // if(y>=styr && y<=retro_yr) // not used because all obs in one list iobs++; for (z=1;z<=5;z++) {SzFreq_obs_hdr(iobs,z) = SzFreq_obs1(iobs,z+1);} SzFreq_sampleN(iobs) = SzFreq_obs1(iobs,7); if(SzFreq_obs1(iobs,3)<0) N_suprper_SzFreq++; // count the number of superperiod start/stops if(SzFreq_obs_hdr(iobs,4)==3) // both genders { for (z=1;z<=SzFreq_Setup2(iobs);z++) {SzFreq_obs(iobs,z)=SzFreq_obs1(iobs,7+z);} } else if(SzFreq_obs_hdr(iobs,4)<=1) // combined gender or female only { for (z=1;z<=SzFreq_Nbins(k);z++) {SzFreq_obs(iobs,z)=SzFreq_obs1(iobs,7+z);} } else // male only { for (z=SzFreq_Nbins(k)+1;z<=SzFreq_Setup2(iobs);z++) {SzFreq_obs(iobs,z)=SzFreq_obs1(iobs,7+z);} } if(gender==1) SzFreq_obs_hdr(iobs,4)=1; // just in case if(sum(SzFreq_obs(iobs))<=0.0) {N_warn++; cout<<" EXIT - see warning "<endyr+20) {N_warn++;warning<<"forecast observations cannot be beyond endyr+20; SS will exit"<retro_yr) SzFreq_obs_hdr(iobs,3)=-f; t=timing_i_result(2); if(gender==1) {SzFreq_obs_hdr(iobs,4)=0;} z=SzFreq_obs_hdr(iobs,4); // gender // get min and max index according to use of 0, 1, 2, 3 gender index if(z!=2) {SzFreq_obs_hdr(iobs,7)=1;} else {SzFreq_obs_hdr(iobs,7)=SzFreq_Nbins(k)+1;} if(z<=1) {SzFreq_obs_hdr(iobs,8)=SzFreq_Nbins(k);} else {SzFreq_obs_hdr(iobs,8)=2*SzFreq_Nbins(k);} // SzFreq_obs_hdr(iobs,5); // partition SzFreq_obs_hdr(iobs,6)=k; if(k!=SzFreq_obs1(iobs,1)) {N_warn++; warning<<" sizefreq ID # doesn't match "<=styr) { ALK_time=timing_i_result(5); real_month=timing_r_result(1); SzFreq_time_t(iobs)=t; SzFreq_time_ALK(iobs)=ALK_time; SzFreq_LikeComponent(f,k)=1; // indicates that this combination is being used if(SzFreq_HaveObs2(k,ALK_time)==0) // transition matrix needs calculation { SzFreq_HaveObs2(k,ALK_time)=1; // flad showing condition met SzFreq_obs_hdr(iobs,9)=1; // flag that will be ehecked in ss_expval } if(data_time(ALK_time,f,1)<0.0) // so first occurrence of data at ALK_time,f {data_time(ALK_time,f)(1,3)=timing_r_result(1,3);} // real_month,fraction of season, year.fraction else if (timing_r_result(1) != data_time(ALK_time,f,1)) {N_warn++; warning<<"SIZE: data_month already set for y,m,f: "<0) { j=N_suprper_SzFreq/2; // because we counted the begin and end if(2*j!=N_suprper_SzFreq) { N_warn++; cout<<" EXIT - see warning "<0) { SzFreq_like_base.initialize(); suprper_SzFreq_start.initialize(); suprper_SzFreq_end.initialize(); suprper_SzFreq_sampwt.initialize(); // N_suprper_SzFreq=0; // redo this counter so can use the counter // count the number of type x methods being used to create vector length for the likelihoods g=0; for (f=1;f<=Nfleet;f++) for (k=1;k<=SzFreq_Nmeth;k++) { if(SzFreq_LikeComponent(f,k)>0) {g++; SzFreq_LikeComponent(f,k)=g;} // so stored value g gives index in list of logL elements } // in_superperiod=0; // for (iobs=1;iobs<=SzFreq_totobs;iobs++) // { // k=SzFreq_obs_hdr(iobs,6); // get the method // f=abs(SzFreq_obs_hdr(iobs,3)); // s=SzFreq_obs_hdr(iobs,2); // sign used to indicate start/stop of super period // if(SzFreq_obs_hdr(iobs,3)>0) // negative for out of range or skip // { // z1=SzFreq_obs_hdr(iobs,7); // z2=SzFreq_obs_hdr(iobs,8); // g=SzFreq_LikeComponent(f,k); // SzFreq_like_base(g)-=SzFreq_sampleN(iobs)*SzFreq_obs(iobs)(z1,z2)*log(SzFreq_obs(iobs)(z1,z2)); // } // identify super-period starts and stops // if(s<0) // start/stop a super-period ALL observations must be continguous in the file // { // if(in_superperiod==0) // { // N_suprper_SzFreq++; // suprper_SzFreq_start(N_suprper_SzFreq)=iobs; // in_superperiod=1; // } // else if(in_superperiod==1) // end a super-period // { // suprper_SzFreq_end(N_suprper_SzFreq)=iobs; // in_superperiod=0; // } // } // } } echoinput<<" finished processing sizefreq data "<0) echoinput<<"sizefreq superperiod start obs: "<0) { Do_TG=1; N_TG=TG_temp(1); N_TG_recap=TG_temp(2); TG_mixperiod=TG_temp(3); TG_maxperiods=TG_temp(4); N_TG2=N_TG; TG_timestart=9999; echoinput<0) { echoinput<<" Tag Releases "<TimeMax) k-=(t+TG_maxperiods-TimeMax); TG_endtime(TG)=k; } } END_CALCS !!// SS_Label_Info_2.12.1 #Store recapture info by TG group and time to follow it as a cohort init_matrix TG_recap_data(1,N_TG_recap,1,5) // TG, year, season, fleet, gender, Number 3darray TG_recap_obs(1,N_TG2,0,TG_endtime,0,Nfleet); // no area index because each fleet is in just one area LOCAL_CALCS if(N_TG>0) { echoinput<<"First row of tag-recapture data "<TG_maxperiods) t=TG_maxperiods; if(t<0) { N_warn++; cout<<" EXIT - see warning "<0.) TG_recap_obs(TG,TG_t)(1,Nfleet)/=TG_recap_obs(TG,TG_t,0); } } } END_CALCS !!// SS_Label_Info_2.13 #Morph composition data init_int Do_Morphcomp !!echoinput<0) { Morphcomp_nobs=mc_temp(1); Morphcomp_nmorph=mc_temp(2); // later compare this value to the n morphs in the control file and exit if different Morphcomp_mincomp=mc_temp(3); echoinput<0) { echoinput<<" morph composition data"<retro_yr) Morphcomp_obs(i,5) = -fabs(Morphcomp_obs(i,5)); Morphcomp_obs(i)(6,5+Morphcomp_nmorph) /= sum(Morphcomp_obs(i)(6,5+Morphcomp_nmorph)); Morphcomp_obs(i)(6,5+Morphcomp_nmorph) += Morphcomp_mincomp; Morphcomp_obs(i)(6,5+Morphcomp_nmorph) /= sum(Morphcomp_obs(i)(6,5+Morphcomp_nmorph)); } } END_CALCS int Do_SelexData; LOCAL_CALCS *(ad_comm::global_datafile) >> Do_SelexData; echoinput<<"Do dataread for selectivity priors(0/1): "<> readline; // reads the line from input stream if(length(readline)>2) { checkchar=readline(1); k=strcmp(checkchar,"#"); checkchar=readline(1,2); j=strcmp(checkchar,"#C"); if(j==0) {N_FC++; Forecast_Comments+=readline;} } } END_CALCS !!echoinput<<"read Do_Benchmark(0/1), then MSY basis(1=F_SPR,2=F_Btarget,3=calcMSY,4=mult*F_endyr)"<0 is an actual year; <=0 is relative to endyr"<=styr) {Bmark_Yr(i)=Bmark_Yr_rd(i);} else if(Bmark_Yr_rd(i)<=0) {Bmark_Yr(i)=endyr+Bmark_Yr_rd(i);} else { N_warn++;Bmark_Yr(i)=styr;warning<<"benchmark year less than styr; reset to equal styr"<0) { // Fcast_Input(1,k)=Fcast_Input_rd(1,k); // k=0; // k++; echoinput<> N_Fcast_Yrs; echoinput<0 && N_Fcast_Yrs<=0) {N_warn++; cout<<"Critical error in forecast input, see warning"<0 && STD_Yr_max==-1) {N_warn++; warning<<"note: Std_yrmax=-1 in starter, so no variance output for forecast quantities after endyr+1 "<> Fcast_Flevel; echoinput<> Fcast_yr_rd(1,6); // k++; Fcast_yr(1)=int(Fcast_Input(k)); // k++; Fcast_yr(2)=int(Fcast_Input(k)); // k++; Fcast_yr(3)=int(Fcast_Input(k)); // k++; Fcast_yr(4)=int(Fcast_Input(k)); // k++; Fcast_yr(5)=int(Fcast_Input(k)); // k++; Fcast_yr(6)=int(Fcast_Input(k)); echoinput<0) {Fcast_yr(i)=Fcast_yr(i);} else {Fcast_yr(i)=endyr+Fcast_yr(i);} } Fcast_Sel_yr1=Fcast_yr(1); Fcast_Sel_yr2=Fcast_yr(2); Fcast_RelF_yr1=Fcast_yr(3); Fcast_RelF_yr2=Fcast_yr(4); Fcast_Rec_yr1=Fcast_yr(5); Fcast_Rec_yr2=Fcast_yr(6); echoinput<> Fcast_Specify_Selex; echoinput<> HarvestPolicy; echoinput<> H4010_top; echoinput<> H4010_bot; echoinput<> H4010_scale_rd; H4010_scale=H4010_scale_rd; echoinput< control rule bottom "<1.0) {N_warn++; warning<<" Sure you want control rule scalar > 1.0? "<> tempvec(1,2); if(tempvec(1)<0.0) ender=1; H4010_scale_vec_rd.push_back (tempvec(1,2)); echoinput<<" H4010 read: "<> Fcast_Loop_Control(1,5); echoinput<> Fcast_Cap_FirstYear; echoinput<> Impl_Error_Std; echoinput<0.0) Do_Impl_Error=1; echoinput<> Do_Rebuilder; echoinput<> Rebuild_Ydecl; echoinput<> Rebuild_Yinit; echoinput<> Fcast_RelF_Basis; echoinput<> Fcast_Catch_Basis; echoinput<6) {N_warn++; warning<<"illegal value for Fcast_Catch_Basis"<> tempvec(1,3); echoinput<0) { echoinput<> tempvec(1,2); echoinput<> tempvec(1,2); echoinput<> tempvec(1,2); echoinput<0) { echoinput<<"# now read fraction of catch for each identified allocation group "<> tempvec(1,k); if(tempvec(1)==-9999.) ender=1; Fcast_Catch_Allocation_list.push_back (tempvec(1,k)); echoinput<<" allocation assignment: "<> Fcast_InputCatch_Basis; echoinput<> tempvec(1,j); if(tempvec(1)==-9999.) ender=1; Fcast_InputCatch_list.push_back (tempvec(1,j)); echoinput<0) { if(N_Fcast_Input_Catches>0) { for (t=k1;t<=y;t++) for (f=1;f<=Nfleet;f++) {Fcast_InputCatch(t,f,1)=-1;} for (i=0;i<=N_Fcast_Input_Catches-1;i++) { echoinput<endyr && y<=YrMax && fleet_type(f)<=2) { t=styr+(y-styr)*nseas +s-1; Fcast_InputCatch(t,f,1)=Fcast_InputCatch_rd(i+1,4); if(y>=Fcast_Cap_FirstYear) {N_warn++;warning<<"Input catches in "<=0.0) { H4010_scale_vec=H4010_scale_rd; } else { j=H4010_scale_vec_rd.size()-1; for (int s=0; s<=j-1; s++) { y=H4010_scale_vec_rd[s](1); echoinput<endyr) {N_warn++; warning<<" "<0 && Do_Forecast_rd<=0) {N_warn++; cout<<" EXIT - see warning "<=1 && Do_Forecast_rd<=3) {Do_Benchmark=1; N_warn++; warning<<" Turn Benchmark on because Forecast needs it"<0) {F_std_basis=0; N_warn++; warning<<" Set F_std_basis=0 because no benchmark or forecast"<=1 && SPR_reporting<=3) {SPR_reporting=4; N_warn++; warning<<" Change SPR_reporting to 4 because benchmarks are off"<Fcast_Sel_yr2) {N_warn++; cout<<" EXIT - see warning "<endyr || Fcast_Sel_yr1endyr || Fcast_Sel_yr2Fcast_Rec_yr2) {N_warn++; cout<<" EXIT - see warning "<endyr || Fcast_Rec_yr1endyr || Fcast_Rec_yr20 && fif!=999) {cout<<" EXIT, must have 999 to verify end of forecast inputs "<0) { env_data_RD=0.; for (i=0;i<=N_envdata-1;i++) if(env_temp[i](1)>=(styr-1) && env_temp[i](1)<=YrMax) {env_data_RD(env_temp[i](1), env_temp[i](2) ) = env_temp[i](3);} } END_CALCS !!// SS_Label_Info_3.2 #Create complete list of years for STD reporting ivector STD_Yr_Reverse(styr-2,YrMax) ivector STD_Yr_Reverse_Dep(styr-2,YrMax) ivector STD_Yr_Reverse_Ofish(styr-2,YrMax) ivector STD_Yr_Reverse_F(styr-2,YrMax) int N_STD_Yr_Dep; int N_STD_Yr_Ofish; int N_STD_Yr_F; int N_STD_Mgmt_Quant; LOCAL_CALCS if(STD_Yr_min<0 || STD_Yr_min<(styr-2) ) STD_Yr_min=styr-2; if(STD_Yr_max==-1) STD_Yr_max=endyr+1; if(STD_Yr_max==-2) STD_Yr_max=YrMax; if(STD_Yr_max>YrMax) STD_Yr_max=YrMax; STD_Yr_Reverse.initialize(); for (y=STD_Yr_min;y<=STD_Yr_max;y++) {STD_Yr_Reverse(y)=1;} STD_Yr_Reverse(styr-2)=1; STD_Yr_Reverse(styr-1)=1; STD_Yr_Reverse(styr)=1; for (i=1;i<=N_STD_Yr_RD;i++) {if(STD_Yr_RD(i)>=styr && STD_Yr_RD(i)0) { j++; STD_Yr_Reverse(y)=j; // use for SPB and recruitment if(y>=styr) { // depletion must start in year AFTER first catch. It could vary earlier if recdevs happened enough earlier to change spbio, but this is not included if((depletion_basis>0 && y>first_catch_yr) || y==endyr) {N_STD_Yr_Dep++; STD_Yr_Reverse_Dep(y) = N_STD_Yr_Dep; } if(y<=endyr) { if((SPR_reporting>0 && totcat(y)>0.0) || y==endyr) {N_STD_Yr_Ofish++; STD_Yr_Reverse_Ofish(y) = N_STD_Yr_Ofish; } if((F_reporting>0 && totcat(y)>0.0) || y==endyr) {N_STD_Yr_F++; STD_Yr_Reverse_F(y) = N_STD_Yr_F; } } else { if(SPR_reporting>0) {N_STD_Yr_Ofish++; STD_Yr_Reverse_Ofish(y) = N_STD_Yr_Ofish; } if(F_reporting>0) {N_STD_Yr_F++; STD_Yr_Reverse_F(y) = N_STD_Yr_F; } } } } } echoinput<<"Finished creating STD containers and indexes "<> readline; // reads the line from input stream if(length(readline)>2) { checkchar=readline(1); k=strcmp(checkchar,"#"); checkchar=readline(1,2); j=strcmp(checkchar,"#C"); if(j==0) {N_CC++; Control_Comments+=readline;} } } END_CALCS // when a parameter is defined and its label (hence usage) is created, // the value of its min, max, init, prior have not yet been read // so when it gets created, need to pushback a code to indicate what special conditions affect it // also may want to save indicator of whether the parameter is multiplier, logit, etc. // so pushback a code to the ivector Parm_minmax // and add a string to the adstring_array Parm_info ivector minmax_types(1,10) // set of canned min-max types !!// SS_Label_Info_4.2 #Read info for growth patterns, gender, settlement events, platoons init_int WTage_rd // 0 means do not read wtatage.ss; 1 means read and use wtatage.ss and also read and use growth parameters // future option 2 will suppress reading and use of growth init_int N_GP // number of growth patterns (morphs) !!echoinput<0 && nobs_mnwt>0) {N_warn++; warning<<"incompatible option: empirical bodywt-at-age is used, but meanbody_wt obs fit using growth curve"<1) { *(ad_comm::global_datafile) >> sd_ratio; *(ad_comm::global_datafile) >> platoon_distr; echoinput<1) { sd_within_platoon = sd_ratio * sqrt(1. / (1. + sd_ratio*sd_ratio)); sd_between_platoon = sqrt(1. / (1. + sd_ratio*sd_ratio)); } else {sd_within_platoon=1; sd_between_platoon=0.000001;} if(N_platoon==1) {ishadow(1)=0; shadow(1)=0.;} else if (N_platoon==3) {ishadow.fill_seqadd(-1,1); shadow.fill_seqadd(-1.,1.);} else if (N_platoon==5) {ishadow.fill_seqadd(-2,1); shadow.fill_seqadd(-2.,1.);} else {N_warn++; cout<<" EXIT - see warning "<=0) int N_settle_assignments_rd // number read, needed to distinguish between ss3.24 and SS3.30 setup int N_settle_timings // number of recruitment settlement timings per spawning (>=1) - important for number of morphs calculation // will be calculated from the number of unique settle_months among the settle_assignments int settle // index to settle_assignments int settle_time // index to setting timings int Comp_Err_Parm_Start int recr_dist_inx LOCAL_CALCS *(ad_comm::global_datafile) >> recr_dist_method; echoinput<> recr_dist_area; echoinput<> N_settle_assignments_rd; *(ad_comm::global_datafile) >> recr_dist_inx; N_settle_assignments=N_settle_assignments_rd; break; } case 2: { *(ad_comm::global_datafile) >> N_settle_assignments; *(ad_comm::global_datafile) >> recr_dist_inx; break; } case 3: { *(ad_comm::global_datafile) >> N_settle_assignments; *(ad_comm::global_datafile) >> recr_dist_inx; break; } case 4: { *(ad_comm::global_datafile) >> N_settle_assignments; *(ad_comm::global_datafile) >> recr_dist_inx; break; } } echoinput<=0) "<> settlement_pattern_rd; echoinput<<" settlement pattern as read "<0) { for (settle=1;settle<=N_settle_assignments;settle++) { gp=settlement_pattern_rd(settle,1); // growth patterns p=settlement_pattern_rd(settle,3); // settlement area settle_time=settle_assignments_timing(settle); Settle_age(settle_time)=settlement_pattern_rd(settle,4); // settlement age as read recr_dist_pattern(gp,settle_time,p)=1; // indicates that settlement will occur here recr_dist_pattern(gp,settle_time,0)=1; // for growth updating Settle_month(settle_time)=settle_timings_tempvec(settle_time); // Settle_month(settle_time)=settle_timings_tempvec(settle); } for (settle_time=1;settle_time<=N_settle_timings;settle_time++) { j=0; // temp value for calculated settlement age if(spawn_month>Settle_month(settle_time)) { k=1; j++; // so sets season 1 as earliest possible settlement at age 1 } else { k=spawn_seas; // earliest possible season for settlement at age 0 } temp=azero_seas(k); // annual elapsed time fraction at begin of this season Settle_timing_seas(settle_time)=(Settle_month(settle_time)-1.0)/sumseas; // fraction of year at settlement month while((temp+seasdur(k))<=Settle_timing_seas(settle_time)) { temp+=seasdur(k); if(k==nseas) {k=1; j++;} else {k++;} } if(j!=Settle_age(settle_time)) { N_warn++; warning<<"settle_month is less than spawn_month, so logical age at settlement calculated to be: "<0.0) {N_warn++; cout<<"see warning for fatal input issue"< one year for (p=1;p<=pop;p++) { if(recr_dist_pattern(gp,settle,p)>0.) { use_morph(g)=1; } } if(use_morph(g)==1) { if( (N_platoon==1) || (N_platoon==3 && gp2==2) || (N_platoon==5 && gp2==3) ) g_finder(gp,gg)=g; // finds g for a given GP and gender and last birstseason } echoinput<=(azero_G(g)+Settle_age(settle_time))) { real_age(g,ALK_idx,a)=calen_age(g,ALK_idx,a)-azero_G(g)-Settle_age(settle_time); keep_age(g,ALK_idx,a)=1.; } else { real_age(g,ALK_idx,a)=0.; keep_age(g,ALK_idx,a)=0.; } } else { real_age(g,ALK_idx,a)=calen_age(g,ALK_idx,a)-azero_G(g)-Settle_age(settle_time); keep_age(g,ALK_idx,a)=1.; } if(a<4) echoinput<0) { for (TG=1;TG<=N_TG;TG++) { for (g=1;g<=gmorph;g++) { if(TG_release(TG,6)>2) {N_warn++; warning<<" gender for tag groups must be 0, 1 or 2 "<0 && (TG_release(TG,6)==0 || TG_release(TG,6)==sx(g))) TG_use_morph(TG,g)=1; } } } END_CALCS !!// SS_Label_Info_4.3 #Define movement between areas int do_migration // number of explicit movements to define number migr_firstage matrix migr_start(1,nseas,1,N_GP) LOCAL_CALCS migr_firstage=0.0; do_migration=0; if (pop>1) { *(ad_comm::global_datafile) >> do_migration; echoinput<0) { *(ad_comm::global_datafile) >> migr_firstage; echoinput<0) { echoinput<<" migration setup "<0) { if(GP4(g)==gp && firstBseas(gp)==0) firstBseas(gp)=Bseas(g); } } for (g=1;g<=gmorph;g++) if(use_morph(g)>0 && firstBseas(GP4(g))==Bseas(g)) { for (s=1;s<=nseas;s++) for (subseas=1;subseas<=N_subseas;subseas++) { a=0; ALK_idx=(s-1)*N_subseas+subseas; while(real_age(g,ALK_idx,a)0) { for (k=1;k<=do_migration;k++) {move_def2(k)=move_def(k);} k=do_migration; for (s=1;s<=nseas;s++) for (gp=1;gp<=N_GP;gp++) for (p=1;p<=pop;p++) { if(move_pattern(s,gp,p,p)>do_migration) { k++; move_def2(k,1)=s; move_def2(k,2)=gp; move_def2(k,3)=p; move_def2(k,4)=p; move_def2(k,5)=0; move_def2(k,6)=nages; } } echoinput<<"move_def "<> N_Block_Designs; echoinput<0) { Nblk.deallocate(); Nblk.allocate(1,N_Block_Designs); *(ad_comm::global_datafile) >>Nblk(1,N_Block_Designs); echoinput<> Block_Design(j)(1,Nblk2(j)); echoinput<<" block design #: "<retro_yr+1) {N_warn++; warning<<"Block:"<retro_yr+1) {N_warn++; warning<<"Block:"<YrMax) {N_warn++; warning<<"Block:"< YrMax: "<YrMax) {N_warn++; warning<<"Block:"<=3) {k1=N_GP*gender;} // for reading age_natmort } END_CALCS init_vector NatM_break(1,k); // these breakpoints only get read for natM_type=1 !!if(k>0) echoinput<0) echoinput<<" Age_NatMort "<=3 && Grow_type<=5) {do_ageK=1; k=5;} // number of ages for age-specific K init_vector tempvec5(1,k) int Age_K_count; LOCAL_CALCS Age_K_count=0; if(k>0) echoinput<nages) AFIX2_forCV=nages; AFIX_delta=AFIX2-AFIX; if(AFIX!=0.0) {AFIX_plus=AFIX;} else {AFIX_plus=1.0e-06;} N_M_Grow_parms=N_natMparms+N_growparms; lin_grow.initialize(); echoinput<<"g a seas subseas ALK_idx real_age calen_age lin_grow first_grow_age"<0) { for (a=0;a<=nages;a++) { for (s=1;s<=nseas;s++) for (subseas=1;subseas<=N_subseas;subseas++) { ALK_idx=(s-1)*N_subseas+subseas; // if(a==0 && s0) echoinput<<"Age-specific_K_points"<0) echoinput<<" Len_At_Age_rd"<1) { if(Grow_type==3) { for(j=2;j<=Age_K_count;j++) { if(Age_K_points(j)<=Age_K_points(j-1)) {N_warn++; warning<<"EXIT: age K points must be unique and ascending order "<=Age_K_points(j-1)) {N_warn++; warning<<"EXIT: age K points must be unique and decending order "<0) echoinput<<" read Age_Maturity for each GP"<0) echoinput<<" read Length_Maturity for each GP"<5) {N_warn++; cout<<" EXIT - see warning "<0) { Hermaphro_seas=Hermaphro_more(1); Hermaphro_maleSPB=Hermaphro_more(2); echoinput<3) { N_warn++; cout<<" EXIT - see warning "< 3.30 dome-shaped retention replace with ivector N_retparm() // SS_Label_Info_4.5.3 #Set up indexing and parameter names for MG parameters for (gg=1;gg<=gender;gg++) { for (gp=1;gp<=N_GP;gp++) { MGparm_point(gg,gp)=ParCount+1; // starting pointer for (k=1;k<=N_natMparms;k++) { ParCount++; onenum=" "; sprintf(onenum, "%d", k); ParmLabel+="NatM_p_"+onenum+"_"+GenderLbl(gg)+GP_Lbl(gp); Parm_info+="val"; Parm_minmax.push_back (3); } switch (Grow_type) { case 1: { ParmLabel+="L_at_Amin_"+GenderLbl(gg)+GP_Lbl(gp); Parm_info+="val"; Parm_minmax.push_back (3); ParmLabel+="L_at_Amax_"+GenderLbl(gg)+GP_Lbl(gp); Parm_info+="val"; Parm_minmax.push_back (2); ParmLabel+="VonBert_K_"+GenderLbl(gg)+GP_Lbl(gp); Parm_info+="val"; Parm_minmax.push_back (1); ParCount+=3; break; } case 2: { ParmLabel+="L_at_Amin_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="L_at_Amax_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="VonBert_K_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="Richards_"+GenderLbl(gg)+GP_Lbl(gp); ParCount+=4; break; } case 3: { ParmLabel+="L_at_Amin_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="L_at_Amax_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="VonBert_K_young_"+GenderLbl(gg)+GP_Lbl(gp); ParCount+=3; for (a=1;a<=Age_K_count;a++) { ParmLabel+="Age_K_mult_"+GenderLbl(gg)+GP_Lbl(gp)+"_a_"+NumLbl(Age_K_points(a)); ParCount++; } break; } case 4: { ParmLabel+="L_at_Amin_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="L_at_Amax_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="VonBert_K_old_"+GenderLbl(gg)+GP_Lbl(gp); ParCount+=3; for (a=1;a<=Age_K_count;a++) { ParmLabel+="Age_K_mult_"+GenderLbl(gg)+GP_Lbl(gp)+"_a_"+NumLbl(Age_K_points(a)); ParCount++; } break; } case 5: { ParmLabel+="L_at_Amin_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="L_at_Amax_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="VonBert_K_old_"+GenderLbl(gg)+GP_Lbl(gp); ParCount+=3; for (a=1;a<=Age_K_count;a++) { ParmLabel+="Age_K_each_"+GenderLbl(gg)+GP_Lbl(gp)+"_a_"+NumLbl(Age_K_points(a)); ParCount++; } break; } case 8: { ParmLabel+="L_at_Amin_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="Linf_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="VonBert_K_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="Cessation_"+GenderLbl(gg)+GP_Lbl(gp); ParCount+=4; break; } } // init_int CV_depvar // select CV_growth pattern; 0 CV=f(LAA); 1 CV=F(A); 2 SD=F(LAA); 3 SD=F(A); 4 logSD=f(A) if(CV_depvar<=1) {ParmLabel+="CV_young_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="CV_old_"+GenderLbl(gg)+GP_Lbl(gp);} else if(CV_depvar<=3) {ParmLabel+="SD_young_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="SD_old_"+GenderLbl(gg)+GP_Lbl(gp);} else {ParmLabel+="lnSD_young_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="LnSD_old_"+GenderLbl(gg)+GP_Lbl(gp);} ParCount+=2; ParmLabel+="Wtlen_1_"+GenderLbl(gg)+GP_Lbl(gp); ParmLabel+="Wtlen_2_"+GenderLbl(gg)+GP_Lbl(gp); ParCount+=2; if(gg==1) // add parms for maturity and fecundity for females only { ParmLabel+="Mat50%_"+GenderLbl(1)+GP_Lbl(gp); ParmLabel+="Mat_slope_"+GenderLbl(1)+GP_Lbl(gp); ParCount+=2; if(Fecund_Option==1) { ParmLabel+="Eggs/kg_inter_"+GenderLbl(1)+GP_Lbl(gp); ParmLabel+="Eggs/kg_slope_wt_"+GenderLbl(1)+GP_Lbl(gp); ParCount+=2; } else if(Fecund_Option==2) { ParmLabel+="Eggs_scalar_"+GenderLbl(1)+GP_Lbl(gp); ParmLabel+="Eggs_exp_len_"+GenderLbl(1)+GP_Lbl(gp); ParCount+=2; } else if(Fecund_Option==3) { ParmLabel+="Eggs_scalar_"+GenderLbl(1)+GP_Lbl(gp); ParmLabel+="Eggs_exp_wt_"+GenderLbl(1)+GP_Lbl(gp); ParCount+=2; } else if(Fecund_Option==4) { ParmLabel+="Eggs_intercept_"+GenderLbl(1)+GP_Lbl(gp); ParmLabel+="Eggs_slope_len_"+GenderLbl(1)+GP_Lbl(gp); ParCount+=2; } else if(Fecund_Option==5) { ParmLabel+="Eggs_intercept_"+GenderLbl(1)+GP_Lbl(gp); ParmLabel+="Eggs_slope_Wt_"+GenderLbl(1)+GP_Lbl(gp); ParCount+=2; } } } } if(Hermaphro_Option==1 || Hermaphro_Option==-1) { MGparm_Hermaphro=ParCount+1; // pointer to first hermaphroditism parameter ParmLabel+="Herm_Infl_age"; ParmLabel+="Herm_stdev"; ParmLabel+="Herm_asymptote"; ParCount+=3; } recr_dist_parms = ParCount+1; // pointer to first recruitment distribution parameter switch (recr_dist_method) { case 2: // new method with main effects only { for (k=1;k<=N_GP;k++) {ParCount++; ParmLabel+="RecrDist_GP_"+NumLbl(k);} for (k=1;k<=pop;k++) {ParCount++; ParmLabel+="RecrDist_Area_"+NumLbl(k);} for (k=1;k<=N_settle_timings;k++){ParCount++; ParmLabel+="RecrDist_month_"+NumLbl(Settle_month(k));} break; } case 3: // new method with parm for each settlement { for (s=1;s<=N_settle_assignments;s++) {ParCount++; gp=settlement_pattern_rd(s,1); // growth patterns p=settlement_pattern_rd(s,3); // settlement area settle_time=settle_assignments_timing(s); ParmLabel+="RecrDist_GP_"+NumLbl(gp)+"_area_"+NumLbl(p)+"_month_"+NumLbl(Settle_month(settle_time));} break; } case 4: // no distribution of recruitments { break; } } MGP_CGD=ParCount+1; // pointer to cohort growth deviation base parameter ParCount++; ParmLabel+="CohortGrowDev"; if(do_migration>0) { for (k=1;k<=do_migration;k++) { s=move_def(k,1); gp=move_def(k,2); p=move_def(k,3); p2=move_def(k,4); ParCount++; ParmLabel+="MoveParm_A_seas_"+NumLbl(s)+GP_Lbl(gp)+"from_"+NumLbl(p)+"to_"+NumLbl(p2); ParCount++; ParmLabel+="MoveParm_B_seas_"+NumLbl(s)+GP_Lbl(gp)+"from_"+NumLbl(p)+"to_"+NumLbl(p2); } } if(Use_AgeKeyZero>0) { AgeKeyParm=ParCount+1; for (k=1;k<=7;k++) { ParCount++; ParmLabel+="AgeKeyParm"+NumLbl(k); } } catch_mult_pointer=-1; j=sum(need_catch_mult); // number of fleets needing a catch multiplier parameter if(j>0) {catch_mult_pointer=ParCount+1;} for(j=1;j<=Nfleet;j++) { if(need_catch_mult(j)==1) { ParCount++; ParmLabel+="Catch_Mult:_"+NumLbl(j)+"_"+fleetname(j); } } frac_female_pointer=ParCount+1; for(gp=1;gp<=N_GP;gp++) { ParCount++; ParmLabel+="FracFemale_GP_"+NumLbl(gp); } N_MGparm=ParCount; END_CALCS init_matrix MGparm_1(1,N_MGparm,1,14) // matrix with natmort and growth parms controls ivector MGparm_offset(1,N_MGparm) LOCAL_CALCS //set base parm for cohort growth dev to permissable values if(MGparm_1(MGP_CGD,3)==0 || (MGparm_1(MGP_CGD,1)==MGparm_1(MGP_CGD,2))) { MGparm_1(MGP_CGD,1)=0.1; //min MGparm_1(MGP_CGD,2)=10.; //max MGparm_1(MGP_CGD,3)=1.; //init MGparm_1(MGP_CGD,4)=1.; //prior MGparm_1(MGP_CGD,5)=1.; // prior_sd MGparm_1(MGP_CGD,6)=0.; // prior type MGparm_1(MGP_CGD,7)=-1.; // phase } echoinput<<" Biology base parameter setup "<0) varparm_estimated(1)=1; if(MGparm_1(kk,8)!=0 || MGparm_1(kk,9)!=0 || MGparm_1(kk,13)!=0) {N_warn++; cout<<"see fatal warning"<0) varparm_estimated(1)=1; // for CV_young // if(MGparm_1(Ip+N_growparms-1,7)>0) varparm_estimated(1)=1; // for CV_old Ip=Ip+N_growparms; mgp_type(Ip,Ip+1)=3; // wtlen Ip+=2; if(gg==1) {mgp_type(Ip,Ip+3)=3; Ip+=4;} // maturity and fecundity } if(Hermaphro_Option!=0) {mgp_type(MGparm_Hermaphro,MGparm_Hermaphro+2)=3;} // herma parameters done with wtlen and fecundity if(recr_dist_method<4) mgp_type(Ip,MGP_CGD-1)=4; // recruit apportionments mgp_type(MGP_CGD)=2; // cohort growth dev if(do_migration>0) mgp_type(MGP_CGD+1,N_MGparm)=5; // note that it fills until end of MGparm list, but some get overwritten if(Use_AgeKeyZero>0) mgp_type(AgeKeyParm,N_MGparm)=6; if(catch_mult_pointer>0) mgp_type(catch_mult_pointer,N_MGparm)=7; for(f=frac_female_pointer; f<=frac_female_pointer+N_GP-1;f++) mgp_type(f)=4; echoinput<<"mgparm_type for each parm: 1=M; 2=growth; 3=wtlen,mat,fec,hermo; 4=recr&femfrac; 5=migr; 6=ageerror; 7=catchmult"<0) // env variable used { timevary_setup(7)=int(abs(MGparm_1(j,8)))-k*100; k=timevary_setup(7); for(y=styr-1;y<=YrMax;y++) env_data_pass(y)=env_data_RD(y,k); } else // density-dependence { timevary_setup(7)=-int(abs(MGparm_1(j,8))-k*100); do_densitydependent=1; k=0; env_data_pass.initialize(); } if(z>0) // doing blocks { if(z>N_Block_Designs) {N_warn++; cout<<"Fatal_input_error, see warning"<0 && y0) { MG_active(f)=1; timevary_MG(y,0)=1; // tracks active status for all MG types } } } END_CALCS !!// SS_Label_Info_4.5.7 #Set up seasonal effects for MG parms init_ivector MGparm_seas_effects(1,10) // femwtlen1, femwtlen2, mat1, mat2, fec1 fec2 Malewtlen1, malewtlen2 L1 K int MGparm_doseas int N_MGparm_seas // number of MGparms that use seasonal effects LOCAL_CALCS adstring_array MGseasLbl; MGseasLbl+="F-WL1"+CRLF(1); MGseasLbl+="F-WL2"+CRLF(1); MGseasLbl+="F-Mat1"+CRLF(1); MGseasLbl+="F-Mat1"+CRLF(1); MGseasLbl+="F-Fec1"+CRLF(1); MGseasLbl+="F-Fec1"+CRLF(1); MGseasLbl+="M-WL1"+CRLF(1); MGseasLbl+="M-WL2"+CRLF(1); MGseasLbl+="L1"+CRLF(1); MGseasLbl+="VBK"+CRLF(1); MGparm_doseas=sum(MGparm_seas_effects); N_MGparm_seas=0; // counter for assigned parms if(MGparm_doseas>0) { for (j=1;j<=10;j++) { if(MGparm_seas_effects(j)>0) { MGparm_seas_effects(j)=N_MGparm+timevary_parm_cnt_MG+N_MGparm_seas; // store base parameter count for (s=1;s<=nseas;s++) { N_MGparm_seas++; ParCount++; ParmLabel+=MGseasLbl(j)+"_seas_"+NumLbl(s); } } } echoinput<0) echoinput<<" MGparm_seas"<0) {MG_active(mgp_type(f))=1;} } if(natM_type==2 && MG_active(2)>0) MG_active(1)=1; // lorenzen M depends on growth j=N_MGparm; if(timevary_parm_cnt_MG>0) for (f=timevary_parm_start_MG;f<=timevary_parm_cnt_MG;f++) { j++; MGparm_LO(j)=timevary_parm_rd[f](1); MGparm_HI(j)=timevary_parm_rd[f](2); MGparm_RD(j)=timevary_parm_rd[f](3); MGparm_PR(j)=timevary_parm_rd[f](4); MGparm_CV(j)=timevary_parm_rd[f](5); MGparm_PRtype(j)=timevary_parm_rd[f](6); MGparm_PH(j)=timevary_parm_rd[f](7); } if(N_MGparm_seas>0) for (f=1;f<=N_MGparm_seas;f++) { j++; MGparm_LO(j)=MGparm_seas_1(f,1); MGparm_HI(j)=MGparm_seas_1(f,2); MGparm_RD(j)=MGparm_seas_1(f,3); MGparm_PR(j)=MGparm_seas_1(f,4); MGparm_CV(j)=MGparm_seas_1(f,5); MGparm_PRtype(j)=MGparm_seas_1(f,6); MGparm_PH(j)=MGparm_seas_1(f,7); } MG_active(0)=sum(MG_active(1,7)); echoinput<<"MG_active "< 0) varparm_estimated(2)=1; // sigmaR is estimated so need sd_offset=1 if(SR_parm_1(N_SRparm2,3)!=0.0 || SR_parm_1(N_SRparm2,7)>0) {SR_autocorr=1;} else {SR_autocorr=0;} // flag for recruitment autocorrelation echoinput<<" Do recruitment_autocorr: "<0) // env variable used { timevary_setup(7)=int(abs(SR_parm_1(j,8)))-k*100; k=timevary_setup(7); for(y=styr-1;y<=YrMax;y++) env_data_pass(y)=env_data_RD(y,k); } else // density-dependence { timevary_setup(7)=-int(abs(SR_parm_1(j,8))-k*100); do_densitydependent=1; k=0; env_data_pass.initialize(); } if(SR_parm_1(j,13)>0) // doing blocks { if(SR_parm_1(j,13)>N_Block_Designs) {N_warn++; cout<<"Fatal_input_error, see warning"<0) { timevary_parm_cnt_SR=timevary_parm_cnt; N_SRparm3+=(timevary_parm_cnt_SR-timevary_parm_start_SR+1); echoinput<<" SR timevary_parm_cnt start and end "<0) { j=N_SRparm2; for (f=timevary_parm_start_SR;f<=timevary_parm_cnt_SR;f++) { j++; echoinput<0) { recdev_options(1,13)=recdev_options_rd(1,13); recdev_early_start_rd=recdev_options(1); recdev_early_PH_rd=recdev_options(2); Fcast_recr_PH_rd=recdev_options(3); Fcast_recr_lambda=recdev_options(4); recdev_adj(1)=recdev_options(5); recdev_adj(2)=recdev_options(6); recdev_adj(3)=recdev_options(7); recdev_adj(4)=recdev_options(8); if(recdev_adj(4)>endyr+1 && do_recdev>0) {N_warn++; warning<<"bias adjustment ramp extends into forecast; biasadj set to 0.0 internally for forecast years"<0) {echoinput<<"#_start of advanced SR options"<endyr) {biasadj_full(y)=0.0;} } echoinput<<"#_recruitment bias adjustment"<0) { for (y=1;y<=recdev_cycle;y++) { ParCount++; sprintf(onenum, "%d", y); ParmLabel+="RecrDev_Cycle_"+onenum+CRLF(1); } } // SS_Label_Info_4.6.4 #Setup recruitment deviations and create parm labels for each year if(recdev_end>retro_yr) recdev_end=retro_yr; if(recdev_start<(styr-nages)) {N_warn++; warning<<" recdev_start: "<=recdev_start) { N_warn++; cout<<" EXIT - see warning "<0) recdev_early_PH_rd=-recdev_early_PH_rd; } else { if(recdev_early_start<0) recdev_early_start+=recdev_start; // do relative to start of recdevs recdev_do_early=1; if(recdev_early_start<(styr-nages)) {recdev_early_start=styr-nages; N_warn++; warning<<" adjusting recdev_early to: "<=styr) { sprintf(onenum, "%d", y); ParmLabel+="Early_RecrDev_"+onenum+CRLF(1); } else { onenum=" "; sprintf(onenum, "%d", styr-y); ParmLabel+="Early_InitAge_"+onenum+CRLF(1); } } } if(do_recdev>0) { for (y=recdev_start;y<=recdev_end;y++) { ParCount++; recdev_doit(y)=1; if(y>=styr) { sprintf(onenum, "%d", y); ParmLabel+="Main_RecrDev_"+onenum+CRLF(1); } else { onenum=" "; sprintf(onenum, "%d", styr-y); ParmLabel+="Main_InitAge_"+onenum+CRLF(1); } } } if(Do_Forecast>0) { for (y=recdev_end+1;y<=YrMax;y++) { recdev_doit(y)=1; sprintf(onenum, "%d", y); ParCount++; if(y>endyr) {ParmLabel+="ForeRecr_"+onenum+CRLF(1);} else {ParmLabel+="Late_RecrDev_"+onenum+CRLF(1);} } for (y=endyr+1;y<=YrMax;y++) { sprintf(onenum, "%d", y); ParCount++; ParmLabel+="Impl_err_"+onenum+CRLF(1); } } END_CALCS !!// SS_Label_Info_4.6.5 #Read recdev_cycle parameters and input recruitment deviations if needed init_matrix recdev_cycle_parm_RD(1,recdev_cycle,1,14); !!k=1; !!if(recdev_cycle>0) k=recdev_cycle; vector recdev_cycle_LO(1,k); vector recdev_cycle_HI(1,k); ivector recdev_cycle_PH(1,k); !!if(recdev_cycle>0) echoinput<<"recruitment cycle input "<0) echoinput<<"recruitment deviation input "<4) { N_warn++; warning<<" ERROR: F_Method must be 1 or 2 or 3 or 4, value is: "<0.999) {N_warn++; cout<<" EXIT - see warning "<1.0 for F_method 2, 3 or 4 "<1) { if(F_Method==2) { echoinput<0) { init_F_LO=column(init_F_parm_1,1); init_F_HI=column(init_F_parm_1,2); init_F_RD=column(init_F_parm_1,3); init_F_PR=column(init_F_parm_1,4); init_F_CV=column(init_F_parm_1,5); init_F_PRtype=column(init_F_parm_1,6); init_F_PH=ivector(column(init_F_parm_1,7)); k=nseas; for (s=1;s<=k;s++) for (f=1;f<=Nfleet;f++) { if(init_F_loc(s,f)>0) { ParCount++; ParmLabel+="InitF_seas_"+NumLbl(s)+"_flt_"+NumLbl(f)+fleetname(f); j=init_F_loc(s,f); if(obs_equ_catch(s,f)<=0.0) { if(init_F_RD(j)>0.0) { N_warn++; warning<0.0 && init_F_RD(j)<=0.0) { N_warn++; cout<<" EXIT - see warning "<0"<0. && fleet_type(f)<=2) { N_Fparm++; sprintf(onenum, "%d", y); ParCount++; do_Fparm(f,t)=N_Fparm; ParmLabel+="F_fleet_"+NumLbl(f)+"_YR_"+onenum+"_s_"+NumLbl(s)+CRLF(1); } } echoinput<<" N F parameters "<0. && fleet_type(f)<=2) { g++; Fparm_loc(g,1)=f; Fparm_loc(g,2)=t; } } if(F_detail>0) { for (k=1;k<=F_detail;k++) { f=F_setup2(k,1); y=F_setup2(k,2); s=F_setup2(k,3); if(y>0) {y1=y; y2=y;} else {y1=-y; y2=endyr;} for(y=y1; y<=y2; y++) { t=styr+(y-styr)*nseas+s-1; j=do_Fparm(f,t); if(j>0 && F_setup2(k,6)!=-999) Fparm_PH(j)=F_setup2(k,6); // used to setup the phase for F_rate if(j>0 && F_setup2(k,5)!=-999) catch_se(t,f)=F_setup2(k,5); // reset the se for this observation } // setup of F_rate values occurs later in the parameter section } } } END_CALCS // SS_Label_Info_4.8 #Read catchability (Q) setup imatrix Q_setup(1,Nfleet,1,5) ivector Q_setup_check(1,Nfleet) imatrix Q_setup_parms(1,Nfleet,1,5) // index of first parameter for: 1=base q with link; 2=extrastd; 3=env; 4=block/trend; 5=dev; int parm330_cnt int Q_Npar2 int Q_Npar int firstQparm; int timevary_parm_cnt_Q; int timevary_parm_start_Q; ivector Q_link(1,10); int depletion_fleet; // stores fleet(survey) number for the fleet that is defined as "depletion" by survey type=34 int depletion_type; // entered by Q_setup(f,2) and stores additional controls for depletion fleet LOCAL_CALCS firstQparm=0; timevary_parm_cnt_Q=0; timevary_parm_start_Q=0; Q_link.initialize(); Q_link(1)=1; // simple q, 1 parm Q_link(2)=1; // mirror simple q, 1 mirrored parameter Q_link(3)=2; // q and power, 2 parm depletion_fleet=0; depletion_type=0; //Q_setup for 3.30 // 1: link type // 2: extra input for link, i.e. mirror fleet or dev_vector index associated with survey // 3: 0/1 to select extra sd parameter // 4: 0/1 for biasadj or not // 5: 0/1 to float // read setup and get the parameter count echoinput<<"# read Q setup only for fleets with survey/CPUE/effort observations, end with fleet_ID<0 "<< "# fleet_ID link_type link_info extra_se(0/1) biasadj(0/1) float(0/1)"<>j; if(j>0) {*(ad_comm::global_datafile) >>Q_setup(j); Q_setup_check(j)=1;} else {*(ad_comm::global_datafile) >>tempvec(1,5);} } while(j>0); echoinput<<"q setup "<0) { if(Q_setup_check(f)==0) { N_warn++; warning<=f) { N_warn++; cout<<" EXIT - see warning "<=f) { N_warn++; cout<<" EXIT - see warning "<0) { Q_Npar++; ParCount++; Q_setup_parms(f,2)=Q_Npar; ParmLabel+="Q_extraSD_"+fleetname(f)+"("+NumLbl(f)+")"; } if(Svy_units(f)==34) // special code for depletion, so prepare to adjust phases and lambdas { echoinput<<"# survey: "<0) { N_warn++; cout<<"exit see warning "<0) { j=Q_setup_parms(f,1); echoinput<<"fleet "<=0) {N_warn++; warning<<"fleet: "<0) { if(Q_parm_1(Q_setup_parms(f,2),7)>0) varparm_estimated(3)=1; // extraSD is estimated, so need sd_offset=1 } if(Q_parm_1(j,13)==0 && Q_parm_1(j,8)==0 && Q_parm_1(j,9)==0) { // no time-vary parameter effects } else // set up a timevary parameter definition { ivector timevary_setup(1,13); // temporary vector for timevary specs timevary_setup.initialize(); // 1=baseparm type; 2=baseparm index; 3=first timevary parm // 4=block or trend type; 5=block pattern; 6= env link type; 7=env variable; // 8=dev vector used; 9=dev link type; 10=dev min year; 11=dev maxyear; 12=dev phase; 13=all parm index of baseparm if(timevary_parm_start_Q==0) timevary_parm_start_Q=timevary_parm_cnt+1; echoinput<0) // env variable used { timevary_setup(7)=int(abs(Q_parm_1(j,8)))-k*100; k=timevary_setup(7); for(y=styr-1;y<=YrMax;y++) env_data_pass(y)=env_data_RD(y,k); } else // density-dependence { timevary_setup(7)=-int(abs(Q_parm_1(j,8))-k*100); do_densitydependent=1; k=0; env_data_pass.initialize(); } if(Q_parm_1(j,13)>0) // doing blocks { if(Q_parm_1(j,13)>N_Block_Designs) {N_warn++; cout<<"Fatal_input_error, see warning"<0) { timevary_parm_cnt_Q=timevary_parm_cnt; Q_Npar2+=(timevary_parm_cnt_Q-timevary_parm_start_Q+1); echoinput<<"Q uses timevary parms: "<0) { j=Q_Npar; for (f=timevary_parm_start_Q;f<=timevary_parm_cnt_Q;f++) { j++; echoinput<1.0 seltype_Nparam(24)=6; // double_normal with sel(minL) and sel(maxL), using joiners seltype_Nparam(25)=3; // exponential-logistic in size seltype_Nparam(26)=3; // exponential-logistic in age seltype_Nparam(27)=3; // cubic spline for selex at length, additional parm count is in seltype(f,4) // seltype_Nparam(28)=3; // cubic spline for selex at age, additional parm count is in seltype(f,4) seltype_Nparam(29)=0; // undefined seltype_Nparam(41)=2+seltype_Nparam(17); // like 17, with 2 additional parameters for scaling (average over bin range) seltype_Nparam(42)=2+seltype_Nparam(27); // like 27, with 2 additional parameters for scaling (average over bin range) seltype_Nparam(43)=seltype_Nparam(6); // like 6, with 2 additional parameters for scaling (average over bin range) seltype_Nparam(44)=4; // like 17 for two sexes with male selectivity as separate parameters seltype_Nparam(45)=4; // like 14 for two sexes with male selectivity as separate parameters END_CALCS !!// SS_Label_Info_4.9.1 #Read selectivity definitions // do 2*Nfleet to create options for size-selex (first), then age-selex init_imatrix seltype(1,2*Nfleet,1,4) // read selex type for each fleet/survey, retention option, male_offset_option, special int N_selparm // figure out the Total number of selex parameters int N_selparm3 // N selparms plus timevary parms int N_selparm2 // N selparms plus timevary parms and 2D_AR1 parms ivector N_selparmvec(1,2*Nfleet) // N selparms by type, including extra parms for male selex, retention, etc. ivector Maleselparm(1,2*Nfleet) ivector RetainParm(1,Nfleet) ivector dolen(1,Nfleet) int blkparm int firstselparm ivector N_ret_parm(0,6) // 6 possible retention functions allowed ivector N_disc_mort_parm(0,6) // 6 possible discard mortality functions allowed ivector Do_Retain(1,Nfleet) // indicates 0=none, 1=length based, 2=age based LOCAL_CALCS echoinput<<" selex types "<0 && seltype(f,1)>0) { N_warn++; warning<<" Use of size selectivity not advised when reading empirical wt-at-age "<0 && Svy_units(f)<30) {dolen(f)=1;} else {dolen(f)=0;} if(seltype(f,1)==15 || seltype(f,1)==5) // mirror { if(seltype(f,4)==0 || seltype(f,4)>=f) { N_warn++; cout<<" EXIT - see warning "<=1) { if(WTage_rd>0) { N_warn++; warning<<" BEWARE: Retention functions not implemented fully when reading empirical wt-at-age "<0) { ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_L_infl_"+fleetname(f)+"("+NumLbl(f)+")"; ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_L_width_"+fleetname(f)+"("+NumLbl(f)+")"; ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_L_asymptote_logit_"+fleetname(f)+"("+NumLbl(f)+")"; ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_L_maleoffset_"+fleetname(f)+"("+NumLbl(f)+")"; if(N_ret_parm(seltype(f,2))==7) // doing dome { ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_L_dome_infl_"+fleetname(f)+"("+NumLbl(f)+")"; ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_L_dome_width_"+fleetname(f)+"("+NumLbl(f)+")"; ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_L_dome_maleoffset_"+fleetname(f)+"("+NumLbl(f)+")"; } } if(seltype(f,2)==2 || seltype(f,2)==4) { ParCount++; N_selparmvec(f)++; ParmLabel+="DiscMort_L_infl_"+fleetname(f)+"("+NumLbl(f)+")"; ParCount++; N_selparmvec(f)++; ParmLabel+="DiscMort_L_width_"+fleetname(f)+"("+NumLbl(f)+")"; ParCount++; N_selparmvec(f)++; ParmLabel+="DiscMort_L_level_old_"+fleetname(f)+"("+NumLbl(f)+")"; ParCount++; N_selparmvec(f)++; ParmLabel+="DiscMort_L_male_offset_"+fleetname(f)+"("+NumLbl(f)+")"; } } } else if (seltype(f,2)<0) // mirror retention { Do_Retain(f)=1; RetainParm(f)=0; } if(seltype(f,3)>=1) { if(gender==1) {N_warn++; cout<<"Critical error"<=3) { if(seltype(f,3)==3) {anystring="Male_";} else {anystring="Fem_";} if(seltype(f,1)==1) { N_selparmvec(f)++; ParCount++; ParmLabel+="SzSel_"+anystring+"Infl_"+fleetname(f)+"("+NumLbl(f)+")"; N_selparmvec(f)++; ParCount++; ParmLabel+="SzSel_"+anystring+"Slope_"+fleetname(f)+"("+NumLbl(f)+")"; N_selparmvec(f)++; ParCount++; ParmLabel+="SzSel_"+anystring+"Scale_"+fleetname(f)+"("+NumLbl(f)+")"; } else if(seltype(f,1)==24) { N_selparmvec(f)++; ParCount++; ParmLabel+="SzSel_"+anystring+"Peak_"+fleetname(f)+"("+NumLbl(f)+")"; N_selparmvec(f)++; ParCount++; ParmLabel+="SzSel_"+anystring+"Ascend_"+fleetname(f)+"("+NumLbl(f)+")"; N_selparmvec(f)++; ParCount++; ParmLabel+="SzSel_"+anystring+"Descend_"+fleetname(f)+"("+NumLbl(f)+")"; N_selparmvec(f)++; ParCount++; ParmLabel+="SzSel_"+anystring+"Final_"+fleetname(f)+"("+NumLbl(f)+")"; N_selparmvec(f)++; ParCount++; ParmLabel+="SzSel_"+anystring+"Scale_"+fleetname(f)+"("+NumLbl(f)+")"; } else { N_warn++; cout<<" EXIT - see warning "<=f1) { N_warn++; cout<<" EXIT - see warning "<=1) { Do_Retain(f1)=2; if(WTage_rd>0) { N_warn++; warning<<" BEWARE: Retention functions not implemented fully when reading empirical wt-at-age "<0) { N_warn++; cout<<" EXIT - see warning "<0) { ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_A_infl_"+fleetname(f1)+"("+NumLbl(f1)+")"; ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_A_width_"+fleetname(f1)+"("+NumLbl(f1)+")"; ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_A_asymptote_logit_"+fleetname(f1)+"("+NumLbl(f1)+")"; ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_A_maleoffset_"+fleetname(f1)+"("+NumLbl(f1)+")"; if(N_ret_parm(seltype(f,2))==7) // doing dome { ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_A_dome_infl_"+fleetname(f1)+"("+NumLbl(f1)+")"; ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_A_dome_width_"+fleetname(f1)+"("+NumLbl(f1)+")"; ParCount++; N_selparmvec(f)++;ParmLabel+="Retain_A_dome_maleoffset_"+fleetname(f1)+"("+NumLbl(f1)+")"; } } if(seltype(f,2)==2 || seltype(f,2)==4) { ParCount++; N_selparmvec(f)++; ParmLabel+="DiscMort_A_infl_"+fleetname(f1)+"("+NumLbl(f1)+")"; ParCount++; N_selparmvec(f)++; ParmLabel+="DiscMort_A_width_"+fleetname(f1)+"("+NumLbl(f1)+")"; ParCount++; N_selparmvec(f)++; ParmLabel+="DiscMort_A_level_old_"+fleetname(f1)+"("+NumLbl(f1)+")"; ParCount++; N_selparmvec(f)++; ParmLabel+="DiscMort_A_male_offset_"+fleetname(f1)+"("+NumLbl(f1)+")"; } } } else if (seltype(f,2)<0) // mirror retention { Do_Retain(f1)=2; RetainParm(f1)=0; } if(seltype(f,3)>=1) { if(gender==1) {N_warn++; cout<<"Critical error"<=3 && seltype(f,1)==20) { if(seltype(f,3)==3) {anystring="Male_";} else {anystring="Fem_";} N_selparmvec(f)++; ParCount++; ParmLabel+="AgeSel_"+NumLbl(f1)+anystring+"Peak_"+fleetname(f1); N_selparmvec(f)++; ParCount++; ParmLabel+="AgeSel_"+NumLbl(f1)+anystring+"Ascend_"+fleetname(f1); N_selparmvec(f)++; ParCount++; ParmLabel+="AgeSel_"+NumLbl(f1)+anystring+"Descend_"+fleetname(f1); N_selparmvec(f)++; ParCount++; ParmLabel+="AgeSel_"+NumLbl(f1)+anystring+"Final_"+fleetname(f1); N_selparmvec(f)++; ParCount++; ParmLabel+="AgeSel_"+NumLbl(f1)+anystring+"Scale_"+fleetname(f1); } else { N_warn++; cout<<" EXIT - see warning "<0) { N_retain_fleets++; disc_fleet_list(f)=N_retain_fleets; // for compact storage of disc_age(t,f,g) } } // SS_Label_Info_4.097 #Read parameters needed for estimating variance of composition data { echoinput<<"#Now count parameters for variance of composition data; CANNOT be time-varying"<0) { echoinput<0 && seltype(f,2)==0 && seltype(f+Nfleet,2)==0) {N_warn++; cout<<" EXIT - see warning "<0) {N_warn++; warning<<" WARNING: no discard amount data for fleet "<0) { for(g=1;g<=N_selparmvec(f);g++) { j++; selparm_fleet(j)=f; } } } if(Comp_Err_ParmCount>0) { for (f = 1; f <= Nfleet; f++) { // if Dirichlet was indicated, set fleet for this parameter if (Comp_Err_L(f) == 1 && Comp_Err_L2(f) > 0) { j = Comp_Err_Parm_Start + Comp_Err_L2(f); selparm_fleet(j)=f; } if (Comp_Err_A(f) == 1 && Comp_Err_A2(f) > 0) { j = Comp_Err_Parm_Start + Comp_Err_A2(f); selparm_fleet(j)=f; } } } END_CALCS int timevary_parm_cnt_sel; int timevary_parm_start_sel; ivector selparm_timevary(1,N_selparm) // holds index of timevary used by this base parameter imatrix timevary_sel(styr-3,YrMax+1,1,2*Nfleet) int TwoD_AR_do; int TwoD_AR_cnt int makefishsel_yr ivector TwoD_AR_use(1,2*Nfleet); LOCAL_CALCS timevary_parm_start_sel=0; timevary_parm_cnt_sel=0; timevary_sel.initialize(); selparm_timevary.initialize(); TwoD_AR_use.initialize(); for (j=1;j<=N_selparm;j++) { k=selparm_fleet(j); timevary_pass=column(timevary_sel,k); // year vector for this category of selparm if(selparm_1(j,13)==0 && selparm_1(j,8)==0 && selparm_1(j,9)==0) { // no time-vary parameter effects } else if (k==0) { N_warn++; warning<<"Comp_err parameters cannot have timevary effects "<0) // env variable used { timevary_setup(7)=int(abs(selparm_1(j,8)))-k*100; k=timevary_setup(7); for(y=styr-1;y<=YrMax;y++) env_data_pass(y)=env_data_RD(y,k); } else // density-dependence { timevary_setup(7)=-int(abs(selparm_1(j,8))-k*100); do_densitydependent=1; k=0; env_data_pass.initialize(); } if(z>0) // doing blocks { if(z>N_Block_Designs) {N_warn++; cout<<"Fatal_input_error, see warning"<0) { timevary_parm_cnt_sel=timevary_parm_cnt; // last timevary_selparm N_selparm3=N_selparm+timevary_parm_cnt_sel-timevary_parm_start_sel+1; } N_selparm2=N_selparm3; // for distinguishing the 2D_AR parms // now add parameters for the 2D_AR1 approach // Input in first parameter line several setup factors: rho_y, rho_a, ymin, ymax, amin, amax, use_rho, sigma_amax, null9, null10, null11, null12, null13,null14 // then one to several parameter lines containing age-specific sigma for ages amin to sigma_amax // note that parm_dev_minyr and parm_dev_maxyr need to map onto the matrix defined by ymin, ymax, amin, amax, TwoD_AR_cnt=0; echoinput<<" now read 0/1 for 2D_AR"<> TwoD_AR_do; echoinput<0) { N_warn++; warning<<"You have selected the experimental 2D_AR selectivity smoother option"<> tempvec(1,11); echoinput<tempvec(5)) {N_warn++; warning<<"fatal error: sigmasel_amax must be >=amin and <=amax: "<> dtempvec(1,7); timevary_parm_rd.push_back (dtempvec); echoinput<<" sigmasel for age: "<> dtempvec(1,7); timevary_parm_rd.push_back (dtempvec); echoinput<<" rho year: "<> dtempvec(1,7); timevary_parm_rd.push_back (dtempvec); echoinput<<" rho age: "<0) { echoinput<<"list all parms used for timevary implementation"<0) { for (f=timevary_parm_start_sel;f<=timevary_parm_cnt_sel;f++) { j++; selparm_LO(j)=timevary_parm_rd[f](1); selparm_HI(j)=timevary_parm_rd[f](2); selparm_RD(j)=timevary_parm_rd[f](3); selparm_PR(j)=timevary_parm_rd[f](4); selparm_PRtype(j)=timevary_parm_rd[f](6); selparm_CV(j)=timevary_parm_rd[f](5); selparm_PH(j)=timevary_parm_rd[f](7); } } // SS_Label_Info_4.9.10 #Special bound checking for size selex parameters z=0; // parameter counter within this section for (f=1;f<=Nfleet;f++) { if(seltype(f,1)==8 || seltype(f,1)==22 || seltype(f,1)==23 || seltype(f,1)==24) { if(selparm_1(z+1,1)= midsize bin 2 ("<len_bins_m(nlength-1)) {N_warn++; warning<<"Fleet:_"<0) timevary_sel(y,f)=1; } if(f<=Nfleet) { // CHECK: why is below needed for WTage_rd>0 if(timevary_MG(y,2)>0 || timevary_MG(y,3)>0 || WTage_rd>0) { timevary_sel(y,f)=1; } } } // end type } // end years END_CALCS !!// SS_Label_Info_4.10 #Read tag recapture parameter setup // if Tags are used, the read parameters for initial tag loss, chronic tag loss, andd // fleet-specific tag reporting. Of these, only reporting rate will be allowed to be time-varying init_int TG_custom; // 1=read; 0=create default parameters !! echoinput<0) echoinput<<" Tag parameters as read "<0) {k1=k;} else {k1=1;} vector TG_parm_LO(1,k1); vector TG_parm_HI(1,k1); ivector TG_parm_PH(1,k1); LOCAL_CALCS if(Do_TG>0) { if(TG_custom==1) { TG_parm2=TG_parm1; // assign to the read values } else { TG_parm2.initialize(); onenum=" "; for (j=1;j<=N_TG;j++) { TG_parm2(j,1)=-10; // min TG_parm2(j,2)=10; // max TG_parm2(j,3)=-7.; // init TG_parm2(j,4)=-7.; // prior TG_parm2(j,5)=0.001; // prior is quite diffuse TG_parm2(j,6)=1.; // default prior type is symmetric beta if(j==1) {TG_parm2(j,7)=-4; } // phase else {TG_parm2(j,7)=-1000; } // phase } for (j=1;j<=N_TG;j++) { TG_parm2(j+N_TG)=TG_parm2(1); // set chronic tag retention equal to initial tag_retention } for (j=1;j<=N_TG;j++) // set overdispersion { TG_parm2(j+2*N_TG,1)=1; // min TG_parm2(j+2*N_TG,2)=10; // max TG_parm2(j+2*N_TG,3)=2.; // init TG_parm2(j+2*N_TG,4)=2.; // prior TG_parm2(j+2*N_TG,5)=0.001; // prior is quite diffuse TG_parm2(j+2*N_TG,6)=1.; // default prior type is symmetric beta if(j==1) {TG_parm2(j+2*N_TG,7)=-4; } // phase else {TG_parm2(j+2*N_TG,7)=-1000; } // phase } for (j=1;j<=Nfleet1;j++) { TG_parm2(j+3*N_TG,1)=-10; // min TG_parm2(j+3*N_TG,2)=10; // max TG_parm2(j+3*N_TG,3)=7.; // init TG_parm2(j+3*N_TG,4)=7.; // prior TG_parm2(j+3*N_TG,5)=0.001; // prior is quite diffuse TG_parm2(j+3*N_TG,6)=1.; // default prior type is symmetric beta if(j==1) {TG_parm2(j+3*N_TG,7)=-4; } // phase else {TG_parm2(j+3*N_TG,7)=-1000; } // phase } // set tag reporting decay to nil decay rate for (j=1;j<=Nfleet1;j++) { k=j+3*N_TG+Nfleet1; TG_parm2(k,1)=-4.; TG_parm2(k,2)=0.; TG_parm2(k,3)=0.; TG_parm2(k,4)=0.; // prior of zero TG_parm2(k,5)=2.; // sd dev of prior TG_parm2(k,6)=6.; // default prior type is squared dev if(j==1) {TG_parm2(k,7)=-4; } // phase else {TG_parm2(k,7)=-1000; } // phase } } echoinput<<"create tag labels "<0) { for (j=1;j<=timevary_cnt;j++) // loop all timevary to set up devs; note that 2D_AR1 is counted in N_parm_dev, but not in timevary_cnt { ivector timevary_setup(1,13); timevary_setup(1,13)=timevary_def[j](1,13); if(timevary_setup(8)>0) { k=timevary_setup(8); // dev vector used parm_dev_minyr(k)=timevary_setup(10); // used for dimensioning the dev vectors in SS_param parm_dev_maxyr(k)=timevary_setup(11); parm_dev_PH(k)=timevary_setup(12); echoinput<<" dev vector #: "<20) { picker-=20; continue_last=1; } parm_dev_use_rho(k)=0; if(picker>10) { parm_dev_type(k)=3; // use objfun using -log(se) to match 3.30.12 and earlier picker-=10; } if(picker==4) parm_dev_use_rho(k)=1; for(y=parm_dev_minyr(k);y<=parm_dev_maxyr(k);y++) { sprintf(onenum, "%d", y); ParCount++; if(picker==1) {ParmLabel+=ParmLabel(f)+"_DEVmult_"+onenum+CRLF(1);} else if(picker==2) {ParmLabel+=ParmLabel(f)+"_DEVadd_"+onenum+CRLF(1);} else if(picker==3) {ParmLabel+=ParmLabel(f)+"_DEVrwalk_"+onenum+CRLF(1);} else if(picker==4) {ParmLabel+=ParmLabel(f)+"_DEV_MR_rwalk_"+onenum+CRLF(1);} else {N_warn++; cout<<" EXIT - see warning "<> tempvec(1,3); echoinput<0 && depletion_type<2 && max_lambda_phase<2) { max_lambda_phase=2; N_warn++; warning<<"Increase max_lambda_phase to 2 because depletion fleet is being used"<> tempvec(1,5); if(tempvec(1)==-9999.) ender=1; lambda_change_data.push_back(tempvec(1,5)); } while(ender==0); N_lambda_changes=lambda_change_data.size()-1; echoinput<<" number of lambda change records = "<> tempvec(1,5); // read 5 numerics from line echoinput<0) echoinput<<" lambda changes "<0 && depletion_type<2) { for (f=1;f<=Nfleet;f++) { surv_lambda(f,1)=0.0; disc_lambda(f,1)=0.0; mnwt_lambda(f,1)=0.0; length_lambda(f,1)=0.0; age_lambda(f,1)=0.0; sizeage_lambda(f,1)=0.0; // catch_lambda(f,1)=0.0; // keep this positive to prevent crashes from bad fit to catch } if(SzFreq_Nmeth>0) { for (z=1;z<=SzFreq_N_Like;z++) {SzFreq_lambda(z,1)=0.0;} } if(N_TG2>0) { for (z=1;z<=N_TG2;z++) { TG_lambda1(z,1)=0.0; TG_lambda2(z,1)=0.0; } } init_equ_lambda(1)=0.0; recrdev_lambda(1)=0.0; Morphcomp_lambda(1)=0.0; F_ballpark_lambda(1)=0.0; surv_lambda(depletion_fleet,1)=1.0; } N_changed_lambdas=0; for (j=1;j<=N_lambda_changes;j++) { k=Lambda_changes(j,1); // like component f=Lambda_changes(j,2); // fleet s=Lambda_changes(j,3); // phase if(k<=14) { if(f>Nfleet) { k=0; N_warn++; warning<<" illegal fleet/survey for lambda change at row: "< Nfleet"<N_TG2) { k=0; N_warn++; warning<<" illegal tag group for lambda change at row: "< N_taggroups"<18) { k=0; N_warn++; warning<<" illegal lambda_type for lambda change at row: "< 17"<max_lambda_phase) {k=0; N_warn++; warning<<" illegal request for lambda change at row: "< max_lam_phase: "<Turn_off_phase) s=max(1,Turn_off_phase); temp=Lambda_changes(j,4); // value if(temp!=0.0 && temp!=1.0) N_changed_lambdas++; z=Lambda_changes(j,5); // special for sizefreq switch(k) { case 0: // do nothing {break;} case 1: // survey {surv_lambda(f)(s,max_lambda_phase)=temp; break;} case 2: // discard {disc_lambda(f)(s,max_lambda_phase)=temp; break;} case 3: // meanbodywt {mnwt_lambda(f)(s,max_lambda_phase)=temp; break;} case 4: // lengthcomp {length_lambda(f)(s,max_lambda_phase)=temp; break;} case 5: // agecomp {age_lambda(f)(s,max_lambda_phase)=temp; break;} case 6: // sizefreq comp { z=Lambda_changes(j,5); // sizefreq method if(z>SzFreq_Nmeth) {N_warn++; cout<<" EXIT - see warning "< Nmeth "<0) {echoinput<0) { Do_Selex_Std=More_Std_Input(1); Selex_Std_AL=More_Std_Input(2); Selex_Std_Year=More_Std_Input(3); if(Selex_Std_Year<0) Selex_Std_Year=endyr; Selex_Std_Cnt=More_Std_Input(4); Do_Growth_Std=More_Std_Input(5); if(MG_active(2)==0) Do_Growth_Std=0; Growth_Std_Cnt=More_Std_Input(6); Do_NatAge_Std=More_Std_Input(7); NatAge_Std_Year=More_Std_Input(8); if(NatAge_Std_Year<0) NatAge_Std_Year=endyr+1; NatAge_Std_Cnt=More_Std_Input(9); if(Do_Selex_Std<=0) Selex_Std_Cnt=0; if(Do_Growth_Std<=0) Growth_Std_Cnt=0; if(Do_NatAge_Std==0) NatAge_Std_Cnt=0; } else { Do_Selex_Std=0; Selex_Std_AL=1; Selex_Std_Year=endyr; Selex_Std_Cnt=0; Do_Growth_Std=0; Growth_Std_Cnt=0; Do_NatAge_Std=0; NatAge_Std_Cnt=0; NatAge_Std_Year=endyr; } END_CALCS init_ivector Selex_Std_Pick(1,Selex_Std_Cnt); LOCAL_CALCS if(Do_Selex_Std>0) { echoinput<nlength && Selex_Std_AL==1) Selex_Std_Pick(i)=nlength; if(Selex_Std_Pick(i)>nages && Selex_Std_AL>1) Selex_Std_Pick(i)=nages; } Extra_Std_N=gender*Selex_Std_Cnt; } END_CALCS init_ivector Growth_Std_Pick(1,Growth_Std_Cnt); LOCAL_CALCS if(Do_Growth_Std>0) { echoinput<2) { k=Growth_Std_Cnt/2; for (i=2;i<=k;i++) Growth_Std_Pick(i)=Growth_Std_Pick(i-1)+1; j=(nages-Growth_Std_Pick(k))/(Growth_Std_Cnt-k); for (i=k+1;i<=Growth_Std_Cnt-1;i++) Growth_Std_Pick(i)=Growth_Std_Pick(i-1)+j; } } for(i=1;i<=Growth_Std_Cnt;i++) { if(Growth_Std_Pick(i)<=0) Growth_Std_Pick(i)=1; if(Growth_Std_Pick(i)>nages) Growth_Std_Pick(i)=nages; } Extra_Std_N+=gender*Growth_Std_Cnt; } END_CALCS init_ivector NatAge_Std_Pick(1,NatAge_Std_Cnt); LOCAL_CALCS if(Do_NatAge_Std!=0) { echoinput<2) { k=NatAge_Std_Cnt/2; for (i=2;i<=k;i++) NatAge_Std_Pick(i)=NatAge_Std_Pick(i-1)+1; j=(nages-NatAge_Std_Pick(k))/(NatAge_Std_Cnt-k); for (i=k+1;i<=NatAge_Std_Cnt-1;i++) NatAge_Std_Pick(i)=NatAge_Std_Pick(i-1)+j; } } for(i=1;i<=NatAge_Std_Cnt;i++) { if(NatAge_Std_Pick(i)<=0) NatAge_Std_Pick(i)=1; if(NatAge_Std_Pick(i)>nages) NatAge_Std_Pick(i)=nages; } Extra_Std_N+=gender*NatAge_Std_Cnt; } Extra_Std_N+=3; // add 3 values for ln(Spbio) END_CALCS !!// SS_Label_Info_4.13 #End of reading from control file init_int fim // end of file indicator LOCAL_CALCS cout<<"If you see 999, we got to the end of the control file successfully! "<0) { N_STD_Mgmt_Quant=17; } else {N_STD_Mgmt_Quant=4;} Fcast_catch_start=N_STD_Mgmt_Quant; if(max(Do_Retain)>0) {j=1;} else {j=0;} if(Do_Forecast>0) {N_STD_Mgmt_Quant+=N_Fcast_Yrs*(1+j)+N_Fcast_Yrs;} k=ParCount+2*N_STD_Yr+N_STD_Yr_Dep+N_STD_Yr_Ofish+N_STD_Yr_F+N_STD_Mgmt_Quant+gender*Selex_Std_Cnt+gender*Growth_Std_Cnt+gender*NatAge_Std_Cnt+3+Svy_N_sdreport; echoinput<<"N parameters: "<0 && depletion_type==1) { Turn_off_phase2=1; echoinput<<"depletion fleet and type are: "<0 && depletion_type<2 && MGparm_PH(k)>0) MGparm_PH(k)++; // add 1 to phase if using depletion fleet if(MGparm_PH(k) > Turn_off_phase2) MGparm_PH(k) =-1; if(MGparm_PH(k) > max_phase) max_phase=MGparm_PH(k); if(MGparm_PH(k)>=0) { active_count++; active_parm(active_count)=ParCount; } } for (j=1;j<=SR_parm_PH.indexmax();j++) { ParCount++; if(SR_parm_PH(j)==-9999) {SR_parm_1(j,3)=prof_var(prof_var_cnt); SR_parm_RD(j,3)=SR_parm_1(j,3); prof_var_cnt+=1;} if(depletion_fleet>0 && depletion_type<2 && SR_parm_PH(j)>0) SR_parm_PH(j)++; // add 1 to phase if using depletion fleet if(depletion_fleet>0 && depletion_type<2 && j==1) SR_parm_PH(1)=1; // R0 active in phase 1, unless type==2 if(SR_parm_PH(j) > Turn_off_phase2) SR_parm_PH(j) =-1; if(SR_parm_PH(j) > max_phase) max_phase=SR_parm_PH(j); if(SR_parm_PH(j)>=0) { active_count++; active_parm(active_count)=ParCount; } } if(recdev_cycle>0) { for (y=1;y<=recdev_cycle;y++) { ParCount++; recdev_cycle_LO(y)=recdev_cycle_parm_RD(y,1); recdev_cycle_HI(y)=recdev_cycle_parm_RD(y,2); recdev_cycle_PH(y)=recdev_cycle_parm_RD(y,7); if(depletion_fleet>0 && depletion_type<2 && recdev_cycle_PH(y)>0) recdev_cycle_PH(y)++; // add 1 to phase if using depletion fleet if(recdev_cycle_PH(y) > Turn_off_phase2) recdev_cycle_PH(y) =-1; if(recdev_cycle_PH(y) > max_phase) max_phase=recdev_cycle_PH(y); if(recdev_cycle_PH(y)>=0) {active_count++; active_parm(active_count)=ParCount;} } } if(depletion_fleet>0 && depletion_type<2 && recdev_early_PH_rd>0) recdev_early_PH_rd++; // add 1 to phase if using depletion fleet if(recdev_early_PH_rd > Turn_off_phase2) {recdev_early_PH =-1;} else {recdev_early_PH =recdev_early_PH_rd;} if(recdev_early_PH > max_phase) max_phase=recdev_early_PH; if(recdev_do_early>0) { for (y=recdev_early_start;y<=recdev_early_end;y++) { ParCount++; if(recdev_early_PH>=0) {active_count++; active_parm(active_count)=ParCount;} } } if(depletion_fleet>0 && depletion_type<2 && recdev_PH>0) recdev_PH++; // add 1 to phase if using depletion fleet if(recdev_PH > Turn_off_phase2) recdev_PH =-1; if(recdev_PH > max_phase) max_phase=recdev_PH; if(do_recdev>0) { for (y=recdev_start;y<=recdev_end;y++) { ParCount++; if(recdev_PH>=0) {active_count++; active_parm(active_count)=ParCount;} } } Fcast_recr_PH2=max_phase+1; Fcast_recr_PH=Fcast_recr_PH_rd; if(Do_Forecast>0) { if(Turn_off_phase>0) { if(Fcast_recr_PH_rd!=0) // read value for forecast_PH { Fcast_recr_PH2=Fcast_recr_PH; if(depletion_fleet>0 && depletion_type<2 && Fcast_recr_PH2>0) Fcast_recr_PH2++; if(Fcast_recr_PH2 > Turn_off_phase2) Fcast_recr_PH2 =-1; if(Fcast_recr_PH2 > max_phase) max_phase=Fcast_recr_PH2; } if(depletion_fleet>0 && depletion_type==1) {max_phase=1; Fcast_recr_PH2=-1;} for (y=recdev_end+1;y<=YrMax;y++) { ParCount++; if(Fcast_recr_PH2>-1) {active_count++; active_parm(active_count)=ParCount;} } } else { Fcast_recr_PH2=-1; } for (y=endyr+1;y<=YrMax;y++) { ParCount++; if(Do_Impl_Error>0 && Fcast_recr_PH2>-1) {active_count++; active_parm(active_count)=ParCount;} } } else {Fcast_recr_PH2=-1;} for (s=1;s<=nseas;s++) for (f=1;f<=Nfleet;f++) { if(init_F_loc(s,f)>0) { j=init_F_loc(s,f); ParCount++; if(init_F_PH(j)==-9999) {init_F_parm_1(j,3)=prof_var(prof_var_cnt); init_F_RD(j)=init_F_parm_1(j,3); prof_var_cnt++;} if(depletion_fleet>0 && depletion_type<2 && init_F_PH(j)>0) init_F_PH(j)++; if(init_F_PH(j) > Turn_off_phase2) init_F_PH(j) =-1; if(init_F_PH(j) > max_phase) max_phase=init_F_PH(j); if(init_F_PH(j)>=0) { active_count++; active_parm(active_count)=ParCount; } } } if(F_Method==2) { for (g=1;g<=N_Fparm;g++) { ParCount++; if(depletion_fleet>0 && depletion_type<2 && Fparm_PH(g)>0) Fparm_PH(g)++; // increase phase by 1 if(Fparm_PH(g) > Turn_off_phase2) Fparm_PH(g) =-1; if(Fparm_PH(g) > max_phase) max_phase=Fparm_PH(g); if(Fparm_PH(g)>0) { active_count++; active_parm(active_count)=ParCount; } } } for (f=1;f<=Q_Npar2;f++) { ParCount++; if(Q_parm_PH(f)==-9999) {Q_parm_1(f,3)=prof_var(prof_var_cnt); Q_parm_RD(f,3)=prof_var(prof_var_cnt); prof_var_cnt++;} if(depletion_fleet>0 && depletion_type<2 && Q_parm_PH(f)>0) Q_parm_PH(f)++; if(Q_parm_PH(f) > Turn_off_phase2) Q_parm_PH(f) =-1; if(Q_parm_PH(f) > max_phase) max_phase=Q_parm_PH(f); if(Q_parm_PH(f)>=0) { active_count++; active_parm(active_count)=ParCount; } } // SS_Label_Info_4.14.2 #Auto-generate cubic spline setup while inside this parameter counting loop Ip=0; int N_knots; for (f=1;f<=2*Nfleet;f++) // check for cubic spline setup { if(f<=Nfleet) {fs=f;} else {fs=f-Nfleet;} if(seltype(f,1)==27 || seltype(f,1)==42) // reset the cubic spline knots for size or age comp { // TODO - may need adjustments below for selex pattern 42 k=int(selparm_RD(Ip+1)); // setup method N_knots=seltype(f,4); // number of knots if(k==0) {} // do nothing else if(k==1 || k==2) // get new knots according to cumulative distribution of data { echoinput<<"Adjust the cubic_spline setup for fleet: "<=3) { temp=0.025; temp1=0.950/float(N_knots-1); // increment } else { N_warn++; cout<<" EXIT - see warning "<1) {selparm_RD(Ip+s)=len_bins_dat(z-1)+(temp-obs_l_all(2,f,z-1))/(obs_l_all(2,f,z)-obs_l_all(2,f,z-1))*(len_bins_dat(z)-len_bins_dat(z-1));} else {selparm_RD(Ip+s)=len_bins_dat(z);} s++; temp+=temp1; } echoinput<<"len_bins_dat: "<1) {selparm_RD(Ip+s)=age_bins(z-1)+(temp-obs_a_all(2,fs,z-1))/(obs_a_all(2,fs,z)-obs_a_all(2,fs,z-1))*(age_bins(z)-age_bins(z-1));} else {selparm_RD(Ip+s)=age_bins(z);} s++; temp+=temp1; } echoinput<<"age_bins: "<=3) { selparm_RD(p)=-0.001; // small negative gradient at top selparm_PR(p)=0.; selparm_PRtype(p)=1; selparm_CV(p)=0.001; selparm_PH(p)=3; } else { selparm_RD(p)=0.00; selparm_PR(p)=0.; selparm_PRtype(p)=0; selparm_CV(p)=1.0; selparm_PH(p)=-99; } for (z=Ip+1;z<=Ip+3+2*N_knots;z++) { selparm_1(z,1)=selparm_LO(z); selparm_1(z,2)=selparm_HI(z); selparm_1(z,3)=selparm_RD(z); selparm_1(z,4)=selparm_PR(z); selparm_1(z,6)=selparm_PRtype(z); selparm_1(z,5)=selparm_CV(z); selparm_1(z,7)=selparm_PH(z); } } } } Ip+=N_selparmvec(f); } selparm_PH_soft=selparm_PH; for (k=1;k<=selparm_PH.indexmax();k++) { ParCount++; if(selparm_PH(k)==-9999) {selparm_RD(k)=prof_var(prof_var_cnt); selparm_1(k)=prof_var(prof_var_cnt); prof_var_cnt++;} if(depletion_fleet>0 && depletion_type<2 && selparm_PH(k)>0) selparm_PH(k)++; if(selparm_PH(k) > Turn_off_phase2) selparm_PH(k) =-1; if(selparm_PH(k) > max_phase) max_phase=selparm_PH(k); if(selparm_PH(k)>=0) { active_count++; active_parm(active_count)=ParCount; } } if(Do_TG>0) { for (k=1;k<=3*N_TG+2*Nfleet1;k++) { ParCount++; if(depletion_fleet>0 && depletion_type<2 && TG_parm_PH(k)>0) TG_parm_PH(k)++; if(TG_parm_PH(k) > Turn_off_phase2) TG_parm_PH(k) =-1; if(TG_parm_PH(k) > max_phase) max_phase=TG_parm_PH(k); if(TG_parm_PH(k)>=0) { active_count++; active_parm(active_count)=ParCount; } } } if(timevary_cnt>0) { for (j=1;j<=timevary_cnt;j++) // loop all timevary to set up devs; note that 2D_AR1 is counted in N_parm_dev, but not in timevary_cnt { ivector timevary_setup(1,13); timevary_setup(1,13)=timevary_def[j](1,13); if(timevary_setup(8)>0) { k=timevary_setup(8); // dev vector used if(depletion_fleet>0 && depletion_type<2 && parm_dev_PH(k)>0) parm_dev_PH(k)++;// add 1 to phase if using depletion fleet if(parm_dev_PH(k)>Turn_off_phase2) parm_dev_PH(k) =-1; if(parm_dev_PH(k)>max_phase) max_phase=parm_dev_PH(k); } } } if(TwoD_AR_cnt>0) { for (j=1;j<=TwoD_AR_cnt;j++) // loop all timevary to set up devs; note that 2D_AR1 is counted in N_parm_dev, but not in timevary_cnt { ivector timevary_setup(1,13); timevary_setup(1,13)=TwoD_AR_def[j](1,13); if(timevary_setup(12)>0) { k=timevary_setup(12); // dev vector used if(depletion_fleet>0 && depletion_type<2 && parm_dev_PH(k)>0) parm_dev_PH(k)++;// add 1 to phase if using depletion fleet if(parm_dev_PH(k)>Turn_off_phase2) parm_dev_PH(k) =-1; if(parm_dev_PH(k)>max_phase) max_phase=parm_dev_PH(k); } } } if(N_parm_dev>0) { for(k=1;k<=N_parm_dev;k++) { for(y=parm_dev_minyr(k);y<=parm_dev_maxyr(k);y++) { ParCount++; if(parm_dev_PH(k)>=0) { active_count++; active_parm(active_count)=ParCount; } } } } if(Do_Forecast>0 && Turn_off_phase>0) { if(Fcast_recr_PH==0) // read value for forecast_PH. This code is repeats earlier code in case other parameters have changed maxphase { if(depletion_fleet>0 && depletion_type==1) {} else {Fcast_recr_PH2=max_phase+1;} } } echoinput<<"ParCount "<0) { CoVar_Count++; j++; active_parm(CoVar_Count)=j; if(y==styr-2) {ParmLabel+="SSB_Virgin";} else if(y==styr-1) {ParmLabel+="SSB_Initial";} else { // _itoa(y,onenum,10); sprintf(onenum, "%d", y); ParmLabel+="SSB_"+onenum+CRLF(1); } } } echoinput<<"parm "<0) { CoVar_Count++; j++; active_parm(CoVar_Count)=j; if(y==styr-2) {ParmLabel+="Recr_Virgin"; } else if(y==styr-1) {ParmLabel+="Recr_Initial"; } else { // _itoa(y,onenum,10); sprintf(onenum, "%d", y); ParmLabel+="Recr_"+onenum+CRLF(1); } } } echoinput<<"parm "<0) { CoVar_Count++; j++; active_parm(CoVar_Count)=j; // _itoa(y,onenum,10); sprintf(onenum, "%d", y); ParmLabel+="SPRratio_"+onenum+CRLF(1); } } //F_std echoinput<<"parm "<0) { CoVar_Count++; j++; active_parm(CoVar_Count)=j; // _itoa(y,onenum,10); sprintf(onenum, "%d", y); ParmLabel+="F_"+onenum+CRLF(1); } } echoinput<<"parm "<0) { CoVar_Count++; j++; active_parm(CoVar_Count)=j; // _itoa(y,onenum,10); sprintf(onenum, "%d", y); ParmLabel+="Bratio_"+onenum+CRLF(1); } } echoinput<<"parm "<0) { ParmLabel+="SSB_unfished"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="Totbio_unfished"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="SmryBio_unfished"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="Recr_unfished"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; if(Do_Benchmark==1) { ParmLabel+="SSB_Btgt"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="SPR_Btgt"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="Fstd_Btgt"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="Dead_Catch_Btgt"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; } else if(Do_Benchmark==2) { ParmLabel+="SSB_F01"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="SPR_F01"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="Fstd_F01"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="Dead_Catch_F01"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; } ParmLabel+="SSB_SPR"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="Fstd_SPR"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="Dead_Catch_SPR"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="SSB_MSY"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="SPR_MSY"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="Fstd_MSY"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="Dead_Catch_MSY"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="Ret_Catch_MSY"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; ParmLabel+="B_MSY/SSB_unfished"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; } else { ParmLabel+="Bzero_again"+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; } echoinput<<"parm "<0) { for (y=endyr+1;y<=YrMax;y++) { CoVar_Count++; j++; active_parm(CoVar_Count)=j; sprintf(onenum, "%d", y); ParmLabel+="ForeCatch_"+onenum+CRLF(1); } for (y=endyr+1;y<=YrMax;y++) { CoVar_Count++; j++; active_parm(CoVar_Count)=j; sprintf(onenum, "%d", y); ParmLabel+="OFLCatch_"+onenum+CRLF(1); } if(max(Do_Retain)>0) { for (y=endyr+1;y<=YrMax;y++) { CoVar_Count++; j++; active_parm(CoVar_Count)=j; sprintf(onenum, "%d", y); ParmLabel+="ForeCatchret_"+onenum+CRLF(1); } } } // do labels for Selex_Std if(Do_Selex_Std>0) { echoinput<<" do selex std labels "<nlength) { N_warn++; cout<<" EXIT - see warning "< "<nages) { N_warn++; cout<<" EXIT - see warning "< "<nages) { N_warn++; cout<<" EXIT - see warning "< "<0) { echoinput<<" do growth std labels "<0) {ParmLabel+="NatAge_std_"+NumLbl(Do_NatAge_Std)+"_"+GenderLbl(g)+"_A_"+NumLbl(age_vector(NatAge_Std_Pick(i)))+CRLF(1);} else {ParmLabel+="NatAge_std_All_"+GenderLbl(g)+"_A_"+NumLbl(age_vector(NatAge_Std_Pick(i)))+CRLF(1);} } } // output ln(Spbio) for selected years CoVar_Count++; j++; active_parm(CoVar_Count)=j; sprintf(onenum, "%d", styr); ParmLabel+="ln(SPB)_"+onenum+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; sprintf(onenum, "%d", int((endyr+styr)/2)); ParmLabel+="ln(SPB)_"+onenum+CRLF(1); CoVar_Count++; j++; active_parm(CoVar_Count)=j; sprintf(onenum, "%d", endyr); ParmLabel+="ln(SPB)_"+onenum+CRLF(1); if(Svy_N_sdreport>0) { k=0; for (f = 1; f <= Nfleet; ++f) { if (Svy_sdreport(f) > 0) { for (i=1;i<=Svy_N_fleet(f);i++) { CoVar_Count++; j++; active_parm(CoVar_Count)=j; sprintf(onenum, "%d", Svy_yr(f,i)); ParmLabel+=fleetname(f)+"_"+onenum+CRLF(1); } } } } sprintf(onenum, "%d", int(100*depletion_level)); switch(depletion_basis) { case 0: { depletion_basis_label+="no_depletion_basis"; break; } case 1: { depletion_basis_label+=" "+onenum+"%*Virgin_Biomass"; break; } case 2: { depletion_basis_label+=" "+onenum+"%*B_MSY"; break; } case 3: { depletion_basis_label+=" "+onenum+"%*StartYr_Biomass"; break; } case 4: { depletion_basis_label+=" "+onenum+"%*EndYr_Biomass"; break; } } switch (SPR_reporting) { case 0: // keep as raw value { SPR_report_label+=" raw_SPR"; break; } case 1: // compare to SPR { sprintf(onenum, "%d", int(100.*SPR_target)); SPR_report_label+=" (1-SPR)/(1-SPR_"+onenum+"%)"; break; } case 2: // compare to SPR_MSY { SPR_report_label+=" (1-SPR)/(1-SPR_MSY)"; break; } case 3: // compare to SPR_Btarget { sprintf(onenum, "%d", int(100.*BTGT_target)); SPR_report_label+=" (1-SPR)/(1-SPR_at_B"+onenum+"%)"; break; } case 4: { SPR_report_label+=" 1-SPR"; break; } } switch (F_std_basis) { case 0: // raw { F_report_label="_abs_F"; break; } case 1: { sprintf(onenum, "%d", int(100.*SPR_target)); F_report_label="(F)/(F"+onenum+"%SPR)"; break; } case 2: { F_report_label="(F)/(Fmsy)"; break; } case 3: { sprintf(onenum, "%d", int(100.*BTGT_target)); F_report_label="(F)/(F_at_B"+onenum+"%)"; break; } } switch (F_reporting) { case 0: // keep as raw value { F_report_label+=";_no_F_report"; break; } case 1: // exploitation rate in biomass { F_report_label+=";_with_F=Exploit(bio)"; break; } case 2: // exploitation rate in numbers { F_report_label+=";_with_F=Exploit(num)"; break; } case 3: // sum of F mults { F_report_label+=";_with_F=sum(full_Fs)"; break; } case 4: // F=Z-M for specified ages { F_report_label+=";_with_F=Z-M;_for_ages_"; sprintf(onenum, "%d", int(F_reporting_ages(1))); F_report_label+=onenum; sprintf(onenum, "%d", int(F_reporting_ages(2))); F_report_label+="_"+onenum; break; } case 5: // F=Z-M for specified ages (unweighted) { F_report_label+=";_with_F=Z-M;_for_ages_unweighted_"; sprintf(onenum, "%d", int(F_reporting_ages(1))); F_report_label+=onenum; sprintf(onenum, "%d", int(F_reporting_ages(2))); F_report_label+="_"+onenum; break; } } echoinput<<"Active parameters plus derived quantities: "<0) { ad_comm::change_datafile_name("wtatage.ss"); *(ad_comm::global_datafile) >>N_WTage_maxage; k=7+N_WTage_maxage; echoinput<<" N_WTage_max "<> tempvec(1,k); if(tempvec(1)==-9999.) ender=1; echoinput< where first value is for age 0! // if yr=-yr, then fill remaining years for that seas, growpattern, gender, fleet // fleet 0 contains begin season pop WT // fleet -1 contains mid season pop WT // fleet -2 contains maturity*fecundity int f2 LOCAL_CALCS if(WTage_rd>0) { for(f=-2;f<=Nfleet;f++) for(t=styr;t<=k2;t++) for(g=1;g<=gmorph;g++) for(a=0;a<=nages;a++) {WTage_emp(t,g,f,a)=-9999.;} if(N_WTage_maxage>nages) N_WTage_maxage=nages; // so extra ages being read will be ignored dvector tempvec(1,7+N_WTage_maxage); for (i=0;i<=N_WTage_rd-1;i++) { // for(j=1;j<=7+N_WTage_maxage;j++) // { tempvec(1,7+N_WTage_maxage)=WTage_in[i](1,7+N_WTage_maxage); // } y=abs(tempvec(1)); if(y0) { for (s=0;s<=nseas-1;s++) { junkvec2.initialize(); for (t=Bmark_t(1);t<=Bmark_t(2);t+=nseas) {junkvec2+=WTage_emp(t+s,GP3(g),f);} WTage_emp(styr-3*nseas+s,GP3(g),f)=junkvec2/temp; } } echoinput<<"finished reading empirical wt-at-age.ss"<=1) {cout<<" read parm file"<0) {SR_autocorr=1;} else {SR_autocorr=0;} // flag for recruitment autocorrelation if(do_recdev==1) {k=recdev_start; j=recdev_end; s=1; p=-1;} else if(do_recdev>=2) {s=recdev_start; p=recdev_end; k=1; j=-1;} else {s=1; p=-1; k=1; j=-1;} END_CALCS // vector biasadj(styr-nages,YrMax) // biasadj as used; depends on whether a recdev is estimated or not // vector biasadj_full(styr-nages,YrMax) // full time series of biasadj values, only used in defined conditions number sd_offset_rec init_bounded_number_vector recdev_cycle_parm(1,recdev_cycle,recdev_cycle_LO,recdev_cycle_HI,recdev_cycle_PH) // init_bounded_dev_vector recdev_early(recdev_early_start,recdev_early_end,recdev_LO,recdev_HI,recdev_early_PH) init_bounded_vector recdev_early(recdev_early_start,recdev_early_end,recdev_LO,recdev_HI,recdev_early_PH) init_bounded_dev_vector recdev1(k,j,recdev_LO,recdev_HI,recdev_PH) init_bounded_vector recdev2(s,p,recdev_LO,recdev_HI,recdev_PH) init_bounded_vector Fcast_recruitments(recdev_end+1,YrMax,recdev_LO,recdev_HI,Fcast_recr_PH2) vector recdev(recdev_first,YrMax); LOCAL_CALCS if(Do_Impl_Error>0) // {k=max_phase+1;} {k=Fcast_recr_PH2;} else {k=-1;} END_CALCS init_bounded_vector Fcast_impl_error(endyr+1,YrMax,-1,1,k) vector ABC_buffer(endyr+1,YrMax); // SPAWN-RECR: define some spawning biomass and recruitment entities number SSB_virgin number Recr_virgin number SSB_vir_LH number SSB_unf number Recr_unf number SSB_current; // Spawning biomass number SSB_equil; number SPR_trial number SPR_actual; number SPR_temp; // used to pass quantity into Equil_SpawnRecr number Recruits; // Age0 Recruits number equ_mat_bio number equ_mat_num number YPR // variable still used in SPR series number YPR_Btgt_enc; number YPR_Btgt_dead; number YPR_Btgt_N_dead; number YPR_Btgt_ret; number YPR_Btgt; number YPR_spr_enc; number YPR_spr_dead; number YPR_spr_N_dead; number YPR_spr_ret; number Vbio_spr; number Vbio1_spr; number Vbio_Btgt; number Vbio1_Btgt; number Btgt; number Btgttgt; number SPR_Btgt; number Btgt_Rec; number Bspr; number Bspr_rec; number MSY number Bmsy number Recr_msy number YPR_msy_enc; number YPR_msy_dead; number YPR_msy_N_dead; number YPR_msy_ret; number YPR_enc; number YPR_dead; number YPR_opt; // used to find F0.1 and Fmsy number YPR_N_dead; number YPR_ret; number MSY_Fmult; number SPR_Fmult; number Btgt_Fmult; number MSY_SPR; 3darray SSB_pop_gp(styr-3,YrMax,1,pop,1,N_GP) //Spawning biomass vector SSB_yr(styr-3,YrMax) vector SSB_B_yr(styr-3,YrMax) // mature biomass (no fecundity) vector SSB_N_yr(styr-3,YrMax) // mature numbers !!k=0; !!if(Hermaphro_Option!=0) k=1; 3darray MaleSPB(styr-3,YrMax*k,1,pop,1,N_GP) //Male Spawning biomass matrix SSB_equil_pop_gp(1,pop,1,N_GP); matrix MaleSSB_equil_pop_gp(1,pop,1,N_GP); matrix Recr(1,pop,styr-2*nseas,TimeMax_Fcast_std+nseas) //Recruitment matrix exp_rec(styr-2,YrMax,1,4) //expected value for recruitment: 1=spawner-recr only; 2=with environ and cycle; 3=with bias_adj; 4=with dev matrix Nmid(1,gmorph,0,nages); matrix Nsurv(1,gmorph,0,nages); 3darray natage_temp(1,pop,1,gmorph,0,nages) number ave_age // average age of fish in unfished population; used to weight R1 !!// SS_Label_Info_5.1.3 #Create F parameters and associated arrays and constants init_bounded_number_vector init_F(1,N_init_F,init_F_LO,init_F_HI,init_F_PH) matrix est_equ_catch(1,nseas,1,Nfleet) !!if(Do_Forecast>0) {k=TimeMax_Fcast_std+nseas;} else {k=TimeMax+nseas;} 4darray natage(styr-3*nseas,k,1,pop,1,gmorph,0,nages) // add +1 year 4darray catage(styr-nseas,k,1,Nfleet,1,gmorph,0,nages) 4darray disc_age(styr-3*nseas,TimeMax_Fcast_std+nseas,1,2*N_retain_fleets,1,gmorph,0,nages); 4darray equ_catage(1,nseas,1,Nfleet,1,gmorph,0,nages) 4darray equ_numbers(1,nseas,1,pop,1,gmorph,0,3*nages) 4darray equ_Z(1,nseas,1,pop,1,gmorph,0,nages) matrix catage_tot(1,gmorph,0,nages)//sum the catches for all fleets, reuse matrix each year matrix Hrate(1,Nfleet,styr-3*nseas,k) //Harvest Rate for each fleet matrix bycatch_F(1,Nfleet,1,nseas) 3darray catch_fleet(styr-3*nseas,k,1,Nfleet,1,6) // 1=sel_bio, 2=kill_bio; 3=ret_bio; 4=sel_num; 5=kill_num; 6=ret_num matrix annual_catch(styr-1,YrMax,1,6) // same six as above matrix annual_F(styr-1,YrMax,1,3) // 1=sum of hrate (if Pope fmethod) or sum hrate*seasdur if F; 2=Z-M for selected ages; 3=M 3darray equ_catch_fleet(1,6,1,nseas,1,Nfleet) matrix fec(1,gmorph,0,nages) //relative fecundity at age, is the maturity times the weight-at-age times eggs/kg for females matrix make_mature_bio(1,gmorph,0,nages) // mature female weight at age matrix make_mature_numbers(1,gmorph,0,nages) // mature females at age matrix virg_fec(1,gmorph,0,nages) vector Equ_SpawnRecr_Result(1,2); number fish_bio; number fish_bio_r; number fish_bio_e; number fish_num_e; number fish_num; number fish_num_r; number vbio; number totbio; number smrybio; number smrynum; number smryage; // mean age of the summary numbers (not accounting for settlement timing) number catch_mnage; // mean age of the catch (not accounting for settlement timing or season of the catch) number catch_mnage_d; // total catch numbers for calc of mean age number harvest_rate; // Harvest rate number maxpossF; 4darray Z_rate(styr-3*nseas,k,1,pop,1,gmorph,0,nages) 3darray Zrate2(1,pop,1,gmorph,0,nages) LOCAL_CALCS if(F_Method==2) // continuous F // {k=Nfleet*(TimeMax-styr+1);} {k=N_Fparm;} else {k=-1;} END_CALCS init_bounded_number_vector F_rate(1,k,0.,Fparm_max,Fparm_PH) vector Nmigr(1,pop); number Nsurvive; number caa; number Fmult; number Fcast_Fmult; number Fcurr_Fmult; number Fchange; number last_calc; matrix Fcast_RelF_Use(1,nseas,1,Nfleet); matrix Bmark_RelF_Use(1,nseas,1,Nfleet); number alpha; number beta; number GenTime; vector cumF(1,gmorph); vector maxF(1,gmorph); number Yield; number Adj4010; // !!k1 = styr+(endyr-styr)*nseas-1 + nseas + 1; // !!y=k1+N_Fcast_Yrs*nseas-1; !!// SS_Label_Info_5.1.4 #Create Q_parm and associated arrays init_bounded_number_vector Q_parm(1,Q_Npar2,Q_parm_LO,Q_parm_HI,Q_parm_PH) matrix Svy_log_q(1,Nfleet,1,Svy_N_fleet); matrix Svy_q(1,Nfleet,1,Svy_N_fleet); matrix Svy_se_use(1,Nfleet,1,Svy_N_fleet) matrix Svy_est(1,Nfleet,1,Svy_N_fleet) // will store expected survey in normal or lognormal units as needed vector surv_like(1,Nfleet) // likelihood of the indices matrix Q_dev_like(1,Nfleet,1,2) // likelihood of the Q deviations vector disc_like(1,Nfleet) // likelihood of the discard biomass vector mnwt_like(1,Nfleet) // likelihood of the mean body wt matrix exp_disc(1,Nfleet,1,disc_N_fleet) 3darray retain(styr-3,YrMax,1,Nfleet,1,nlength2) vector retain_M(1,nlength) 3darray discmort(styr-3,YrMax,1,Nfleet,1,nlength2) vector discmort_M(1,nlength) vector exp_mnwt(1,nobs_mnwt) matrix Morphcomp_exp(1,Morphcomp_nobs,6,5+Morphcomp_nmorph) // expected value for catch by growthpattern 3darray SzFreqTrans(1,SzFreq_Nmeth*nseas,1,nlength2,1,SzFreq_Nbins_seas_g); !!// SS_Label_Info_5.1.5 #Selectivity-related parameters !! echoinput<<" now dimension the selectivity arrays "<0) {k=TimeMax_Fcast_std+nseas;} else {k=TimeMax+nseas;} END_CALCS !!// SS_Label_Info_5.1.7 #Create arrays for storing derived selectivity quantities for use in mortality calculations 4darray fish_body_wt(styr-3*nseas,k,1,gmorph,1,Nfleet,0,nages); // wt (adjusted for size selex) 4darray sel_al_1(1,nseas,1,gmorph,1,Nfleet,0,nages); // selected * wt 4darray sel_al_2(1,nseas,1,gmorph,1,Nfleet,0,nages); // selected * retained * wt 4darray sel_al_3(1,nseas,1,gmorph,1,Nfleet,0,nages); // selected numbers 4darray sel_al_4(1,nseas,1,gmorph,1,Nfleet,0,nages); // selected * retained numbers 4darray deadfish(1,nseas,1,gmorph,1,Nfleet,0,nages); // sel * (retain + (1-retain)*discmort) 4darray deadfish_B(1,nseas,1,gmorph,1,Nfleet,0,nages); // sel * (retain + (1-retain)*discmort) * wt 4darray save_sel_fec(styr-3*nseas,TimeMax_Fcast_std+nseas,1,gmorph,0,Nfleet,0,nages) // save sel_al_3 (Asel_2) and save fecundity for output; +nseas covers no forecast setups 4darray Sel_for_tag(TG_timestart*Do_TG,TimeMax*Do_TG,1,gmorph*Do_TG,1,Nfleet,0,nages) vector TG_report(1,Nfleet*Do_TG); vector TG_rep_decay(1,Nfleet*Do_TG); 3darray save_sp_len(styr,YrMax,1,2*Nfleet,1,50); // use to output selex parm values after adjustment 3darray exp_l(1,Nfleet,1,Nobs_l,1,nlen_bin2) matrix neff_l(1,Nfleet,1,Nobs_l) vector tempvec_l(1,nlength); vector exp_l_temp(1,nlength2); vector exp_truea_ret(0,nages2); vector exp_l_temp_ret(1,nlength2); // retained lengthcomp vector exp_l_temp_dat(1,nlen_bin2); // vector offset_l(1,Nfleet) // Compute OFFSET for multinomial (i.e, value for the multinonial function matrix length_like(1,Nfleet,1,Nobs_l) // likelihood of the length-frequency data vector length_like_tot(1,Nfleet) // likelihood of the length-frequency data matrix SzFreq_exp(1,SzFreq_totobs,1,SzFreq_Setup2); vector SzFreq_like(1,SzFreq_N_Like) 3darray exp_a(1,Nfleet,1,Nobs_a,1,n_abins2) vector exp_a_temp(1,n_abins2) vector tempvec_a(0,nages) vector agetemp(0,nages2) matrix neff_a(1,Nfleet,1,Nobs_a) matrix age_like(1,Nfleet,1,Nobs_a) // likelihood of the age-frequency data vector age_like_tot(1,Nfleet) // likelihood of the age-frequency data vector sizeage_like(1,Nfleet) // likelihood of the age-frequency data 3darray exp_ms(1,Nfleet,1,Nobs_ms,1,n_abins2) 3darray exp_ms_sq(1,Nfleet,1,Nobs_ms,1,n_abins2) number Morphcomp_like number equ_catch_like vector catch_like(1,Nfleet) number recr_like number noBias_recr_like number JT_obj_fun number regime_like number sum_recdev number Fcast_recr_like number parm_like matrix parm_dev_like(1,N_parm_dev,1,2) // vector selparm_dev_like(1,N_selparm_dev) number CrashPen number SoftBoundPen number Equ_penalty number F_ballpark_like number R1 number R1_exp number t1 number t2 number temp number temp1 number temp2 number temp3 number temp4 number join1 number join2 number join3 number upselex number downselex number peak number peak2 number point1 number point2 number point3 number point4 number timing number equ_Recr number equ_F_std number equ_M_std !!// SS_Label_Info_5.1.8 #Create matrix called smry to store derived quantities of interest matrix Smry_Table(styr-3,YrMax,1,20+2*gmorph); // 1=totbio, 2=smrybio, 3=smrynum, 4=enc_catch, 5=dead_catch, 6=ret_catch, 7=spbio, 8=recruit, // 9=equ_totbio, 10=equ_smrybio, 11=equ_SSB_virgin, 12=equ_S1, 13=Gentime, 14=YPR, 15=meanage_spawners, 16=meanage_smrynums, 17=meanage_catch // 18, 19, 20 not used // 21+cumF-bymorph, maxF-by morph matrix env_data(styr-1,YrMax,-4,N_envvar) matrix TG_save(1,N_TG,1,3+TG_endtime) // save gradients for all active parameters !! int parm_grad_active_count = max(1,active_count); // the dummy parameter is still in there even if no other params are estimated vector parm_gradients(1,parm_grad_active_count); !!// SS_Label_Info_5.2 #Create sdreport vectors sdreport_vector SSB_std(1,N_STD_Yr); sdreport_vector recr_std(1,N_STD_Yr); sdreport_vector SPR_std(1,N_STD_Yr_Ofish); sdreport_vector F_std(1,N_STD_Yr_F); sdreport_vector depletion(1,N_STD_Yr_Dep); sdreport_vector Mgmt_quant(1,N_STD_Mgmt_Quant) sdreport_vector Extra_Std(1,Extra_Std_N) sdreport_vector Svy_sdreport_est(1,Svy_N_sdreport) !!// SS_Label_Info_5.3 #Create log-Likelihood vectors vector MGparm_Like(1,N_MGparm2) vector init_F_Like(1,N_init_F) vector Q_parm_Like(1,Q_Npar2) vector selparm_Like(1,N_selparm2) vector SR_parm_Like(1,N_SRparm3) vector recdev_cycle_Like(1,recdev_cycle) !! k=Do_TG*(3*N_TG+2*Nfleet1); vector TG_parm_Like(1,k); !!// SS_Label_Info_5.4 #Define objective function objective_function_value obj_fun number last_objfun vector phase_output(1,max_phase+1) !!cout<<" end of parameter section "<retro_yr) F_ballpark_yr=retro_yr; if(F_ballpark_yr0) { for (i=1; i<=Svy_N_fleet(f); i++) { Svy_se(f,i) = Svy_se_rd(f,i); // don't overwrite the input values if(Svy_use(f,i)>0) { if(Svy_errtype(f)>=0) // lognormal or lognormal T_dist { if(Svy_obs(f,i)<=0.0) {N_warn++; cout<<" EXIT - see warning "<0) { for (i=1; i<=disc_N_fleet(f); i++) { if(yr_disc_use(f,i)>=0.) { if(cv_disc(f,i)<=0.0) cv_disc(f,i)=0.001; if(disc_errtype(f)>=0 || disc_errtype(f)==-3) { // input is CV sd_disc(f,i)=cv_disc(f,i)*obs_disc(f,i); } else { // input is SD sd_disc(f,i)=cv_disc(f,i); } sd_disc(f,i)+=var_adjust(2,f); // note that adjustment is to the sd, not the CV if(sd_disc(f,i)<0.001) sd_disc(f,i)=0.001; } } } echoinput<<" discard stderr has been set-up "<0.) // used observation { mnwtdata(7,i)+=var_adjust(3,mnwtdata(3,i)); if(mnwtdata(7,i)<=0.0) mnwtdata(7,i)=0.001; mnwtdata(8,i)=mnwtdata(6,i)*mnwtdata(7,i); // se = cv*obs mnwtdata(9,i)=DF_bodywt*square(mnwtdata(8,i)); mnwtdata(10,i)=sd_offset*log(mnwtdata(8,i)); } } echoinput<<" mean bodywt stderr has been set-up "<0) for (f=1; f <= Nfleet; f++) for (i=1; i <= Nobs_l(f); i++) // if(header_l(f,i,3)>0) { nsamp_l(f,i)*=var_adjust(4,f); // {if(nsamp_l(f,i)<=1.0) nsamp_l(f,i)=1.;} // adjust sample size nsamp_l(f,i) = max(min_sample_size_L(f),nsamp_l(f,i)); if(gen_l(f,i) !=2) offset_l(f,i) -= nsamp_l(f,i) * obs_l(f,i)(tails_l(f,i,1),tails_l(f,i,2))*log(obs_l(f,i)(tails_l(f,i,1),tails_l(f,i,2))); if(gen_l(f,i) >=2 && gender==2) offset_l(f,i) -= nsamp_l(f,i) * obs_l(f,i)(tails_l(f,i,3),tails_l(f,i,4))*log(obs_l(f,i)(tails_l(f,i,3),tails_l(f,i,4))); } // echoinput<<" length_comp offset: "<0) { echoinput<<"Create superperiod sample weights for survey obs"<0) { echoinput<<"Create superperiod sample weights for discard obs"<0) { echoinput<<"Create superperiod sample weights for length obs"<0) { echoinput<<"Create superperiod sample weights for age obs"<0) { echoinput<<"Create superperiod sample weights for meansize obs"<0) for (f=1; f <= Nfleet; f++) for (i=1; i <= Nobs_a(f); i++) // if(header_a(f,i,3)>0) { nsamp_a(f,i)*=var_adjust(5,f); // {if(nsamp_a(f,i)<=1.0) nsamp_a(f,i)=1.;} // adjust sample size nsamp_a(f,i) = max(min_sample_size_A(f),nsamp_a(f,i)); if(gen_a(f,i) !=2) offset_a(f,i) -= nsamp_a(f,i) * obs_a(f,i)(tails_a(f,i,1),tails_a(f,i,2))*log(obs_a(f,i)(tails_a(f,i,1),tails_a(f,i,2))); if(gen_a(f,i) >=2 && gender==2) offset_a(f,i) -= nsamp_a(f,i) * obs_a(f,i)(tails_a(f,i,3),tails_a(f,i,4))*log(obs_a(f,i)(tails_a(f,i,3),tails_a(f,i,4))); } // echoinput<<" agecomp offset "<0) {for (f=1; f <= Nfleet; f++) for (i=1; i <= Nobs_ms(f); i++) for (b=1;b<=n_abins2;b++) { if(obs_ms_n(f,i,b)>0) { obs_ms_n(f,i,b)=sqrt(var_adjust(6,f)*obs_ms_n(f,i,b)); // if(obs_ms_n(f,i,b)<=1.0) obs_ms_n(f,i,b)=1.; // adjust sample size } } } echoinput<<" setup stderr for mean size-at-age: "<0) { N_suprper_SzFreq=0; // redo this counter so can use the counter in_superperiod=0; for (iobs=1; iobs <= SzFreq_totobs; iobs++) { f=abs(SzFreq_obs1(iobs,4)); y=abs(SzFreq_obs1(iobs,2)); if (var_adjust(7,f) != 1.0) { SzFreq_sampleN(iobs)*=var_adjust(7,f); // if (SzFreq_sampleN(iobs) < 1.0) SzFreq_sampleN(iobs) = 1.; } k=SzFreq_obs_hdr(iobs,6); // get the method f=abs(SzFreq_obs_hdr(iobs,3)); s=SzFreq_obs_hdr(iobs,2); // sign used to indicate start/stop of super period if(SzFreq_sampleN(iobs)>0 && SzFreq_obs_hdr(iobs,3)>0) { z1=SzFreq_obs_hdr(iobs,7); z2=SzFreq_obs_hdr(iobs,8); g=SzFreq_LikeComponent(f,k); SzFreq_like_base(g)-=SzFreq_sampleN(iobs)*SzFreq_obs(iobs)(z1,z2)*log(SzFreq_obs(iobs)(z1,z2)); } // identify super-period starts and stops if(s<0) // start/stop a super-period ALL observations must be continguous in the file { if(in_superperiod==0) { N_suprper_SzFreq++; suprper_SzFreq_start(N_suprper_SzFreq)=iobs; in_superperiod=1; } else if(in_superperiod==1) // end a super-period { suprper_SzFreq_end(N_suprper_SzFreq)=iobs; in_superperiod=0; } } } echoinput<<" gen size comp var adjust has been set-up "<0) { echoinput<<"sizefreq superperiod start obs: "<0) { for (y=1;y<=recdev_cycle;y++) { recdev_cycle_parm(y)=recdev_cycle_parm_RD(y,3); } } if(recdev_do_early>0) recdev_early.initialize(); if(Do_Forecast>0) Fcast_recruitments.initialize(); if(Do_Forecast>0) Fcast_impl_error.initialize(); if(do_recdev==1) {recdev1.initialize();} // set devs to zero else if(do_recdev>=2) {recdev2.initialize();} // set devs to zero if(recdev_read>0) { for (j=1;j<=recdev_read;j++) { y=recdev_input(j,1); if(y>=recdev_first && y<=YrMax) { if(y=2) {recdev2(y)=recdev_input(j,2);} } else { Fcast_recruitments(y)=recdev_input(j,2); } } else { N_warn++; warning<<" Trying to specify a recdev out of allowable range of years "<=2) echoinput<0) echoinput<< " Q_parms read from ctl "<0) { for (i=1;i<=N_init_F;i++) init_F(i) = init_F_RD(i); // set vector of initial parms echoinput<< " initF_parms read from ctl "<0) { for (k=1;k<=F_detail;k++) { f=F_setup2(k,1); y=F_setup2(k,2); s=F_setup2(k,3); if(y>0) {y1=y; y2=y;} else {y1=-y; y2=endyr;} for(y=y1; y<=y2; y++) { t=styr+(y-styr)*nseas+s-1; g=do_Fparm(f,t); if(g>0 && F_setup2(k,4)!=-999) {F_rate(g)=F_setup2(k,4); Hrate(f,t)=F_setup2(k,4);} } } } echoinput<< " Fmort_parms have been reset "<0) { k=Do_TG*(3*N_TG+2*Nfleet1); for (i=1;i<=k;i++) { TG_parm(i)=TG_parm2(i,3); } echoinput<< " Tag_parms read from ctl "<0) { echoinput<0) { recdev_RD(recdev_early_start,recdev_early_end)=value(recdev_early(recdev_early_start,recdev_early_end)); for (y=recdev_early_start;y<=recdev_early_end;y++) {recdev_early(y) = Check_Parm(y,recdev_early_PH, recdev_LO, recdev_HI, 0, 0., 1., jitter, recdev_early(y));} // recdev_early -=sum(recdev_early)/(recdev_early_end-recdev_early_start+1); recdev_use(recdev_early_start,recdev_early_end)=value(recdev_early(recdev_early_start,recdev_early_end)); } if(recdev_PH>0 && do_recdev>0) { echoinput<0) { recdev_RD(recdev_end+1,YrMax)=value(Fcast_recruitments(recdev_end+1,YrMax)); recdev_use(recdev_end+1,YrMax)=value(Fcast_recruitments(recdev_end+1,YrMax)); impl_error_use(endyr+1,YrMax)=value(Fcast_impl_error(endyr+1,YrMax)); } echoinput<< " rec_devs after check "<0) { echoinput<0) { echoinput<0) { echoinput<0) { echoinput<0) { echoinput<0) { echoinput<0) for (j=parm_dev_minyr(i);j<=parm_dev_maxyr(i);j++) { parm_dev(i,j)=Check_Parm(j,parm_dev_PH(i), -5,5, 0, 0., 1., jitter, parm_dev(i,j)); } for (i=1;i<=N_parm_dev;i++) for (j=parm_dev_minyr(i);j<=parm_dev_maxyr(i);j++) {parm_dev_use(i,j)=value(parm_dev(i,j));} echoinput<< " parm_devs after check "<0) { // create correlation matrix for 2D_AR approaches // TwoD_AR_def: 1-fleet, 2-ymin, 3-ymax, 4-amin, 5-amax, 6-sigma_amax, 7-use_rho, 8-age/len, 9-dev_phase // 10-mindimension, 11=maxdim, 12-N_parm_dev, 13-selparm_location cor.initialize(); det_cor=1.0; inv_cor.initialize(); for(f=1;f<=TwoD_AR_cnt;f++) { double rho_a; double rho_y; // location in selparm of rho if(TwoD_AR_def[f](7)==0) { echoinput<<"fleet: "<=1) { for (y=styr-1;y<=(YrMax);y++) for (j=1;j<=N_envvar;j++) {env_data(y,j)=env_data_RD(y,j);} } // SS_Label_Info_6.7 #Initialize several rebuilding items if(Rebuild_Ydecl==-1) Rebuild_Ydecl=1999; if(Rebuild_Yinit==-1) Rebuild_Yinit=endyr+1; if(Rebuild_Ydecl>YrMax) Rebuild_Ydecl=YrMax; if(Rebuild_Yinit>YrMax) Rebuild_Yinit=YrMax; migrrate.initialize(); depletion.initialize(); natage.initialize(); sel_l.initialize(); sel_a.initialize(); retain.initialize(); discmort.initialize(); discmort2.initialize(); discmort2_a.initialize(); for (f=1;f<=Nfleet;f++) for (y=styr;y<=endyr+1;y++) for (gg=1;gg<=gender;gg++) { discmort2(y,f,gg)=1.0; if(y<=endyr+1) { discmort(y,f)=1.0; discmort_a(y,f)=1.0; retain(y,f)=1.0; } } Richards=1.0; // SS_Label_Info_6.8 #Go thru biological calculations once, with do_once flag=1 to produce extra output to echoinput.sso cout<< " ready to evaluate once in prelim"<10.0) {N_warn++; warning<<" Minimum size bin is:_"<10cm, which is large for use as size-at-age 0.0 recruitment"<0.95*len_bins(nlength)) {N_warn++; warning<<" Maximum size at age: "<0) // set up migration rates { get_migration(); migrrate=value(migrrate); } // SS_Label_Info_6.8.8 #Call fxn get_age_age() transition matrix from real age to observed age' if(N_ageerr>0) { AgeKey_StartAge=0; AgeKey_Linear1=1; AgeKey_Linear2=1; for (j=1;j<=N_ageerr;j++) { if(j!=Use_AgeKeyZero) { age_err(j)=age_err_rd(j); // this is an age err definition that has been read } else { AgeKey_StartAge=int(value(mgp_adj(AgeKeyParm))); if(mgp_adj(AgeKeyParm+3)==0.0000) {AgeKey_Linear1=1;} else {AgeKey_Linear1=0;} if(mgp_adj(AgeKeyParm+6)==0.0000) {AgeKey_Linear2=1;} else {AgeKey_Linear2=0;} } get_age_age(j,AgeKey_StartAge,AgeKey_Linear1,AgeKey_Linear2); // call function to get the age_age key } age_age=value(age_age); // because these are not based on parameters } echoinput<<" made the age_age' key "<0) { get_catch_mult(y, catch_mult_pointer); for(j=styr;j<=YrMax;j++) // so get this value for all years, but can be overwritten by time-varying { catch_mult(j)=catch_mult(y); } } // SS_Label_Info_6.8.9 #Calculated values have been set equal to value() to remove derivative info and save space if their parameters are held constant // SS_Label_Info_6.9 #Set up headers for ParmTrace if(Do_ParmTrace>0) ParmTrace<<"Phase Iter ObjFun Change SSB_start SSB_end BiasAdj_st BiasAdj_max BiasAdj_end "; if(Do_ParmTrace==1 || Do_ParmTrace==4) { for (i=1;i<=active_count;i++) {ParmTrace<<" "<=2) { for (i=1;i<=ParCount;i++) {ParmTrace<<" "< #include #include #include #include time_t start,finish; long hour,minute,second; double elapsed_time; // SS_Label_Info_10.1 #Open output files using ofstream ofstream warning("warning.sso"); ofstream echoinput("echoinput.sso"); ofstream ParmTrace("ParmTrace.sso"); ofstream report5("Forecast-report.sso"); ofstream report2("CumReport.sso",ios::app); ofstream bodywtout("wtatage.ss_new"); ofstream SS2out; // this is just a create // SS_Label_Info_10.2 #Define some adstring variables adstring_array ParmLabel; // extendable array to hold the parameter labels adstring_array Parm_info; // extendable array to hold the parameter labels adstring_array SzFreq_units_label; adstring_array SzFreq_scale_label; adstring_array fleetname; adstring fleetnameread; adstring depletion_basis_label; adstring F_report_label; adstring SPR_report_label; adstring onenum(4); adstring anystring; adstring anystring2; adstring_array version_info; adstring version_info2; adstring version_info3; adstring version_info_short; adstring_array Starter_Comments; adstring_array Data_Comments; adstring_array Control_Comments; adstring_array Forecast_Comments; adstring_array NumLbl; adstring_array GenderLbl; // gender label adstring_array GP_Lbl; // gender label adstring_array CRLF; // blank to terminate lines // declare some entities that need global access int ParCount; int timevary_parm_cnt; int N_warn; int styr; int endyr; int YrMax; int nseas; int Ncycle; int seas_as_year; // SS_Label_Info_10.3 #start random number generator with seed based on time random_number_generator radm(long(time(&start))); std::vector Parm_minmax; std::vector catch_read; std::vector Svy_data; std::vector discdata; std::vector mnwtdata1; std::vector lendata; std::vector Age_Data; std::vector sizeAge_Data; std::vector H4010_scale_vec_rd; std::vector Fcast_InputCatch_list; std::vector Fcast_Catch_Allocation_list; std::vector env_temp; std::vector WTage_in; std::vector var_adjust_data; std::vector lambda_change_data; std::vector timevary_parm_rd; std::vector timevary_def; std::vector TwoD_AR_def; // function in GLOBALS to do the timing setup in the data section void get_data_timing(const dvector& to_process, const ivector& timing_constants, ivector i_result, dvector r_result, const dvector& seasdur, const dvector& subseasdur_delta, const dvector& azero_seas, const dvector& surveytime) { // r_result(1,3) will contain: real_month, data_timing_seas, data_timing_yr, // i_result(1,6) will contain y, t, s, f, ALK_time, use_midseas int f,s,subseas,y; double temp, temp1, month, data_timing_seas, data_timing_yr; // timing_constants(1)=read_seas_mo; // timing_constants(2)=nseas; // timing_constants(3)=N_subseas; // timing_constants(4)=mid_subseas; // timing_constants(5)=styr; // timing_constants(6)-endyr; y=int(to_process(1)); month=abs(to_process(2)); f=abs(int(to_process(3))); if(timing_constants(1)==1) // reading season { s=int(month); subseas=timing_constants(4); // mid subseas if(surveytime(f)>=0.) { // fraction of season data_timing_seas=surveytime(f); i_result(6)=1; } else { // for fishing fleets; use midseason and fishery catch data_timing_seas=0.5; i_result(6)=-1; // flag to use season-long fishery catch as the sample } month=1.0 + azero_seas(s)*12. + 12.*data_timing_seas*seasdur(s); } else // reading month.fraction { if(surveytime(f)<0) // so a fishing fleet { if(month>999) { // override to allow a fishing fleet to have explicit timing month-=1000.; i_result(6)=1; } else { i_result(6)=-1; // flag to use season-long fishery catch as the sample } } else { i_result(6)=1; // explicit timing for all survey fleet obs if(month>999) { // override to allow a fishing fleet to have explicit timing month-=1000.; } } if(seas_as_year==0) { temp1=max(0.00001,(month-1.0)/12.); // month as fraction of year s=1; // earlist possible seas; subseas=1; // earliest possible subseas in seas temp=subseasdur_delta(s); // starting value while(temp<=temp1+1.0e-9) { if(subseas==timing_constants(3)) {s++; subseas=1;} else {subseas++;} temp+=subseasdur_delta(s); } data_timing_seas=(temp1-azero_seas(s))/seasdur(s); // remainder converted to fraction of season (and multiplied by seasdur when used) } else {temp1=0.5; month=0.5*seasdur(1)*12.; s=1; subseas=timing_constants(4); data_timing_seas=0.5;} } // i_result(1,6) will contain y, t, s, f, ALK_time, use_midseas // r_result(1,3) will contain: real_month, data_timing_seas*use_midseas, data_timing_yr, // t=styr+(y-styr)*nseas+s-1; // ALK_time=(yr-styr)*nseas*N_subseas+(s-1)*N_subseas+subseas; i_result(1)=y; i_result(2)=timing_constants(5)+(y-timing_constants(5))*timing_constants(2)+s-1; // t i_result(3)=s; i_result(4)=f; if(seas_as_year==0) { if(i_result(6)>=0) { i_result(5)=(y-timing_constants(5))*timing_constants(2)*timing_constants(3)+(s-1)*timing_constants(3)+subseas; // ALK_time // r_result(1,3) : real_month, data_timing_seas, data_timing_yr, r_result(1)=month; r_result(2)=data_timing_seas*i_result(6); r_result(3)=float(y)+(month-1.)/12.; // year.fraction } else // assign to midseason { i_result(5)=(y-timing_constants(5))*timing_constants(2)*timing_constants(3)+(s-1)*timing_constants(3)+timing_constants(4); // ALK_time data_timing_seas=0.5; month=1.0 + azero_seas(s)*12. + 12.*data_timing_seas*seasdur(s); r_result(1)=month; r_result(2)=data_timing_seas*i_result(6); r_result(3)=float(y)+(month-1.)/12.; // year.fraction } } else { i_result(5)=(y-timing_constants(5))*timing_constants(2)*timing_constants(3)+(s-1)*timing_constants(3)+timing_constants(4); // ALK_time r_result(1)=month; r_result(2)=data_timing_seas*i_result(6); r_result(3)=float(y)+0.5; // year.fraction } return; } // global routine to count the number of records before reaching an end condition int count_records(int N_fields) // function definition { int N_records; dvector tempvec(1,N_fields); // vector used for temporary reads echoinput<<" read list until -9999"<> tempvec; echoinput<0) // blocks with z as the block pattern { Nblocks=0.5*(block_design_pass.size()); // if(z>N_Block_Designs) {N_warn++; warning<<"parm: "< N Blocks "<=1) // read {*(ad_comm::global_datafile) >> tempvec(1,7); echoinput<<"read timevary block parameter: "<=1) // read {*(ad_comm::global_datafile) >> tempvec(1,7); echoinput<<"read timevary block parameter: "<=1) // read {*(ad_comm::global_datafile) >> tempvec(1,7); echoinput<<"read timevary block parameter: "<=1) // read {*(ad_comm::global_datafile) >> tempvec(1,7); echoinput<<" read timevary block parm: "<=1) // read {*(ad_comm::global_datafile) >> tempvec(1,7);} if(autogen_timevary==0 || autogen_timevary==2 || (autogen_timevary==3 && tempvec(1)==-12345)) // create or overwrite { if(k==1) {tempvec.fill("{-4.0,4.0,0.,0.,0.5,6,4}");} if(k==2) {tempvec.fill("{-4.0,4.0,0.,0.,0.5,6,4}");} if(k==3) {tempvec.fill("{1.0,20.0,3.,3.,3.0,6,4}");} } timevary_parm_rd.push_back (tempvec); } } else if(baseparm_list(13)==-2) { ParCount++; ParmLabel+=ParmLabel(j)+"_TrendFinal_direct_"+CRLF(1); ParCount++; ParmLabel+=ParmLabel(j)+"_TrendInfl_yr_"+CRLF(1); ParCount++; ParmLabel+=ParmLabel(j)+"_TrendWidth_yr_"+CRLF(1); for(k=1;k<=3;k++) // for the 3 trend parameters { timevary_parm_cnt++; dvector tempvec(1,7); // temporary vector for a time-vary parameter LO HI INIT PRIOR PR_type SD PHASE tempvec.initialize(); if(autogen_timevary>=1) // read {*(ad_comm::global_datafile) >> tempvec(1,7);} if(autogen_timevary==0 || autogen_timevary==2 || (autogen_timevary==3 && tempvec(1)==-12345)) // create or overwrite { if(k==1) {for(a=1;a<=7;a++) tempvec(a)=baseparm_list(a);} if(k==2) {tempvec.fill("{-2.0,2.0,0.,0.,0.5,6,4}"); tempvec(1)=styr; tempvec(2)=endyr; tempvec(3)= (styr+endyr)*0.5; tempvec(4)=tempvec(3);} if(k==3) {tempvec.fill("{1.0,20.0,3.,3.,3.0,6,4}");} } timevary_parm_rd.push_back (tempvec); } } else if(baseparm_list(13)==-3) { ParCount++; ParmLabel+=ParmLabel(j)+"_TrendFinal_frac_"+CRLF(1); ParCount++; ParmLabel+=ParmLabel(j)+"_TrendInfl_frac_"+CRLF(1); ParCount++; ParmLabel+=ParmLabel(j)+"_TrendWidth_yr_"+CRLF(1); for(k=1;k<=3;k++) // for the 3 trend parameters { timevary_parm_cnt++; dvector tempvec(1,7); // temporary vector for a time-vary parameter LO HI INIT PRIOR PR_type SD PHASE tempvec.initialize(); if(autogen_timevary>=1) // read {*(ad_comm::global_datafile) >> tempvec(1,7);} if(autogen_timevary==0 || autogen_timevary==2 || (autogen_timevary==3 && tempvec(1)==-12345)) // create or overwrite { if(k==1) {tempvec.fill("{0.0001,0.999,0.,0.,0.5,6,4}"); tempvec(3)=(baseparm_list(3)-baseparm_list(1))/(baseparm_list(2)-baseparm_list(1)); tempvec(4)=tempvec(3);} if(k==2) {tempvec.fill("{0.0001,0.999,0.5,0.5,0.5,6,4}");} if(k==3) {tempvec.fill("{1.0,20.0,3.,3.,3.,6,4}");} } timevary_parm_rd.push_back (tempvec); } } else { for (int icycle=1;icycle<=Ncycle;icycle++) { ParCount++; ParmLabel+=ParmLabel(j)+"_Cycle_"+NumLbl(icycle)+CRLF(1); timevary_parm_cnt+=1; // count the cycle parameters } } for(y=styr-1; y<=YrMax; y++) {timevary_byyear(y)=1;} // all years need calculation for trends } } if(baseparm_list(8)!=0) // env effect is used { k=timevary_setup(6); // if(timevary_setup(7)==99) timevary_setup(7)=-1; // for linking to rel_spawn biomass // if(timevary_setup(7)==98) timevary_setup(7)=-2; // for linking to exp(recdev) // if(timevary_setup(7)==97) timevary_setup(7)=-3; // for linking to rel_smrybio // if(timevary_setup(7)==96) timevary_setup(7)=-4; // for linking to rel_smry_num echoinput<<"env link_type: "<=1) // read {*(ad_comm::global_datafile) >> tempvec(1,7);} if(autogen_timevary==0 || autogen_timevary==2 || (autogen_timevary==3 && tempvec(1)==-12345)) // create or overwrite {tempvec.fill("{-10.,10.0,1.0,1.0,0.5,6,4}");} timevary_parm_rd.push_back (tempvec(1,7)); break; } case 2: // additive { echoinput<<" do env additive "<=1) // read {*(ad_comm::global_datafile) >> tempvec(1,7);} if(autogen_timevary==0 || autogen_timevary==2 || (autogen_timevary==3 && tempvec(1)==-12345)) // create or overwrite {tempvec.fill("{-10.,10.0,1.0,1.0,0.5,6,4}");} timevary_parm_rd.push_back (tempvec(1,7)); break; } case 4: // logistic with offset { ParCount++; ParmLabel+=ParmLabel(j)+"_ENV_offset"; timevary_parm_cnt++; dvector tempvec(1,7); tempvec.initialize(); if(autogen_timevary>=1) // read {*(ad_comm::global_datafile) >> tempvec(1,7);} if(autogen_timevary==0 || autogen_timevary==2 || (autogen_timevary==3 && tempvec(1)==-12345)) // create or overwrite {tempvec.fill("{-0.9,0.9,0.0,0.0,0.5,6,4}");} timevary_parm_rd.push_back (tempvec(1,7)); ParCount++; ParmLabel+=ParmLabel(j)+"_ENV_lgst_slope"; timevary_parm_cnt++; tempvec.initialize(); if(autogen_timevary>=1) // read {*(ad_comm::global_datafile) >> tempvec(1,7);} if(autogen_timevary==0 || autogen_timevary==2 || (autogen_timevary==3 && tempvec(1)==-12345)) // create or overwrite {tempvec.fill("{-0.9,0.9,0.0,0.0,0.5,6,4}");} timevary_parm_rd.push_back (tempvec(1,7)); break; } } for (y=env_data_pass.indexmin();y<=env_data_pass.indexmax()-1;y++) { if(timevary_setup(7)>0 ) { if(env_data_pass(y)!=0.0) {timevary_byyear(y)=1; timevary_byyear(y+1)=1; } } else if (timevary_setup(7)<0 ) // density-dependence being used {timevary_byyear(y)=1; } } } if(baseparm_list(9)>0) // devs are used { N_parm_dev++; // count of dev vectors that are used timevary_setup(8)=N_parm_dev; // specifies which dev vector will be used by a parameter timevary_setup(9)=baseparm_list(9); // code for dev link type y=baseparm_list(10); if(yYrMax) { N_warn++; warning<<" reset parm_dev end year to YrMax for parm: "<=1) // read { *(ad_comm::global_datafile) >> tempvec(1,7); timevary_setup(12)=baseparm_list(12); // dev phase } if(autogen_timevary==0 || autogen_timevary==2 || (autogen_timevary==3 && tempvec(1)==-12345)) // create or overwrite { tempvec.fill("{0.0001,2.0,0.5,0.5,0.5,6,-5}"); if(finish_starter==999) { tempvec(3)=baseparm_list(12); // set init to value on the 3.24 format base parameter line tempvec(4)=baseparm_list(12); // set prior } // timevary_setup(12)=-5; // set reasonable phase for devs; // baseparm_list(12)=-5; // N_warn++; warning<<"A parameter dev vector has been created with phase set to negative. Edit phase as needed "<=1) // read {*(ad_comm::global_datafile) >> tempvec2(1,7);} if(autogen_timevary==0 || autogen_timevary==2 || (autogen_timevary==3 && tempvec(1)==-12345)) // create or overwrite {tempvec2.fill("{-0.99,0.99,0.0,0.0,0.5,6,-6}");} timevary_parm_rd.push_back (dvector(tempvec2(1,7))); echoinput<<"dev vec: "<1) { last_objfun=obj_fun; } // SS_Label_Info_11.2 #For Fmethod=2, set parameter values (F_rate) equal to Hrate array fromcalculated using hybrid method in previous phase if(F_Method==2) { if(F_setup(2)>1 && j_phase==F_setup(2) && readparfile==0) // so now start doing F as paameters { for (f=1;f<=Nfleet;f++) for (t=styr;t<=TimeMax;t++) { g=do_Fparm(f,t); if(g>0) {F_rate(g)=Hrate(f,t);} } } } } // end BETWEEN_PHASES_SECTION // SS_Label_Section_12. #FINAL_SECTION FINAL_SECTION { int jj; // SS_Label_Info_12.1 #Get run ending time time(&finish); elapsed_time = difftime(finish,start); hour = long(elapsed_time)/3600; minute = long(elapsed_time)%3600/60; second = (long(elapsed_time)%3600)%60; cout<gmax << endl<gmax >final_conv) {N_warn++; warning<<"Final gradient: "<gmax <<" is larger than final_conv: "<0) { setup_Benchmark(); if(did_MSY==0) { Get_Benchmarks(show_MSY); if(mceval_phase()==0) cout<<" finished benchmark for reporting"<0) { report5<<"THIS FORECAST FOR PURPOSES OF GETTING DISPLAY QUANTITIES"<0) write_summaryoutput(); write_SS_summary(); // SS_Label_Info_12.4.3 #Call fxn write_rebuilder_output to produce rebuilder.sso if(reportdetail>0) { if(Do_Rebuilder>0 && mceval_counter<=1) write_rebuilder_output(); cout<<" finished rebuilder.sso "<0) { write_nudata(); if(show_MSY==1) cout<<" finished data.ss_new with N replicates: "<0) {N_warn++; warning<<"Reminder: Number of lamdas !=0.0 and !=1.0: "<0) N_warn++; if(N_warn>0) {cout<<"See warning.sso for N warnings: "<0) { if(Svy_N>0) report<<" CPUE " <0) report<<" Disc " <0) report<<" MnWt " <0)report<<" LEN "<0)report<<" AGE "<0) report<<" L-at-A " <1) {report<<"Catch "<0) report<<" sizefreq "<0) report<<" TG-fleetcomp "<0) {report<<" "<0) { for (gg=1;gg<=gender;gg++) report<10) { for (gg=1;gg<=gender;gg++) report<0) { save_for_report=1; save_gparm=0; y=styr; setup_recdevs(); get_initial_conditions(); get_time_series(); // in ADMB's report_section evaluate_the_objective_function(); wrote_bigreport=0; if(reportdetail>0) { write_bigoutput(); cout<<" finished writing bigoutput for last_phase in report section and before hessian "<10 || mceval_counter>10) Do_ParmTrace=0; } // SS_Label_Info_7.3 #Reset Fmethod 2 to Fmethod 3 according to the phase if(F_Method==2) { if(current_phase()>=F_setup(2) || (readparfile==1 && current_phase()<=1)) // set Hrate = Frate parameters on first call if readparfile=1, or for advanced phases { for (g=1;g<=N_Fparm;g++) { f=Fparm_loc(g,1); t=Fparm_loc(g,2); Hrate(f,t)=F_rate(g); } } F_Method_use=2; if(current_phase() < F_setup(2)) F_Method_use=3; // use hybrid } else { F_Method_use=F_Method; } // SS_Label_Info_7.4 #Do the time series calculations if(mceval_counter==0 || (mceval_counter>burn_intvl && ((double(mceval_counter)/double(thin_intvl)) - double((mceval_counter/thin_intvl))==0) )) // check to see if burn in period is over { // add dynamic Bzero here setup_recdevs(); y=styr; // SS_Label_Info_7.4.1 #Call fxn get_initial_conditions() to get the virgin and initial equilibrium population get_initial_conditions(); if(do_once==1) cout<<" OK with initial conditions "<0) { Get_Benchmarks(show_MSY); } else {Mgmt_quant(1)=SSB_virgin; warning<<"set to virgin in proced if no benchmark"<0) { if(show_MSY==1) report5<<"THIS FORECAST FOR PURPOSES OF STD REPORTING"<0 && mceval_phase()==0) cout<<"finished benchmark, forecast, and sdreporting"<1) { if(Svy_N>0) cout<<" CPUE " <0) cout<<" Disc " <0) cout<<" MnWt " <0) cout<<" Length " <0) cout<<" AGE " <0) cout<<" L-at-A " <0) cout<<" sizefreq "<0) cout<<" TG-fleetcomp "<1) {cout<<"Catch "<0) { temp=norm2(recdev(recdev_start,recdev_end)); temp=sqrt((temp+0.0000001)/(double(recdev_end-recdev_start+1))); if(mcmc_counter==0 && mceval_counter==0) {cout<0) {cout<<" MCMC: "<0) {cout<<" MCeval: "<1 && sum(catch_like)>0.01) {cout<<" cat "<0.01) {cout<<" crash "<=0) {ParmTrace<<" "<=0) {ParmTrace<<" "<0) { for (j=1;j<=recdev_cycle;j++) { if(recdev_cycle_PH(j)>=0) {ParmTrace<<" "<0) {ParmTrace<<" "<0) { if(do_recdev==1) {ParmTrace<<" "<=2) {ParmTrace<<" "<0) ParmTrace<0 && Do_Impl_Error>0) ParmTrace<0) {ParmTrace<<" "<0) {ParmTrace<<" "<0) {ParmTrace<<" "<0) {ParmTrace<<" "<0) {ParmTrace<<" "<0) { for (j=1;j<=N_parm_dev;j++) { if(parm_dev_PH(j)>0) ParmTrace<0) ParmTrace<0) ParmTrace<=2) {ParmTrace<0) ParmTrace<0) ParmTrace<0) ParmTrace<0) ParmTrace<0) { for (j=1;j<=N_parm_dev;j++) {ParmTrace<0) // timevary { mgp_adj(f)=parm_timevary(MGparm_timevary(f),yz); if(parm_adjust_method==1 && (save_for_report>0 || do_once==1)) { if(mgp_adj(f)MGparm_1(f,2)) { N_warn++; warning<<" adjusted MGparm out of bounds (Phase, Iter, parm#, yr, min, max, base, adj_value) "<0) mgp_adj(j) = mgp_adj(MGparm_offset(j)); } } if(save_for_report>0) mgp_save(yz)=value(mgp_adj); } //******************************************************************** /* SS_Label_FUNCTION 15 get_growth1; calc some seasonal and CV_growth biology factors that cannot be time-varying */ FUNCTION void get_growth1() { // SS_Label_Info_15.1 #create seasonal effects for growth K, and for wt_len parameters if(MGparm_doseas>0) { if(MGparm_seas_effects(10)>0) // for seasonal K { VBK_seas(0)=0.0; for (s=1;s<=nseas;s++) { VBK_seas(s)=mfexp(MGparm(MGparm_seas_effects(10)+s)); VBK_seas(0)+=VBK_seas(s)*seasdur(s); } } else { VBK_seas=sum(seasdur); // set vector to null effect } for(gp=1;gp<=N_GP;gp++) for (j=1;j<=8;j++) { if (do_once==1) echoinput<0) { wtlen_seas(0,gp,j)=0.0; for (s=1;s<=nseas;s++) { wtlen_seas(s,gp,j)=mfexp(MGparm(MGparm_seas_effects(j)+s)); wtlen_seas(0,gp,j)+=wtlen_seas(s,gp,j)*seasdur(s); // this seems not to be used } } else { for (s=0;s<=nseas;s++) {wtlen_seas(s,gp,j)=1.0;} } } } else { VBK_seas=sum(seasdur); // set vector to null effect for(s=1;s<=nseas;s++) wtlen_seas(s)=1.0; // set vector to null effect } // SS_Label_Info_15.2 #create variability of size-at-age factors using direct assignment or offset approaches gp=0; for (gg=1;gg<=gender;gg++) for (g=1;g<=N_GP;g++) { gp++; Ip=MGparm_point(gg,g); j=Ip+N_M_Grow_parms-2; // index for CVmin k=j+1; // index for CVmax switch(MGparm_def) // for CV of size-at-age { case 1: // direct { if(MGparm(j)>0) {CVLmin(gp)=MGparm(j);} else {CVLmin(gp)=MGparm(N_M_Grow_parms-1);} if(MGparm(k)>0) {CVLmax(gp)=MGparm(k);} else {CVLmax(gp)=MGparm(N_M_Grow_parms);} break; } case 2: // offset { if(gp==1) {CVLmin(gp)=MGparm(j); CVLmax(gp)=MGparm(k);} else {CVLmin(gp)=CVLmin(1)*mfexp(MGparm(j)); CVLmax(gp)=CVLmax(1)*mfexp(MGparm(k));} break; } case 3: // offset like SS2 V1.23 { if(gp==1) {CVLmin(gp)=MGparm(j); CVLmax(gp)=CVLmin(1)*mfexp(MGparm(k));} else {CVLmin(gp)=CVLmin(1)*mfexp(MGparm(j)); CVLmax(gp)=CVLmin(gp)*mfexp(MGparm(k));} break; } } // end switch if((CVLmin(gp)!=CVLmax(gp)) || active(MGparm(N_M_Grow_parms)) || active(MGparm(k))) {CV_const(gp)=1;} else {CV_const(gp)=0;} } } //******************************************************************** /* SS_Label_Function_ 16 #get_growth2; (do seasonal growth calculations for a selected year) */ FUNCTION void get_growth2() { // called at beginning of each year, so y is known // if y=styr, then does equilibrium size-at-age according to start year growth parameters // for any year, calculates for each season the size at the beginning of the next season, with growth increment calculated according to that year's parameters //Growth Cessation Model code added by Mark Maunder October 2018 //The growth cessation model is described in //Maunder, M.N., Deriso, R.B., Schaefer, K.M., Fuller, D.W., Aires-da-Silva, A.M., Minte‑Vera, C.V., Campana, S.E. 2018. The growth cessation model: a growth model for species showing a near cessation in growth with application to bigeye tuna (Thunnus obesus). Marine Biology (2018) 165:76. //Ian Taylor derived the formula for Linf int k2; int add_age; int ALK_idx2; // beginning of first subseas of next season dvariable plusgroupsize; dvariable current_size; dvariable VBK_temp; dvariable VBK_temp2; // with VBKseas(s) multiplied dvariable LminR; dvariable LmaxR; dvariable LinfR; dvariable inv_Richards; dvariable t50; // SS_Label_Info_16.1 #Create Cohort_Growth offset for the cohort borne (age 0) this year if(CGD_onoff>0) // cohort specific growth multiplier { temp=mgp_adj(MGP_CGD); k=min(nages,(YrMax-y)); for (a=0;a<=k;a++) {Cohort_Growth(y+a,a)=temp;} // so this multiplier on VBK is stored on a diagonal into the future } // SS_Label_Info_16.2 #Loop growth patterns (sex*N_GP) gp=0; if(do_once==1) echoinput<<"GROWTH, yr= "<1 && gp>1) // do offset approach { Lmin(gp)=Lmin(1)*mfexp(mgp_adj(Ip)); Lmax_temp(gp)=Lmax_temp(1)*mfexp(mgp_adj(Ip+1)); VBK(gp)=VBK(1)*mfexp(mgp_adj(Ip+2)); // assigns to all ages for which VBK is defined } else { Lmin(gp)=mgp_adj(Ip); Lmax_temp(gp)=mgp_adj(Ip+1); // size at A2; could be 999 to indicate Linf VBK(gp)=-mgp_adj(Ip+2); // because always used as negative; assigns to all ages for which VBK is defined } VBK_temp=VBK(gp,0); // will be reset to VBK(gp,nages) if using age-specific K // SS_Label_Info_16.2.2 #Set up age specific k if(Grow_type==3) // age specific k { j=1; for (a=1;a<=nages;a++) { if(a==Age_K_points(j)) { VBK(gp,a)=VBK(gp,a-1)*mgp_adj(Ip+2+j); if(j=0;a--) { if(a==Age_K_points(j)) { VBK(gp,a)=VBK(gp,a+1)*mgp_adj(Ip+2+j); if(j=0;a--) { if(a==Age_K_points(j)) { VBK(gp,a)=mgp_adj(Ip+2+j)*VBK_temp; if(j1 && gp>1) { Richards(gp)=Richards(1)*mfexp(mgp_adj(Ip+3)); } else { Richards(gp)=mgp_adj(Ip+3); } LminR=pow(Lmin(gp),Richards(gp)); inv_Richards=1.0/Richards(gp); if(AFIX2==999) { L_inf(gp)=Lmax_temp(gp); LinfR=pow(L_inf(gp),Richards(gp)); } else { LmaxR=pow(Lmax_temp(gp), Richards(gp)); LinfR=LminR+(LmaxR-LminR)/(1.-mfexp(VBK_temp*VBK_seas(0)*(AFIX_delta))); L_inf(gp)=pow(LinfR,inv_Richards); } if (do_once==1) echoinput<<" linf "<1 && gp>1) {Richards(gp)=Richards(1)*mfexp(mgp_adj(Ip+3));} else {Richards(gp)=mgp_adj(Ip+3);} L_inf(gp)=Lmax_temp(gp); VBK_temp=-VBK(gp,0)*VBK_seas(0); // t50 is the calculated inflection age for the decline in K t50=log(exp((L_inf(gp)-Lmin(gp))*Richards(gp)/VBK_temp)-1.0)/Richards(gp); } else { if(AFIX2==999) {L_inf(gp)=Lmax_temp(gp);} else {L_inf(gp)=Lmin(gp)+(Lmax_temp(gp)-Lmin(gp))/(1.-mfexp(VBK_temp*VBK_seas(0)*(AFIX_delta))); if(do_once==1) echoinput<0) // using time-vary growth { k=min(nages,(YrMax-y)); for (a=0;a<=k;a++) {Cohort_Lmin(gp,y+a,a)=Lmin(gp);} // sets for future years so cohort remembers its size at birth; with Lmin(gp) being size at birth this year } } // end setup of parametric growth parameters } // end switch between parametric and non-parametric growth if(do_once==1) { echoinput<<"sex: "<0) { if(y==styr) { switch(Grow_type) { case 7: // non-parametric { break; } default: { // SS_Label_Info_16.2.4.1 #set up the delta in growth variability across ages if needed if(CV_const(gp)>0) { if(CV_depvar_a==0) {CV_delta(gp)=(CVLmax(gp)-CVLmin(gp))/(Lmax_temp(gp)-Lmin(gp));} else {CV_delta(gp)=(CVLmax(gp)-CVLmin(gp))/(AFIX2_forCV-AFIX);} } else { CV_delta(gp)=0.0; CV_G(gp)=CVLmin(gp); // sets all seasons and whole age range } } } // SS_Label_Info_16.2.4.1.1 #if y=styr, get size-at-age in first subseason of first season of this first year switch (Grow_type) { case 1: { VBK_temp2=VBK_temp*VBK_seas(0); for (a=0;a<=nages;a++) { // Ave_Size(styr,1,g,a) = Lmin(gp) + (Lmin(gp)-L_inf(gp))* (mfexp(VBK_temp2*(real_age(g,1,a)-AFIX))-1.0); Ave_Size(styr,1,g,a) = L_inf(gp) + (Lmin(gp)-L_inf(gp))* mfexp(VBK_temp2*(real_age(g,1,a)-AFIX)); } // done ageloop break; } case 2: // Richards { Ave_Size(styr,1,g)(0,first_grow_age(g)) = Lmin(gp); VBK_temp2=VBK_temp*VBK_seas(0); for (a=first_grow_age(g);a<=nages;a++) { temp=LinfR + (LminR-LinfR)*mfexp(VBK_temp2*(real_age(g,1,a)-AFIX)); Ave_Size(styr,1,g,a) = pow(temp,inv_Richards); } // done ageloop break; } case 5: {} case 4: {} case 3: // age-specific K, so need age-by-age calculations { ALK_idx=1; //VBK_seas(0) accounts for season duration for (a=0;a<=nages;a++) { k2=a-1; if(lin_grow(g,ALK_idx,a)>=-1.0) // linear segment, or first time point beyond AFIX; {Ave_Size(styr,1,g,a) = Lmin(gp) + (Lmin(gp)-L_inf(gp))* (mfexp(VBK(gp,0)*VBK_seas(0)*(real_age(g,1,a)-AFIX))-1.0);} else { Ave_Size(styr,1,g,a) = Ave_Size(styr,1,g,k2) + (mfexp(VBK(gp,k2)*VBK_seas(0))-1.0)*(Ave_Size(styr,1,g,k2)-L_inf(gp)); } // echoinput<-997.) // decay rate has been read; uses same code for Richards and standard { temp1=1.0; temp4=1.0; temp=current_size; temp2=mfexp(-Linf_decay); // cannot use natM or Z because growth is calculated first if(do_once==1) echoinput<<" L_inf "<0 && t2>-1.) { join1=1.0/(1.0+mfexp(-(50.*t2/(1.0+fabs(t2))))); // note the logit transform is not perfect, so growth near Linf will not be exactly same as with native growth function t2*=(1.-join1); // trap to prevent decrease in size-at-age } // SS_Label_info_16.2.4.2.1.1 #calc size at end of the season, which will be size at begin of next season using current seasons growth parms // with k2 adding an age if at the end of the year if((a0 && t2>-1.) { join1=1.0/(1.0+mfexp(-(50.*t2/(1.0+fabs(t2))))); // note the logit transform is not perfect, so growth near Linf will not be exactly same as with native growth function t2*=(1.-join1); // trap to prevent decrease in size-at-age } // SS_Label_info_16.2.4.2.1.1 #calc size at end of the season, which will be size at begin of next season using current seasons growth parms // with k2 adding an age if at the end of the year if((astyr && Linf_decay!=-998.) { // 3.24 code if(do_once==1) echoinput<<" plus group calc: "<<" N _entering: "<0) } // end loop of settlements Ip+=N_M_Grow_parms; } // end loop of growth patterns, gp } // end do growth // ******************************************************************************************************* // SS_Label_Function_16.5 #get_growth3 which calculates mean size-at-age for selected subseason FUNCTION void get_growth3(const int s, const int subseas) { // progress mean growth through time series, accounting for seasonality and possible change in parameters // get mean size at the beginning and end of the season int k2; int add_age; dvariable LinfR; dvariable LminR; dvariable inv_Richards; dvariable t50; dvariable VBK_temp2; ALK_idx=(s-1)*N_subseas+subseas; // note that this changes a global value for (g=g_Start(1)+N_platoon;g<=gmorph;g+=N_platoon) // looping the middle platoons for each sex*gp { if(use_morph(g)>0) { gp=GP(g); switch(Grow_type) { case 1: // regular von B { for (a=0;a<=nages;a++) { // SS_Label_Info_16.5.1 #calc subseas size-at-age from begin season size-at-age, accounting for transition from linear to von Bert as necessary // subseasdur is cumulative time to start of this subseas if(lin_grow(g,ALK_idx,a)==-2.0) // so doing growth curve { t2=Ave_Size(t,1,g,a)-L_inf(gp); // remaining growth potential from first subseas // the constant in join needs to be at least 30 to get rapid transition // the consequence of (t2>-1.) should be investigated for effect on gradient if(timevary_MG(y,2)>0 && t2>-1.) { join1=1.0/(1.0+mfexp(-(50.*t2/(1.0+fabs(t2))))); // note the logit transform is not perfect, so growth near Linf will not be exactly same as with native growth function t2*=(1.-join1); // trap to prevent decrease in size-at-age } Ave_Size(t,subseas,g,a) = Ave_Size(t,1,g,a) + (mfexp(VBK(gp,0)*subseasdur(s,subseas)*VBK_seas(s))-1.0)*t2*Cohort_Growth(y,a); } else if(lin_grow(g,ALK_idx,a)>=0.0) // in linear phase for subseas { Ave_Size(t,subseas,g,a) = len_bins(1)+lin_grow(g,ALK_idx,a)*(Cohort_Lmin(gp,y,a)-len_bins(1)); } // NOTE: there is no seasonal interpolation, age-specific K uses calendar age, not real age. Maybe someday.... else if(lin_grow(g,ALK_idx,a)==-1.0) // first time point beyond AFIX; lin_grow will stay at -1 for all remaining subseas of this season { Ave_Size(t,subseas,g,a) = Cohort_Lmin(gp,y,a) + (Cohort_Lmin(gp,y,a)-L_inf(gp))* (mfexp(VBK(gp,0)*(real_age(g,ALK_idx,a)-AFIX)*VBK_seas(s))-1.0)*Cohort_Growth(y,a); } } break; } case 2: // Richards { LinfR=pow(L_inf(gp),Richards(gp)); LminR=pow(Lmin(gp),Richards(gp)); inv_Richards=1.0/Richards(gp); // uses VBK(nages) because age-specific K not allowed // and Cohort_Lmin has already had the power function applied for (a=0;a<=nages;a++) { if(lin_grow(g,ALK_idx,a)==-2.0) // so doing growth curve { temp=pow(Ave_Size(t,1,g,a),Richards(gp)); t2=temp-LinfR; // remaining growth potential // disable the shrinkage trap because Richard's parameter could be negative // join1=1.0/(1.0+mfexp(-(50.*t2/(1.0+fabs(t2))))); // note the logit transform is not perfect, so growth near Linf will not be exactly same as with native growth function // t2*=(1.-join1); // trap to prevent decrease in size-at-age temp += (mfexp(VBK(gp,0)*subseasdur(s,subseas)*VBK_seas(s))-1.0)*t2*Cohort_Growth(y,a); Ave_Size(t,subseas,g,a) = pow(temp,inv_Richards); } else if(lin_grow(g,ALK_idx,a)>=0.0) // in linear phase for subseas { Ave_Size(t,subseas,g,a) = len_bins(1)+lin_grow(g,ALK_idx,a)*(Cohort_Lmin(gp,y,a)-len_bins(1)); } else if(lin_grow(g,ALK_idx,a)==-1.0) // first time point beyond AFIX; lin_grow will stay at -1 for all remaining subseas of this season { // temp=Cohort_Lmin(gp,y,a) + (Cohort_Lmin(gp,y,a)-LinfR)* temp=LminR + (LminR-LinfR)* (mfexp(VBK(gp,0)*(real_age(g,ALK_idx,a)-AFIX)*VBK_seas(s))-1.0)*Cohort_Growth(y,a); Ave_Size(t,subseas,g,a) = pow(temp,inv_Richards); } } // done ageloop break; } // done Richards case 8: // Cessation { // VBK_temp2=-VBK_temp*seasdur(s); // negative to restore positive // t50 is the calculated inflection age for the decline in K dvariable VBK_temp=-VBK(gp,0); t50=log(exp((L_inf(gp)-Lmin(gp))*Richards(gp)/(VBK_temp))-1.0)/Richards(gp); for (a=0;a<=nages;a++) { // calculate a full year's growth increment, then multiple by seasdur(s) Ave_Size(t,subseas,g,a) = Ave_Size(t,1,g,a) + (VBK_temp - (VBK_temp/Richards(gp)) * (log(exp(Richards(gp)*(real_age(g,ALK_idx,a)+1-t50))+1) - log(exp(Richards(gp)*(real_age(g,ALK_idx,a)-t50))+1)))*subseasdur(s,subseas); } // done ageloop if(do_once==1) echoinput<<" seas: "<-1.) should be investigated for effect on gradient if(timevary_MG(y,2)>0 && t2>-1.) { join1=1.0/(1.0+mfexp(-(50.*t2/(1.0+fabs(t2))))); // note the logit transform is not perfect, so growth near Linf will not be exactly same as with native growth function t2*=(1.-join1); // trap to prevent decrease in size-at-age } Ave_Size(t,subseas,g,a) = Ave_Size(t,1,g,a) + (mfexp(VBK(gp,a)*subseasdur(s,subseas)*VBK_seas(s))-1.0)*t2*Cohort_Growth(y,a); } else if(lin_grow(g,ALK_idx,a)>=0.0) // in linear phase for subseas { Ave_Size(t,subseas,g,a) = len_bins(1)+lin_grow(g,ALK_idx,a)*(Cohort_Lmin(gp,y,a)-len_bins(1)); } // NOTE: there is no seasonal interpolation, age-specific K uses calendar age, not real age. Maybe someday.... else if(lin_grow(g,ALK_idx,a)==-1.0) // first time point beyond AFIX; lin_grow will stay at -1 for all remaining subseas of this season { Ave_Size(t,subseas,g,a) = Cohort_Lmin(gp,y,a) + (Cohort_Lmin(gp,y,a)-L_inf(gp))* (mfexp(VBK(gp,a)*(real_age(g,ALK_idx,a)-AFIX)*VBK_seas(s))-1.0)*Cohort_Growth(y,a); } } break; } } // done switch } // end need this platoon } // done platoon } // end calc size-at-age at a particular subseason FUNCTION void get_natmort() { // SS_Label_Function #17 get_natmort dvariable Loren_M1; dvariable Loren_temp; dvariable Loren_temp2; dvariable t_age; int gpi; int Do_AveAge; int K_index; K_index=VBK(1).indexmax(); Do_AveAge=0; t_base=styr+(yz-styr)*nseas-1; Ip=-N_M_Grow_parms; // start counter for MGparms // SS_Label_Info_17.1 #loop growth patterns in each gender gp=0; for (gg=1;gg<=gender;gg++) for (GPat=1;GPat<=N_GP;GPat++) { gp++; Ip=MGparm_point(gg,GPat)-1; if(N_natMparms>0) { // SS_Label_Info_17.1.1 #Copy parameter values from mgp_adj to natMparms(gp), doing direct or offset for gp>1 for (j=1;j<=N_natMparms;j++) {natMparms(j,gp)=mgp_adj(Ip+j);} switch(MGparm_def) // switch for natmort parms { case 1: // direct { for (j=1;j<=N_natMparms;j++) { if(natMparms(j,gp)<0) natMparms(j,gp)=natMparms(j,1); } break; } case 2: // offset { if(gp>1) { for (j=1;j<=N_natMparms;j++) { natMparms(j,gp)=natMparms(j,1)*mfexp(natMparms(j,gp)); } } break; } case 3: // offset like SS2 V1.23 { if(gp>1) natMparms(1,gp)=natMparms(1,1)*mfexp(natMparms(1,gp)); if(N_natMparms>1) { for (j=2;j<=N_natMparms;j++) { natMparms(j,gp)=natMparms(j-1,gp)*mfexp(natMparms(j,gp)); } } break; } } // end switch } // end have natmort parms g=g_Start(gp); // base platoon for (settle=1;settle<=N_settle_timings;settle++) { // SS_Label_Info_17.1.2 #loop settlements g+=N_platoon; gpi=GP3(g); // GP*gender*settlement if(use_morph(g)>0) { switch(natM_type) { // SS_Label_Info_17.1.2.0 #case 0: constant M case 0: // constant M { for (s=1;s<=nseas;s++) { if(docheckup==1) echoinput<<"Natmort "<=Bseas(g)) {a=0; t_age=azero_seas(s)-azero_G(g);} else {a=1; t_age=1.0+azero_seas(s)-azero_G(g);} natM_amax=NatM_break(1); natM2=natMparms(1,gp); k=a; for (loop=1;loop<=N_natMparms+1;loop++) { natM_amin=natM_amax; natM1=natM2; if(loop<=N_natMparms) { natM_amax=NatM_break(loop); natM2=natMparms(loop,gp); } else { natM_amax=r_ages(nages)+1.; } if(natM_amax>natM_amin) {temp=(natM2-natM1)/(natM_amax-natM_amin);} // calc the slope else {temp=0.0;} while(t_age=1;s--) { // ALK_idx=(s-1)*N_subseas+mid_subseas; // for midseason for (a=nages; a>=0;a--) { if(a==0 && s=Bseas(g)) { k=0; t_age=azero_seas(s)-azero_G(g); for (a=k;a<=nages-1;a++) { natM(s,gpi,a) = Age_NatMort(gp,a)+t_age*(Age_NatMort(gp,a+1)-Age_NatMort(gp,a)); } // end age } else { k=1; t_age=azero_seas(s)+(1.-azero_G(g)); for (a=k;a<=nages-1;a++) { natM(s,gpi,a) = Age_NatMort(gp,a)+t_age*(Age_NatMort(gp,a+1)-Age_NatMort(gp,a)); } // end age natM(s,gpi,0)=natM(s,gpi,1); } natM(s,gpi,nages)=Age_NatMort(gp,nages); surv1(s,gpi)=mfexp(-natM(s,gpi)*seasdur_half(s)); surv2(s,gpi)=square(surv1(s,gpi)); } // end season break; } } // end natM_type switch // SS_Label_Info_17.2 #calc an ave_age for the first gp as a scaling factor in logL for initial recruitment (R1) deviation if(Do_AveAge==0) { Do_AveAge=1; ave_age = 1.0/natM(1,gpi,nages/2)-0.5; } if(do_once==1) { for(s=1;s<=nseas;s++) echoinput<<"Natmort seas:"< 0) { Ip = frac_female_pointer - 1; for (gp=1;gp<=N_GP;gp++) { femfrac(gp) = mgp_adj(Ip + gp); if(gender==2) femfrac(N_GP+gp) = 1.0 - femfrac(gp); } } else { femfrac(1,N_GP)=fracfemale; if(gender==2) femfrac(N_GP,2*N_GP)=1.0-fracfemale; } if(gender_rd==-1) { fracfemale_mult=value(femfrac(1)); } if(do_once==1) echoinput<<" femfrac "<0) { recr_dist(gp,settle,p)=femfrac(gp)*recr_dist_parm(gp)*recr_dist_parm(N_GP+p)*recr_dist_parm(N_GP+pop+settle); if(gender==2) recr_dist(gp+N_GP,settle,p)=femfrac(gp+N_GP)*recr_dist_parm(gp)*recr_dist_parm(N_GP+p)*recr_dist_parm(N_GP+pop+settle); //males } // SS_Label_Info_18.3 #if recr_dist_interaction is chosen, then multiply these in also if(recr_dist_inx==1) { f=N_GP+pop+N_settle_timings; for (gp=1;gp<=N_GP;gp++) for (p=1;p<=pop;p++) for (settle=1;settle<=N_settle_timings;settle++) { f++; if(recr_dist_pattern(gp,settle,p)>0) { recr_dist(gp,settle,p)*=recr_dist_parm(f); if(gender==2) recr_dist(gp+N_GP,settle,p)*=recr_dist_parm(f); } } } break; } case 3: { for (settle=1;settle<=N_settle_assignments;settle++) { gp=settlement_pattern_rd(settle,1); settle_time=settle_assignments_timing(settle); p=settlement_pattern_rd(settle,3); recr_dist(gp,settle_time,p)=femfrac(gp)*recr_dist_parm(settle); if(gender==2) recr_dist(gp+N_GP,settle_time,p)=femfrac(gp+N_GP)*recr_dist_parm(settle); //males } break; } case 4: { recr_dist(1,1,1)=femfrac(1); if(gender==2) recr_dist(2,1,1)=femfrac(2); break; } case 1: // only used for sstrans { for (gp=1;gp<=N_GP;gp++) for (p=1;p<=pop;p++) for (s=1;s<=N_settle_timings;s++) { if(recr_dist_pattern(gp,s,p)>0) { recr_dist(gp,s,p)=femfrac(gp)*recr_dist_parm(gp)*recr_dist_parm(N_GP+p)*recr_dist_parm(N_GP+pop+s); if(gender==2) recr_dist(gp+N_GP,s,p)=femfrac(gp+N_GP)*recr_dist_parm(gp)*recr_dist_parm(N_GP+p)*recr_dist_parm(N_GP+pop+s); //males } } // SS_Label_Info_18.3 #if recr_dist_interaction is chosen, then multiply these in also if(recr_dist_inx==1) { f=N_GP+nseas+pop; for (gp=1;gp<=N_GP;gp++) for (p=1;p<=pop;p++) for (s=1;s<=N_settle_timings;s++) { f++; if(recr_dist_pattern(gp,s,p)>0) { recr_dist(gp,s,p)*=recr_dist_parm(f); if(gender==2) recr_dist(gp+N_GP,s,p)*=recr_dist_parm(f); } } } break; } } // SS_Label_Info_18.4 #scale the recr_dist matrix to sum to 1.0 recr_dist/=sum(recr_dist); if(do_once==1) { echoinput<<"recruitment distribution in year: "<0 || MGparm_seas_effects(2)>0 ) // get seasonal effect on FEMALE wtlen parameters { wt_len(s,gp)=(wtlen_p(GPat,1)*wtlen_seas(s,GPat,1))*pow(len_bins_m(1,nlength),(wtlen_p(GPat,2)*wtlen_seas(s,GPat,2))); wt_len_low(s,GPat)(1,nlength)=(wtlen_p(GPat,1)*wtlen_seas(s,GPat,1))*pow(len_bins2(1,nlength),(wtlen_p(GPat,2)*wtlen_seas(s,GPat,2))); } else { wt_len(s,gp) = wtlen_p(GPat,1)*pow(len_bins_m(1,nlength),wtlen_p(GPat,2)); wt_len_low(s,GPat)(1,nlength) = wtlen_p(GPat,1)*pow(len_bins2(1,nlength),wtlen_p(GPat,2)); } wt_len2(s,GPat)(1,nlength)=wt_len(s,gp)(1,nlength); } // SS_Label_Info_19.2.2 #calculate male weight_at_length else { if(MGparm_seas_effects(7)>0 || MGparm_seas_effects(8)>0 ) // get seasonal effect on male wt-len parameters { wt_len(s,gp) = (wtlen_p(GPat,7)*wtlen_seas(s,GPat,7))*pow(len_bins_m(1,nlength),(wtlen_p(GPat,8)*wtlen_seas(s,GPat,8))); wt_len_low(s,GPat)(nlength1,nlength2) = (wtlen_p(GPat,7)*wtlen_seas(s,GPat,7))*pow(len_bins2(nlength1,nlength2),(wtlen_p(GPat,8)*wtlen_seas(s,GPat,8))); } else { wt_len(s,gp) = wtlen_p(GPat,7)*pow(len_bins_m(1,nlength),wtlen_p(GPat,8)); wt_len_low(s,GPat)(nlength1,nlength2) = wtlen_p(GPat,7)*pow(len_bins2(nlength1,nlength2),wtlen_p(GPat,8)); } wt_len2(s,GPat)(nlength1,nlength2)=wt_len(s,gp).shift(nlength1); wt_len(s,gp).shift(1); } // SS_Label_Info_19.2.3 #calculate first diff of wt_len for use in generalized sizp comp bin calculations if(gg==gender) { wt_len2_sq(s,GPat)=elem_prod(wt_len2(s,GPat),wt_len2(s,GPat)); wt_len_fd(s,GPat)=first_difference(wt_len_low(s,GPat)); if(gender==2) wt_len_fd(s,GPat,nlength)=wt_len_fd(s,GPat,nlength-1); if(do_once==1) echoinput<<"wtlen2 "<0) {mat_age(gp)(0,First_Mature_Age-1)=0.;} switch (Fecund_Option) { case 1: // as eggs/kg (SS original configuration) { fec_len(gp) = wtlen_p(GPat,5)+wtlen_p(GPat,6)*wt_len(s,gp); fec_len(gp) = elem_prod(wt_len(s,gp),fec_len(gp)); break; } case 2: { // as eggs = f(length) fec_len(gp) = wtlen_p(GPat,5)*pow(len_bins_m,wtlen_p(GPat,6)); break; } case 3: { // as eggs = f(body weight) fec_len(gp) = wtlen_p(GPat,5)*pow(wt_len(s,gp),wtlen_p(GPat,6)); break; } case 4: { // as eggs = a + b*Len fec_len(gp) = wtlen_p(GPat,5) + wtlen_p(GPat,6)*len_bins_m; if(wtlen_p(GPat,5)<0.0) { z=1; while(fec_len(gp,z)<0.0) { fec_len(gp,z)=0.0; z++; } } break; } case 5: { // as eggs = a + b*Wt fec_len(gp) = wtlen_p(GPat,5) + wtlen_p(GPat,6)*wt_len(s,gp); if(wtlen_p(GPat,5)<0.0) { z=1; while(fec_len(gp,z)<0.0) { fec_len(gp,z)=0.0; z++; } } break; } } // 1=length logistic; 2=age logistic; 3=read age-maturity // 4= read age-fecundity by growth_pattern 5=read all from separate wtatage.ss file // 6=read length-maturity if(Maturity_Option!=4 && Maturity_Option!=5) { // combine length maturity and fecundity; but will be ignored if reading empirical age-fecundity mat_fec_len(gp) = elem_prod(mat_len(gp),fec_len(gp)); if(do_once==1) echoinput<<"mat_fec_len "<1) for(gp=2;gp<=N_GP;gp++) { Hermaphro_val(gp)=Hermaphro_val(1); } } } FUNCTION void get_migration() { //******************************************************************* // SS_Label_FUNCTION 20 #get_migration Ip=MGP_CGD; // base counter for movement parms // SS_Label_20.1 loop the needed movement rates for (k=1;k<=do_migr2;k++) // loop all movement rates for this year (includes seas, morphs) { t=styr+(yz-styr)*nseas+move_def2(k,1)-1; if(k<=do_migration) // so an explicit movement rate { // set some movement rates same as the first movement rate if(mgp_adj(Ip+1)==-9999.) mgp_adj(Ip+1)=mgp_adj(MGP_CGD+1); if(mgp_adj(Ip+2)==-9999.) mgp_adj(Ip+2)=mgp_adj(MGP_CGD+2); // set movement rate same for all ages if(mgp_adj(Ip+2)==-9998.) mgp_adj(Ip+2)=mgp_adj(Ip+1); // SS_Label_Info_20.1.1 #age-specific movement strength based on parameters for selected area pairs temp=1./(move_def2(k,6)-move_def2(k,5)); temp1=temp*(mgp_adj(Ip+2)-mgp_adj(Ip+1)); for (a=0;a<=nages;a++) { if(a<=move_def2(k,5)) {migrrate(yz,k,a) = mgp_adj(Ip+1);} else if(a>=move_def2(k,6)) {migrrate(yz,k,a) = mgp_adj(Ip+2);} else {migrrate(yz,k,a) = mgp_adj(Ip+1) + (r_ages(a)-move_def2(k,5))*temp1;} } // end age loop migrrate(yz,k)=mfexp(migrrate(yz,k)); Ip+=2; } else // SS_Label_Info_20.1.2 #default movement strength =1.0 for other area pairs { migrrate(yz,k)=1.; } } // SS_Label_Info_20.2 #loop seasons, GP, source areas for (s=1;s<=nseas;s++) { t=styr+(yz-styr)*nseas+s-1; for (gp=1;gp<=N_GP;gp++) { for (p=1;p<=pop;p++) { tempvec_a.initialize(); // zero out the summation vector for (p2=1;p2<=pop;p2++) { // SS_Label_Info_20.2.1 #for each destination area, adjust movement rate by season duration and sum across all destination areas k=move_pattern(s,gp,p,p2); if(k>0) { if(p2!=p && nseas>1) migrrate(yz,k)*=seasdur(move_def2(k,1)); // fraction leaving an area is reduced if the season is short tempvec_a+=migrrate(yz,k); // sum of all movement weights for the p2 fish } } //end destination area // SS_Label_Info_20.2.2 #now normalize for all movement from source area p for (p2=1;p2<=pop;p2++) { k=move_pattern(s,gp,p,p2); if(k>0) { migrrate(yz,k)=elem_div(migrrate(yz,k),tempvec_a); // SS_Label_Info_20.2.3 #Set rate to 0.0 (or 1.0 for stay rates) below the start age for migration if(migr_start(s,gp)>0) { if(p!=p2) { migrrate(yz,k)(0,migr_start(s,gp)-1)=0.0; } else { migrrate(yz,k)(0,migr_start(s,gp)-1)=1.0; } } } } } // end source areas loop } // end growth pattern } // end season // SS_Label_Info_20.2.4 #Copy annual migration rates forward until first year with time-varying migration rates if(yz0) { for (s=1;s<=nseas;s++) { for (k=1;k<=8;k++) { save_seas_parm(s,k)=value(wtlen_p(GPat,k)*wtlen_seas(s,GPat,k)); } save_seas_parm(s,9)=value(Lmin(1)); if(Grow_type<=2 || Grow_type==8) save_seas_parm(s,10)=value(VBK(1,0)*VBK_seas(s)); if(Grow_type>=3 && Grow_type<=5) save_seas_parm(s,10)=value(VBK(1,nages)*VBK_seas(s)); } } } } // end save_gparm FUNCTION void Make_Fecundity() { //******************************************************************** // this Make_Fecundity function does the dot product of the distribution of length-at-age (ALK) with maturity and fecundity vectors // to calculate the mean fecundity at each age /* SS_Label_31.1 FUNCTION Make_Fecundity */ // SPAWN-RECR: here is the make_Fecundity function ALK_idx=(spawn_seas-1)*N_subseas+spawn_subseas; for (g=1;g<=gmorph;g++) if(sx(g)==1 && use_morph(g)>0) { GPat=GP4(g); gg=sx(g); switch(Maturity_Option) { case 4: // Maturity_Option=4 read age-fecundity into age-maturity { fec(g)=Age_Maturity(GPat); break; } case 5: // Maturity_Option=5 read age-fecundity from wtatage.ss { fec(g)=WTage_emp(t,GP3(g),-2); break; } default: { int ALK_finder=(ALK_idx-1)*gmorph+g; for(a=0;a<=nages;a++) { tempvec_a(a) = ALK(ALK_idx,g,a)(ALK_range_g_lo(ALK_finder,a),ALK_range_g_hi(ALK_finder,a)) *mat_fec_len(GPat)(ALK_range_g_lo(ALK_finder,a),ALK_range_g_hi(ALK_finder,a)); } fec(g) = elem_prod(tempvec_a,mat_age(GPat)); // reproductive output at age } } /* switch(Maturity_Option) { case 1: // Maturity_Option=1 length logistic { // for(a=0;a<=nages;a++) // { // fec(g,a) = ALK(ALK_idx,g,a)(ALK_range_g_lo(g,a),ALK_range_g_hi(g,a)) *mat_fec_len(GPat)(ALK_range_g_lo(g,a),ALK_range_g_hi(g,a))*mat_age(GPat,a); // reproductive output at age // } // fec(g) = elem_prod(ALK(ALK_idx,g)*mat_fec_len(GPat),mat_age(GPat)); // reproductive output at age break; } case 2: // Maturity_Option=2 age logistic { fec(g) = elem_prod(ALK(ALK_idx,g)*mat_fec_len(GPat),mat_age(GPat)); // reproductive output at age break; } case 3: // Maturity_Option=3 read age-maturity { fec(g) = elem_prod(ALK(ALK_idx,g)*mat_fec_len(GPat),mat_age(GPat)); // reproductive output at age break; } case 4: // Maturity_Option=4 read age-fecundity into age-maturity { fec(g)=Age_Maturity(GPat); break; } case 5: // Maturity_Option=5 read age-fecundity from wtatage.ss { fec(g)=WTage_emp(t,GP3(g),-2); break; } case 6: // Maturity_Option=6 read length-maturity { fec(g) = elem_prod(ALK(ALK_idx,g)*mat_fec_len(GPat),mat_age(GPat)); // reproductive output at age break; } } */ if( (save_for_report>0) || ((sd_phase() || mceval_phase()) && (initial_params::mc_phase==0)) ) { switch(Maturity_Option) { case 1: // Maturity_Option=1 length logistic { make_mature_numbers(g)=elem_prod(ALK(ALK_idx,g)*mat_len(GPat),mat_age(GPat)); // mature numbers at age make_mature_bio(g)=elem_prod(ALK(ALK_idx,g)*elem_prod(mat_len(GPat),wt_len(s,GP(g))),mat_age(GPat)); // mature biomass at age break; } case 2: // Maturity_Option=2 age logistic { make_mature_numbers(g)=elem_prod(ALK(ALK_idx,g)*mat_len(GPat),mat_age(GPat)); // mature numbers at age make_mature_bio(g)=elem_prod(ALK(ALK_idx,g)*elem_prod(mat_len(GPat),wt_len(s,GP(g))),mat_age(GPat)); // mature biomass at age break; } case 3: // Maturity_Option=3 read age-maturity { make_mature_numbers(g)=elem_prod(ALK(ALK_idx,g)*mat_len(GPat),mat_age(GPat)); // mature numbers at age (Age_Maturity already copied to mat_age) make_mature_bio(g)=elem_prod(ALK(ALK_idx,g)*elem_prod(mat_len(GPat),wt_len(s,GP(g))),mat_age(GPat)); // mature biomass at age break; } case 4: // Maturity_Option=4 read age-fecundity, so no age-maturity { make_mature_numbers(g)=fec(g); // not defined make_mature_bio(g)=fec(g); // not defined break; } case 5: // Maturity_Option=5 read age-fecundity from wtatage.ss { make_mature_numbers(g)=fec(g); // not defined make_mature_bio(g)=fec(g); // not defined break; } case 6: // Maturity_Option=6 read length-maturity { make_mature_numbers(g)=elem_prod(ALK(ALK_idx,g)*mat_len(GPat),mat_age(GPat)); // mature numbers at age (Length_Maturity already copied to mat_len) make_mature_bio(g)=elem_prod(ALK(ALK_idx,g)*elem_prod(mat_len(GPat),wt_len(s,GP(g))),mat_age(GPat)); // mature biomass at age break; } } } /* if(Maturity_Option<=3) { fec(g) = ALK(ALK_idx,g)*mat_fec_len; if(Maturity_Option==3) {fec(g) = elem_prod(fec(g),Age_Maturity(GP4(g)));} else {fec(g) = elem_prod(fec(g),mat_age);} } else if(Maturity_Option==4) {fec(g)=Age_Maturity(GP4(g));} else {fec(g)=WTage_emp(t,GP3(g),-2);} */ if(t>=styr) save_sel_fec(t,g,0)= fec(g); // save sel_al_3 and save fecundity for output if(y==endyr) save_sel_fec(t+nseas,g,0)=fec(g); } } //******************************************************************** /* SS_Label_FUNCTION 42 Join_Fxn */ FUNCTION dvariable Join_Fxn(const prevariable& MinPoss, const prevariable& MaxPoss, const prevariable& Inflec, const prevariable& Xvar, const prevariable& Y1, const prevariable& Y2) { RETURN_ARRAYS_INCREMENT(); dvariable Yresult; dvariable join; join=1.000/(1.000+mfexp(1000.0*(Xvar-Inflec)/(MaxPoss-MinPoss))); // steep joiner at the inflection Yresult=Y1*(join)+Y2*(1.000-join); RETURN_ARRAYS_DECREMENT(); return Yresult; } //******************************************************************** /* SS_Label_FUNCTION 45 get_age_age */ FUNCTION void get_age_age(const int Keynum, const int AgeKey_StartAge, const int AgeKey_Linear1, const int AgeKey_Linear2) { // FUTURE: calculate adjustment to oldest age based on continued ageing of old fish age_age(Keynum).initialize(); dvariable age; dvar_vector age_err_parm(1,7); dvariable temp; if(Keynum==Use_AgeKeyZero) { // SS_Label_45.1 set age_err_parm to mgp_adj, so can be time-varying according to MGparm options for (a=1;a<=7;a++) {age_err_parm(a)=mgp_adj(AgeKeyParm-1+a);} age_err(Use_AgeKeyZero,1)(0,AgeKey_StartAge)=r_ages(0,AgeKey_StartAge)+0.5; age_err(Use_AgeKeyZero,2)(0,AgeKey_StartAge)=age_err_parm(5)*(r_ages(0,AgeKey_StartAge)+0.5)/(age_err_parm(1)+0.5); // SS_Label_45.3 calc ageing bias if(AgeKey_Linear1==0) { age_err(Use_AgeKeyZero,1)(AgeKey_StartAge,nages)=0.5 + r_ages(AgeKey_StartAge,nages) + age_err_parm(2)+(age_err_parm(3)-age_err_parm(2))* (1.0-mfexp(-age_err_parm(4)*(r_ages(AgeKey_StartAge,nages)-age_err_parm(1)))) / (1.0-mfexp(-age_err_parm(4)*(r_ages(nages)-age_err_parm(1)))); } else { age_err(Use_AgeKeyZero,1)(AgeKey_StartAge,nages)=0.5 + r_ages(AgeKey_StartAge,nages) + age_err_parm(2)+(age_err_parm(3)-age_err_parm(2))* (r_ages(AgeKey_StartAge,nages)-age_err_parm(1))/(r_ages(nages)-age_err_parm(1)); } // SS_Label_45.4 calc ageing variance if(AgeKey_Linear2==0) { age_err(Use_AgeKeyZero,2)(AgeKey_StartAge,nages)=age_err_parm(5)+(age_err_parm(6)-age_err_parm(5))* (1.0-mfexp(-age_err_parm(7)*(r_ages(AgeKey_StartAge,nages)-age_err_parm(1)))) / (1.0-mfexp(-age_err_parm(7)*(r_ages(nages)-age_err_parm(1)))); } else { age_err(Use_AgeKeyZero,2)(AgeKey_StartAge,nages)=age_err_parm(5)+(age_err_parm(6)-age_err_parm(5))* (r_ages(AgeKey_StartAge,nages)-age_err_parm(1))/(r_ages(nages)-age_err_parm(1)); } } // SS_Label_45.5 calc distribution of age' for each age for (a=0; a<=nages;a++) { if(age_err(Keynum,1,a)<=-1) {age_err(Keynum,1,a)=r_ages(a)+0.5;} age=age_err(Keynum,1,a); for (b=2;b<=n_abins;b++) // so the lower tail is accumulated into the first age' bin age_age(Keynum,b,a)= cumd_norm((age_bins(b)-age)/age_err(Keynum,2,a)); for (b=1;b<=n_abins-1;b++) age_age(Keynum,b,a) = age_age(Keynum,b+1,a)-age_age(Keynum,b,a); age_age(Keynum,n_abins,a) = 1.-age_age(Keynum,n_abins,a) ; // so remainder is accumulated into the last age' bin } if(gender == 2) // copy ageing error matrix into male location also { L2=n_abins; A2=nages+1; for (b=1;b<=n_abins;b++) for (a=0;a<=nages;a++) {age_age(Keynum,b+L2,a+A2)=age_age(Keynum,b,a);} } return; } // end age_age key FUNCTION void get_catch_mult(int y, int catch_mult_pointer) { /* SS_Label_FUNCTION 47 catch_multiplier */ int j; j=0; for(f=1;f<=Nfleet;f++) { if(need_catch_mult(f)==1) { catch_mult(y,f)=mgp_adj(catch_mult_pointer+j); j++; } } return; } FUNCTION void get_selectivity() { //******************************************************************* /* SS_Label_Function_22 #get_selectivity */ // SS_Label_Info_22.01 #define local variables for selectivity int Ip_env; int y1; int fs; int scaling_offset = 0; dvariable t1; dvariable t2; dvariable t3; dvariable t4; dvariable Apical_Selex; dvariable t1min; dvariable t1max; dvariable t1power; dvariable t2min; dvariable t2max; dvariable t2power; dvariable final; dvariable sel_maxL; dvariable lastsel; dvariable lastSelPoint; dvariable SelPoint; dvariable finalSelPoint; dvariable asc; dvariable dsc; dvar_vector sp(1,199); // temporary vector for selex parms Ip=0; // SS_Label_Info_22.2 #Loop all fisheries and surveys twice; first for size selectivity, then for age selectivity for (f=1;f<=2*Nfleet;f++) { fs=f-Nfleet; //index for saving age selex in the fleet arrays // SS_Label_Info_22.2.1 #recalculate selectivity for any fleets or surveys with time-vary flag set for this year if(timevary_sel(y,f)==1 || save_for_report>0) { // recalculate the selex in this year x type if(N_selparmvec(f)>0) // type has parms, so look for adjustments { for (j=1;j<=N_selparmvec(f);j++) { if(selparm_timevary(Ip+j)==0) {sp(j)=selparm(Ip+j);} else // time-varying { sp(j)=parm_timevary(selparm_timevary(Ip+j),y); if(parm_adjust_method==1 && (save_for_report>0 || do_once==1)) { if(sp(j)>-999 && (sp(j)selparm_1(Ip+j,2))) { N_warn++; warning<<" adjusted selparm out of base parm bounds (Phase, Iter, Parm#, yr, min, max, base, value) "<< current_phase()<<" "<Nfleet) echoinput<<" age selex parms for fleet: "<0 || do_once==1) {for (j=1;j<=N_selparmvec(f);j++) save_sp_len(y,f,j)=sp(j); } } if(f<=Nfleet) // do size selectivity, retention, discard mort { for (gg=1;gg<=gender;gg++) { if(gg==1 || (gg==2 && seltype(f,3)>=3)) { // SS_Label_Info_22.3 #Switch on size selectivity type switch(seltype(f,1)) // select the selectivity pattern { // SS_Label_Info_22.3.0 #case 0 constant size selectivity case 0: // *********** constant {sel = 1.;break;} // SS_Label_Info_22.3.1 #case 1 logistic size selectivity case 1: { if(seltype(f,3)<3 || (gg==1 && seltype(f,3)==3) || (gg==2 && seltype(f,3)==4)) // do the primary gender {sel = 1./(1.+mfexp(neglog19*(len_bins_m-sp(1))/sp(2)));} else // do the offset gender { temp=sp(1)+sp(Maleselparm(f)); temp1=sp(2)+sp(Maleselparm(f)+1); sel = sp(Maleselparm(f)+2)/(1.+mfexp(neglog19*(len_bins_m-temp)/temp1)); } break; } // SS_Label_Info_22.3.2 #case 2 discontinued; use pattern 8 for double logistic case 2: { // 1=peak, 2=init, 3=infl, 4=slope, 5=final, 6=infl2, 7=slope2 N_warn++; cout<<" EXIT - see warning "<j) {N_warn++; cout<<" EXIT - see warning "<nlength) {N_warn++; cout<<" EXIT - see warning "< nlength) { high_bin = nlength; N_warn++; warning<<" selex pattern 43; value for high bin is greater than "< high_bin) low_bin = high_bin; sp(1) = low_bin; sp(2) = high_bin; temp=mean(tempvec_l(low_bin,high_bin)); scaling_offset = 0; // reset scaling offset } sel = mfexp(tempvec_l-temp); break; } // SS_Label_Info_22.3.7 #case 7 discontinued; use pattern 8 for double logistic case 7: // *******New double logistic // 1=peak, 2=init, 3=infl, 4=slope, 5=final, 6=infl2, 7=slope2 8=binwidth; Mirror=1===const_above_Linf { N_warn++; cout<<" EXIT - see warning "<1) sel(1,k1-1) = 0.0; sel(k1,nlength) = elem_prod( (1/(1+mfexp(-sp(2)*(len_bins_m(k1,nlength)-sp(1)) ))), (1-1/(1+mfexp(-sp(4)*(len_bins_m(k1,nlength)-(sp(1)*sp(6)+sp(3))) ))) ); sel += 1.0e-6; sel /=max(sel); break; } // SS_Label_Info_22.3.21 #case 21 non-parametric size selectivity /* N points; where the first N parameters is vector of sizes for the line segment ends and second N parameters is selectivity at that size (no transformations) */ case 21: // *******New non-parametric { j=1; z=1; k=seltype(f,4); // N points lastsel=0.0; lastSelPoint=0.0; if(do_once==1) { if(sp(k)>len_bins(nlength)) {N_warn++; cout<<" EXIT - see warning "< max_pop_lenbin"<len_bins(nlength-1)) {N_warn++; warning<<"Selex21: should not have selpoint(n-1) > pop_lenbin(nlength-1)"<1.0 */ case 23: { if(seltype(f,3)<3 || (gg==1 && seltype(f,3)==3) || (gg==2 && seltype(f,3)==4)) {peak=sp(1); upselex=mfexp(sp(3)); downselex=mfexp(sp(4)); final=sp(6);} else { // offset male parameters if seltype(f,3)==3 peak=sp(1)+sp(Maleselparm(f)); upselex=mfexp(sp(3)+sp(Maleselparm(f)+1)); downselex=mfexp(sp(4)+sp(Maleselparm(f)+2)); if(sp(6)>-999.) final=sp(6)+sp(Maleselparm(f)+3); } if(sp(5)<-1000.) { j1=-1001-int(value(sp(5))); // selex is nil thru bin j1, so set sp(5) equal to first bin with selex (e.g. -1002 to start selex at bin 2) sel(1,j1)=1.0e-06; } else { j1=startbin-1; // start selex at bin equal to min sizecomp databin (=j1+1) if(sp(5)>-999) { point1=1.0/(1.0+mfexp(-sp(5))); t1min=mfexp(-(square(len_bins_m(startbin)-peak)/upselex)); // fxn at first bin } } if(sp(6)<-1000.) { j2=-1000-int(value(sp(6))); // selex is constant beyond this sizebin, so set sp(6) equal to last bin with estimated selex } else {j2=nlength;} peak2=peak+binwidth2+ (0.99*len_bins_m(j2)-peak-binwidth2)/(1.+mfexp(-sp(2))); if(sp(6)>-999) { point2=final; t2min=mfexp(-(square(len_bins_m(j2)-peak2)/downselex)); // fxn at last bin } for (j=j1+1;j<=j2;j++) { t1=len_bins_m(j)-peak; t2=len_bins_m(j)-peak2; join1=1.0/(1.0+mfexp(-(20.*t1/(1.0+fabs(t1))))); // note the logit transform on t1 causes range of mfexp to be over -20 to 20 join2=1.0/(1.0+mfexp(-(20.*t2/(1.0+fabs(t2))))); if(sp(5)>-999) {asc=point1+(1.0-point1)*(mfexp(-square(t1)/upselex)-t1min)/(1.0-t1min);} else {asc=mfexp(-square(t1)/upselex);} if(sp(6)>-999) {dsc=1.0+(point2-1.0)*(mfexp(-square(t2)/downselex)-1.0 )/(t2min-1.0);} else {dsc=mfexp(-square(t2)/downselex);} sel(j)=asc*(1.0-join1)+join1*(1.0-join2+dsc*join2); } if(startbin>1 && sp(5)>=-1000.) { for (j=1;j<=startbin-1;j++) { sel(j)=square(len_bins_m(j)/len_bins_m(startbin))*sel(startbin); } } if(j2-999.) final=sp(6)+sp(Maleselparm(f)+3); Apical_Selex=sp(Maleselparm(f)+4); } if(sp(5)<-1000.) { j1=-1001-int(value(sp(5))); // selex is nil thru bin j1, so set sp(5) equal to first bin with selex (e.g. -1002 to start selex at bin 2) sel(1,j1)=1.0e-06; } else { j1=startbin-1; // start selex at bin equal to min sizecomp databin (=j1+1) if(sp(5)>-999) { point1=1.0/(1.0+mfexp(-sp(5))); t1min=mfexp(-(square(len_bins_m(startbin)-peak)/upselex)); // fxn at first bin } } if(sp(6)<-1000.) { j2=-1000-int(value(sp(6))); // selex is constant beyond this sizebin, so set sp(6) equal to last bin with estimated selex } else {j2=nlength;} peak2=peak+binwidth2+ (0.99*len_bins_m(j2)-peak-binwidth2)/(1.+mfexp(-sp(2))); if(sp(6)>-999) { point2=1.0/(1.0+mfexp(-final)); t2min=mfexp(-(square(len_bins_m(j2)-peak2)/downselex)); // fxn at last bin } for (j=j1+1;j<=j2;j++) { t1=len_bins_m(j)-peak; t2=len_bins_m(j)-peak2; join1=1.0/(1.0+mfexp(-(20.*t1/(1.0+fabs(t1))))); // note the logit transform on t1 causes range of mfexp to be over -20 to 20 join2=1.0/(1.0+mfexp(-(20.*t2/(1.0+fabs(t2))))); if(sp(5)>-999) {asc=point1+(Apical_Selex-point1)*(mfexp(-square(t1)/upselex)-t1min)/(1.0-t1min);} else {asc=Apical_Selex*mfexp(-square(t1)/upselex);} if(sp(6)>-999) {dsc=Apical_Selex+(point2-Apical_Selex)*(mfexp(-square(t2)/downselex)-1.0 )/(t2min-1.0);} else {dsc=Apical_Selex*mfexp(-square(t2)/downselex);} sel(j)=asc*(1.0-join1)+join1*(Apical_Selex*(1.0-join2)+dsc*join2); } if(startbin>1 && sp(5)>=-1000.) { for (j=1;j<=startbin-1;j++) { sel(j)=square(len_bins_m(j)/len_bins_m(startbin))*sel(startbin); } } if(j2splineX(k)) {z--;} j2=z+1; // first size bin beyond last node vcubic_spline_function splinefn=vcubic_spline_function(splineX(1,k),splineY(1,k),sp(2+scaling_offset),sp(3+scaling_offset)); tempvec_l = splinefn(len_bins_m); // interpolate selectivity at the mid-point of each population size bin if (scaling_offset == 0) { temp=max(tempvec_l(1,j2)); } else { int low_bin = int(value(sp(1))); int high_bin = int(value(sp(2))); if (low_bin < 1) { low_bin = 1; N_warn++; warning<<" selex pattern 42; value for low bin is less than 1, so set to 1 "< nlength) { high_bin = nlength; N_warn++; warning<<" selex pattern 42; value for high bin is greater than "< high_bin) low_bin = high_bin; sp(1) = low_bin; sp(2) = high_bin; temp=mean(tempvec_l(low_bin,high_bin)); scaling_offset = 0; // reset scaling offset } tempvec_l-=temp; // rescale to get max of 0.0 tempvec_l(j2+1,nlength) = tempvec_l(j2); // set constant above last node sel = mfexp(tempvec_l); break; } default: { sel=1.0; break; } } sel_l(y,f,gg)=sel; // Store size-selex in year*type array } // end direct calc of selex from parameters // SS_Label_Info_22.4 #Do male relative to female selex if(gg==2) // males exist and am now in the male loop { if(seltype(f,1)==4) {sel_l(y,f,2)=0.;} // set males to zero for spawning biomass else if(seltype(f,1)==5) // set males equal to mirrored males { i=int(value(sp(1))); if(i<=0) i=1; j=int(value(sp(2))); if(j<=0) j=nlength; sel_l(y,f,2)(i,j)=sel_l(y,seltype(f,4),2)(i,j); } else if(seltype(f,1)==15) // set males equal to mirrored males { sel_l(y,f,2)=sel_l(y,seltype(f,4),2); } else if(seltype(f,3)==1 || seltype(f,3)==2) // do gender selex as offset { // k=seltype_Nparam(seltype(f,1)) + 1; // if(seltype(f,2)>0) k+=seltype(f,2)*4; // first gender offset parm (skip over the retention parameters // if(seltype(f,1)==6) k += seltype(f,4); // for non-parametric in which N parm is stored in special column k=Maleselparm(f); temp=sp(k); temp1=1.; switch(seltype(f,3)) { case 1: { // do males relative to females for (j=1;j<=nlength;j++) { if(len_bins_m(j)<=temp) {sel(j)*=mfexp(sp(k+1)+(len_bins_m(j)-minL_m)/(temp-minL_m) * (sp(k+2)-sp(k+1)) );} else {sel(j)*=mfexp(sp(k+2)+(len_bins_m(j)-temp) /(maxL-temp) * (sp(k+3)-sp(k+2)) );} // if(sel(j)>temp1) temp1=sel(j); } sel_l(y,f,2)=sel; tempvec_a(1)=max(sel_l(y,f,1)); tempvec_a(2)=max(sel_l(y,f,2)); temp1=max(tempvec_a(1,2)); sel_l(y,f) /=temp1; break; } case 2: { // do females relative to males sel_l(y,f,2)=sel; for (j=1;j<=nlength;j++) { if(len_bins_m(j)<=temp) {sel(j)*=mfexp(sp(k+1)+(len_bins_m(j)-minL_m)/(temp-minL_m) * (sp(k+2)-sp(k+1)) );} else {sel(j)*=mfexp(sp(k+2)+(len_bins_m(j)-temp) /(maxL-temp) * (sp(k+3)-sp(k+2)) );} // if(sel(j)>temp1) temp1=sel(j); } sel_l(y,f,1)=sel; tempvec_a(1)=max(sel_l(y,f,1)); tempvec_a(2)=max(sel_l(y,f,2)); temp1=max(tempvec_a(1,2)); sel_l(y,f)/=temp1; break; } } // end switch } // end do gender selex as offset from other gender // SS_Label_Info_22.5 #Calculate size-specific retention and discard mortality else if(seltype(f,3)!=3 && seltype(f,3)!=4) // where the "3" and "4" option do the male offset as direct parameters, rathen than do selex as offset { sel_l(y,f,2)=sel; } } // end doing males if(docheckup==1) echoinput<0) { j=TwoD_AR_use(f); // get index for this fleet's effect if(TwoD_AR_def[j](8)==1) // age vs length flag { z=TwoD_AR_def[j](12); // index of dev vector used if(docheckup==1) echoinput<<"2dar for fleet: "<-2) { a1=TwoD_AR_def[j](13)-1; // parameter number-1 for sigmasel dvariable sigmasel; for(a=TwoD_AR_amin(j);a<=TwoD_AR_amax(j);a++) // loop lengths, using "a" as index { if(a<=TwoD_AR_def[j](6)) // so get sigmasel for this length bin { a1++; sigmasel=selparm(a1); } if(k>=0) { k++; if(docheckup==1) echoinput<=3) || (gg==2 && (seltype(f,1)==44 || seltype(f,1)==45))) // in age selex { // SS_Label_Logic_22.7 #Switch depending on the age-selectivity pattern selected switch(seltype(f,1)) { // SS_Label_Info_22.7.0 #Constant age-specific selex for ages 0 to nages case 0: {sel_a(y,fs,1)(0,nages)=1.00; break;} // SS_Label_Info_22.7.10 #Constant age-specific selex for ages 1 to nages case 10: {sel_a(y,fs,1)(1,nages)=1.00; break;} // SS_Label_Info_22.7.11 #Constant age-specific selex for specified age range case 11: // selex=1.0 within a range of ages { a=int(value(sp(2))); if(a>nages) {a=nages;} sel_a(y,fs,1)(int(value(sp(1))),a)=1.; break; } // SS_Label_Info_22.7.12 #age selectivity - logistic case 12: { sel_a(y,fs,1) = 1/(1+mfexp(neglog19*(r_ages-sp(1))/sp(2))); break;} // SS_Label_Info_22.7.13 #age selectivity - double logistic case 13: // 1=peak, 2=init, 3=infl, 4=slope, 5=final, 6=infl2, 7=slope2, 8=plateau { t1=0.+(1./(1.+mfexp(-sp(3))))*(sp(1)-0.); // INFL t1min=1./(1.+mfexp(-sp(4)*(0.-t1)))*0.9999999; // asc value at minage t1max=1./(1.+mfexp(-sp(4)*(sp(1)-t1)))*1.00001; // asc value at peak t1power=log(0.5)/log((0.5-t1min)/(t1max-t1min)); t2=(sp(1)+sp(8))+(1./(1.+mfexp(-sp(6))))*(r_ages(nages)-(sp(1)+sp(8))); // INFL t2min=1./(1.+mfexp(-sp(7)*(sp(1)+sp(8)-t2)))*0.9999; // asc value at peak+ t2max=1./(1.+mfexp(-sp(7)*(r_ages(nages)-t2)))*1.00001; // asc value at maxage t2power=log(0.5)/log((0.5-t2min)/(t2max-t2min)); final=1./(1.+mfexp(-sp(5))); k1=int(value(sp(1))); k2=int(value(sp(1)+sp(8))); for (a=0; a<=nages; a++) //calculate the value over ages { if (a < k1) // ascending limb { sel_a(y,fs,1,a) = sp(2) + (1. - sp(2)) * pow((( 1./(1.+mfexp(-sp(4)*(r_ages(a)-t1))) -t1min ) / (t1max-t1min) ),t1power); } else if (a > k2) // descending limb { sel_a(y,fs,1,a) = 1. + (final - 1.) * pow((( 1./(1.+mfexp(-sp(7)*(r_ages(a)-t2))) -t2min ) / (t2max-t2min) ),t2power); } else // at the peak { sel_a(y,fs,1,a) = 1.0;} } // end age loop break; } // end double logistic // SS_Label_Info_22.7.14 #age selectivity - separate parm for each age case 14: { temp=9.-max(sp(1,nages+1)); // this forces at least one age to have selex weight equal to 9 for (a=0;a<=nages;a++) { if(sp(a+1)>-999) {sel_a(y,fs,1,a) = 1./(1.+mfexp(-(sp(a+1)+temp)));} else {sel_a(y,fs,1,a) = sel_a(y,fs,1,a-1);} } break; } // SS_Label_Info_22.7.15 #age selectivity - mirror selex for lower numbered fleet // must refer to a lower numbered type (f) case 15: { sel_a(y,fs)=sel_a(y,seltype(f,4)); break; } // SS_Label_Info_22.7.16 #age selectivity: Coleraine - Gaussian case 16: { t1 = 1/(1+mfexp(-sp(1)))*nages; for (a=0;a<=nages;a++) { if(a-999.) {lastsel=sp(a+1+scaling_offset);} tempvec_a(a)=tempvec_a(a-1)+lastsel; // cumulative log(selex) } if (scaling_offset == 0) { temp=max(tempvec_a); // find max so at least one age will have selex=1. } else { int low_bin = int(value(sp(1))); int high_bin = int(value(sp(2))); if (low_bin < 0) { low_bin = 0; N_warn++; warning<<" selex pattern 41; value for low bin is less than 0, so set to 0 "< nages) { high_bin = nages; N_warn++; warning<<" selex pattern 41; value for high bin is greater than "< high_bin) low_bin = high_bin; sp(1) = low_bin; sp(2) = high_bin; temp=mean(tempvec_a(low_bin,high_bin)); } sel_a(y,fs,1)=mfexp(tempvec_a-temp); a=0; while(sp(a+1+scaling_offset)==-1000) // reset range of young ages to selex=0.0 { sel_a(y,fs,1,a)=0.0; a++; } scaling_offset = 0; // reset scaling offset if(lastage0) {sel_a(y,fs,1,a)=sel_a(y,fs,1,a-1);} else {sel_a(y,fs,1,a)=0.0;} } } break; } case 44: // like age selex 17 but with separate parameters for males and with revised controls { // sp(1) is first age with non-zero selectivity; can be age 0 // seltype(f,4) is number of selectivity change parameters beginning at age=first_age+1 // sp(2) is first age for which mean selex=1 // sp(3) is last age for which mean selex=1 // sp(4) is male mean selex relative to female mean. // -999 code means to keep the change unchanged from previous age (so keeps same rate of change) // -1000 code is only for males and sets the male change to be same as female change // gg is the index for sex, where 1=female, 2=male sel_a(y,fs,gg).initialize(); dvariable seldelta=0.0; // value is the change in log(selex) tempvec_a.initialize(); // null value for vector // echoinput<<" sp "<-999.) {seldelta=sp(j);} // so allows for seldelta to remain unchanged else if(gg==2 && sp(j)==-1000.) // more options for male selectivity {seldelta=sp(j-seltype(f,4));} // use female delta for the male delta at this age tempvec_a(a)=tempvec_a(a-1)+seldelta; // cumulative log(selex) } int low_bin = int(value(sp(2))); int high_bin = int(value(sp(3))); if(do_once==1) // this should move to readcontrol! { if (low_bin < 0) { low_bin = 0; N_warn++; warning<<" selex pattern 44; value for low bin is less than 0, so set to 0 "< nages) { high_bin = nages; N_warn++; warning<<" selex pattern 44; value for high bin is greater than "< high_bin) low_bin = high_bin; sp(2) = low_bin; sp(3) = high_bin; } temp=mean(tempvec_a(low_bin,high_bin)); sel_a(y,fs,gg)(first_age,last_age)=mfexp(tempvec_a(first_age,last_age)-temp); if(gg==2) sel_a(y,fs,gg)(first_age,last_age)*=mfexp(sp(4)); // apply male ratio if (last_age-999) {tempvec_a(a) = sp(j);} else if(gg==2 && sp(j)==-1000.) // set male selectivity raw value same as female {tempvec_a(a)=sp(j-seltype(f,4));} // use female parameter for males else // so value is -999 so set to next younger age {tempvec_a(a) = tempvec_a(a-1);} // warning<<" sex "< nages) { high_bin = nages; N_warn++; warning<<" selex pattern 44; value for high bin is greater than "< high_bin) low_bin = high_bin; } temp=8.-mean(tempvec_a(low_bin,high_bin)); // CrashPen+=temp*temp; sel_a(y,fs,gg)(first_age,last_age) = 1./(1.+mfexp(-(tempvec_a(first_age,last_age)+temp))); if(gg==2) {sel_a(y,fs,gg)(first_age,last_age)*=mfexp(sp(4));} // apply male ratio if (last_age0) sel_a(y,fs,1)(0,k1-1)=1.0e-6; break; } // SS_Label_Info_22.7.20 #age selectivity: double normal with plateau case 20: // *******double_normal_plateau { if(seltype(f,3)<3 || (gg==1 && seltype(f,3)==3) || (gg==2 && seltype(f,3)==4)) {peak=sp(1); upselex=mfexp(sp(3)); downselex=mfexp(sp(4)); final=sp(6); Apical_Selex=1.0;} else { // offset male parameters if seltype(f,3)==3 peak=sp(1)+sp(Maleselparm(f)); upselex=mfexp(sp(3)+sp(Maleselparm(f)+1)); downselex=mfexp(sp(4)+sp(Maleselparm(f)+2)); if(sp(6)>-999.) final=sp(6)+sp(Maleselparm(f)+3); Apical_Selex=sp(Maleselparm(f)+4); } if(sp(5)<-1000.) { j=-1001-int(value(sp(5))); // selex is nil thru age j, so set sp(5) equal to first age with selex (e.g. -1002 to start selex at age 2) sel_a(y,fs,gg)(0,j)=1.0e-06; } else { j=-1; // start selex at age 0 if(sp(5)>-999) { point1=1./(1.+mfexp(-sp(5))); t1min=mfexp(-(square(0.-peak)/upselex)); // fxn at first bin } } if(sp(6)<-1000.) { j2=-1000-int(value(sp(6))); // selex is constant beyond this age, so set sp(6) equal to last age with estimated selex // (e.g. -1008 to be constant beyond age 8) } else {j2=nages;} peak2=peak+1.+(0.99*r_ages(j2)-peak-1.)/(1.+mfexp(-sp(2))); // note, this uses age=j2 as constraint on range of "peak2" // peak2=peak+.1+(0.99*r_ages(j2)-peak-.1)/(1.+mfexp(-sp(2))); // note, this uses age=j2 as constraint on range of "peak2" if(sp(6)>-999) { point2=1./(1.+mfexp(-final)); t2min=mfexp(-(square(r_ages(nages)-peak2)/downselex)); // fxn at last bin } for (a=j+1;a<=j2;a++) { t1=r_ages(a)-peak; t2=r_ages(a)-peak2; join1=1./(1.+mfexp(-(20./(1.+fabs(t1)))*t1)); join2=1./(1.+mfexp(-(20./(1.+fabs(t2)))*t2)); if(sp(5)>-999) {asc=point1+(Apical_Selex-point1)*(mfexp(-square(t1)/upselex )-t1min)/(1.-t1min);} else {asc=Apical_Selex*mfexp(-square(t1)/upselex);} if(sp(6)>-999) {dsc=Apical_Selex+(point2-Apical_Selex)*(mfexp(-square(t2)/downselex)-1. )/(t2min-1.);} else {dsc=Apical_Selex*mfexp(-square(t2)/downselex);} sel_a(y,fs,gg,a)=asc*(1.-join1)+join1*(Apical_Selex*(1.-join2)+dsc*join2); } if(j2splineX(k)) {z--;} j2=z+1; // first age beyond last node vcubic_spline_function splinefn=vcubic_spline_function(splineX(1,k),splineY(1,k),sp(2+scaling_offset),sp(3+scaling_offset)); tempvec_a= splinefn(r_ages); // interpolate selectivity at each age if (scaling_offset == 0) { temp=max(tempvec_a(0,j2)); } else { int low_bin = int(value(sp(1))); int high_bin = int(value(sp(2))); if (low_bin < 0) { low_bin = 0; N_warn++; warning<<" selex pattern 42; value for low bin is less than 0, so set to 0 "< nages) { high_bin = nages; N_warn++; warning<<" selex pattern 42; value for high bin is greater than "< high_bin) low_bin = high_bin; sp(1) = low_bin; sp(2) = high_bin; temp=mean(tempvec_a(low_bin,high_bin)); scaling_offset = 0; // reset scaling offset } tempvec_a-=temp; // rescale to get max of 0.0 tempvec_a(j2+1,nages) = tempvec_a(j2); // set constant above last node sel_a(y,fs,1)=mfexp(tempvec_a); break; } default: // seltype not found. But really need this check earlier when the N selex parameters are being processed. { N_warn++; cout<<"Critical error, see warning"<temp1) temp1=sel_a(y,fs,2,a); } tempvec_a(1)=max(sel_a(y,fs,1)); tempvec_a(2)=max(sel_a(y,fs,2)); temp1=max(tempvec_a(1,2)); sel_a(y,fs)/=temp1; break; } case 2: { // do females relative to males sel_a(y,fs,2)=sel_a(y,fs,1); for (a=0;a<=nages;a++) // { if(r_ages(a)<=temp) {sel_a(y,fs,1,a)=sel_a(y,fs,2,a)*mfexp(sp(k+1)+(r_ages(a)-0.) /(temp-0.) * (sp(k+2)-sp(k+1)) );} else {sel_a(y,fs,1,a)=sel_a(y,fs,2,a)*mfexp(sp(k+2)+(r_ages(a)-temp) /(double(nages)-temp) * (sp(k+3)-sp(k+2)) );} // if(sel_a(y,fs,1,a)>temp1) temp1=sel_a(y,fs,1,a); } // sel_a(y,fs)/=temp1; tempvec_a(1)=max(sel_a(y,fs,1)); tempvec_a(2)=max(sel_a(y,fs,2)); temp1=max(tempvec_a(1,2)); sel_a(y,fs)/=temp1; break; } } } else if(seltype(f,3)!=3 && seltype(f,3)!=4 &&seltype(f,1)!=15 && seltype(f,1)!=44 && seltype(f,1)!=45) {sel_a(y,fs,2)=sel_a(y,fs,1);} // set males = females if(docheckup==1) echoinput<<" sel-age "<0) { j=TwoD_AR_use(f); // get index for this fleet's effect if(TwoD_AR_def[j](8)==2) // age (2) vs length (1) flag { z=TwoD_AR_def[j](12); // index of dev vector used if(docheckup==1) echoinput<<"age-based 2DAR for fleet: "<-2) { a1=TwoD_AR_def[j](13)-1; // parameter number-1 for sigmasel dvariable sigmasel; for(a=TwoD_AR_amin(j);a<=TwoD_AR_amax(j);a++) // loop lengths, using "a" as index { if(a<=TwoD_AR_def[j](6)) // so get sigmasel for this length bin { a1++; sigmasel=selparm(a1); } if(k>=0) { k++; if(docheckup==1) echoinput<endyr) {yz=endyr; } else {yz=y;} // not used if(y>endyr+1 && Fcast_Specify_Selex==0) {yf=endyr+1;} else {yf=y;} // yf stores in endyr+1 the average selex from a range of years if Fcast_Specify_Selex==0 tz=styr+(y-styr)*nseas+s-1; // can use y, not yf, because wtage_emp values are read in and can extend into forecast for (f=1;f<=Nfleet;f++) { if(timevary_sel(yf,f)>0 || timevary_sel(yf,f+Nfleet)>0 || WTage_rd==1 || save_for_report>0) { makefishsel_yr = yf; fs=f+Nfleet; // for the age dimensioning if (WTage_rd==1 || (seltype(f,1)==0 && seltype(f,2)==0) ) // empirical wt-at-age; no size-based calculations { if(WTage_rd==1) { sel_al_1(s,g,f)=elem_prod(sel_a(yf,f,gg),WTage_emp(tz,GP3(g),f)); // selected wt-at-age fish_body_wt(tz,g,f)=WTage_emp(tz,GP3(g),f); } else { sel_al_1(s,g,f)=elem_prod(sel_a(yf,f,gg),Wt_Age_mid(s,g)); // selected wt-at-age fish_body_wt(tz,g,f)=Wt_Age_mid(s,g); } sel_al_3(s,g,f)=sel_a(yf,f,gg); // selected numbers switch(seltype(fs,2)) // age-retention function { case 0: { sel_al_2(s,g,f)=sel_al_1(s,g,f); // retained wt-at-age sel_al_4(s,g,f)=sel_al_3(s,g,f); // retained numbers deadfish_B(s,g,f)=sel_al_1(s,g,f); // dead wt deadfish(s,g,f)=sel_al_3(s,g,f); // dead numbers break; } case 1: { sel_al_2(s,g,f)=elem_prod(sel_al_1(s,g,f),retain_a(y,fs,gg)); // retained wt-at-age sel_al_4(s,g,f)=elem_prod(sel_al_3(s,g,f),retain_a(y,fs,gg)); // retained numbers deadfish_B(s,g,f)=sel_al_2(s,g,f); // dead wt deadfish(s,g,f)=sel_al_4(s,g,f); // dead numbers break; } case 2: { sel_al_2(s,g,f)=elem_prod(sel_al_1(s,g,f),retain_a(y,fs,gg)); // retained wt-at-age sel_al_4(s,g,f)=elem_prod(sel_al_3(s,g,f),retain_a(y,fs,gg)); // retained numbers deadfish_B(s,g,f)=elem_prod(sel_al_2(s,g,f),discmort_a(y,fs,gg)); // dead wt deadfish(s,g,f)=elem_prod(sel_al_4(s,g,f),discmort_a(y,fs,gg)); // dead numbers break; } } } else // size_selectivity and possible size retention { tempvec_l=elem_prod(sel_l(yf,f,gg),wt_len(s,GP(g))); // combine size selex and wt_at_len to get selected contribution to weight-at-age if(seltype(f,2)!=0) sel_l_r_w=elem_prod(sel_l_r(yf,f,gg),wt_len(s,GP(g))); if(seltype(f,2)>=2) disc_wt=elem_prod(discmort2(yf,f,gg),wt_len(s,GP(g))); for(a=0;a<=nages;a++) { int llo=ALK_range_lo(a); int lhi=ALK_range_hi(a); sel_al_1(s,g,f,a)=sel_a(yf,f,gg,a)*(ALK_w(a)(llo,lhi) * tempvec_l(llo,lhi)); sel_al_3(s,g,f,a)=sel_a(yf,f,gg,a)*(ALK_w(a)(llo,lhi) * sel_l(yf,f,gg)(llo,lhi)); fish_body_wt(tz,g,f,a)=(ALK_w(a)(llo,lhi)*tempvec_l(llo,lhi)) / (ALK_w(a)(llo,lhi)*sel_l(yf,f,gg)(llo,lhi)); if(seltype(f,2)!=0) // size discard, so need retention function { sel_al_2(s,g,f,a)=sel_a(yf,f,gg,a)*(ALK_w(a)(llo,lhi) * sel_l_r_w(llo,lhi) ); sel_al_4(s,g,f,a)=sel_a(yf,f,gg,a)* (ALK_w(a)(llo,lhi) * sel_l_r(yf,f,gg)(llo,lhi) ); } else if (a==nages) { sel_al_2(s,g,f)=sel_al_1(s,g,f); sel_al_4(s,g,f)=sel_al_3(s,g,f); } if(seltype(f,2)>=2) // calc discard mortality { deadfish(s,g,f,a)=sel_a(yf,f,gg,a)*(ALK_w(a)(llo,lhi) * discmort2(yf,f,gg)(llo,lhi)); // selected dead by numbers deadfish_B(s,g,f,a)=sel_a(yf,f,gg,a)*(ALK_w(a)(llo,lhi) * disc_wt(llo,lhi)); // selected dead by weight } else if(a==nages) { deadfish_B(s,g,f)=sel_al_1(s,g,f); deadfish(s,g,f)=sel_al_3(s,g,f); } } // end age loop } if(save_for_report==2 && ishadow(GP2(g))==0) { if(sum(fish_body_wt(tz,g,f))>0.00001) { bodywtout<0 && recdev_options(2)>=0 ) // do logic on basis of recdev_options(2), which is read, not recdev_PH which can be reset to a neg. value { for (i=recdev_early_start;i<=recdev_early_end;i++) {if(i>=styr-nages) biasadj(i)=biasadj_full(i);} } if(do_recdev>0 && recdev_PH_rd>=0 ) { for (i=recdev_start;i<=recdev_end;i++) {if(i>=styr-nages) biasadj(i)=biasadj_full(i);} } if(Do_Forecast>0 && recdev_options(3)>=0 ) { for (i=recdev_end+1;i<=YrMax;i++) {biasadj(i)=biasadj_full(i);} } if(recdev_read>0) { for (j=1;j<=recdev_read;j++) { y=recdev_input(j,1); if(y>=recdev_first && y<=YrMax) biasadj(y)=biasadj_full(y); } } } sd_offset_rec=sum(biasadj)*sd_offset; // SS_Label_Info_7.2 #Copy recdev parm vectors into full time series vector if(recdev_do_early>0) {recdev(recdev_early_start,recdev_early_end)=recdev_early(recdev_early_start,recdev_early_end);} if(do_recdev==1) {recdev(recdev_start,recdev_end)=recdev1(recdev_start,recdev_end);} else if(do_recdev>=2) {recdev(recdev_start,recdev_end)=recdev2(recdev_start,recdev_end);} if(Do_Forecast>0) recdev(recdev_end+1,YrMax)=Fcast_recruitments(recdev_end+1,YrMax); // only needed here for reporting } // end setup for recdevs FUNCTION void get_initial_conditions() { //********************************************************************* /* SS_Label_Function_23 #get_initial_conditions */ natage.initialize(); catch_fleet.initialize(); annual_catch.initialize(); annual_F.initialize(); Recr.initialize(); if(SzFreq_Nmeth>0) SzFreq_exp.initialize(); // SS_Label_Info_23.1 #call biology and selectivity functions for the initial year // SS_Label_Info_23.1.1 #These rate are calculated once in PRELIMINARY_CALCS_SECTION, so only recalculate if active according to MG_active y=styr; yz=styr; t_base=styr-1; recr_dist_unf.initialize(); natM_unf.initialize(); surv1_unf.initialize(); surv2_unf.initialize(); // Create time varying parameters // following call is to routine that does this for all timevary parameters // that are then copied over to replace the base parameter for MG, SRR, Q, Selex, or Tag as needed make_timevaryparm(); // this fills array parm_timevary for all years; densitydependence must be done year-by-year later if(MG_active(0)>0 || save_for_report>0) { get_MGsetup(); } if(do_once==1) cout<<" MG setup OK "<0) get_growth1(); // seasonal effects and CV if(do_once==1) cout<<" growth1 OK"<0 || save_for_report>0) { ALK_subseas_update=1; // to indicate that all ALKs need calculation get_growth2(); for (s=1;s<=nseas;s++) { for(subseas=1;subseas<=N_subseas;subseas++) // do all subseasons in first year { get_growth3(s, subseas); // in case needed for Lorenzen M } } } if(MG_active(1)>0) get_natmort(); if(do_once==1) cout<<" natmort OK"<=Bmark_Yr(1)&&y<=Bmark_Yr(2)) { for (s=1;s<=nseas;s++) for (gp=1;gp<=N_GP*gender*N_settle_timings;gp++) { natM_unf(s,gp)+=natM(s,gp); // need nseas to capture differences due to settlement surv1_unf(s,gp)+=surv1(s,gp); // need nseas to capture differences due to settlement surv2_unf(s,gp)+=surv2(s,gp); // need nseas to capture differences due to settlement } } if(MG_active(3)>0) get_wtlen(); if(MG_active(4)>0) get_recr_distribution(); if(y>=Bmark_Yr(7)&&y<=Bmark_Yr(8)) { for (gp=1;gp<=N_GP;gp++) for (p=1;p<=pop;p++) for (settle=1;settle<=N_settle_timings;settle++) if(recr_dist_pattern(gp,settle,p)>0) { recr_dist_unf(gp,settle,p)+=recr_dist(gp,settle,p); if(gender==2) recr_dist_unf(gp+N_GP,settle,p)+=recr_dist(gp+N_GP,settle,p); } } if(MG_active(5)>0) get_migration(); if(do_once==1) cout<<" migr OK"<0) { get_catch_mult(y, catch_mult_pointer); for(j=styr+1;j<=YrMax;j++) { catch_mult(j)=catch_mult(y); } } if(Use_AgeKeyZero>0) { if(MG_active(6)>0) get_age_age(Use_AgeKeyZero,AgeKey_StartAge,AgeKey_Linear1,AgeKey_Linear2); // call function to get the age_age key if(do_once==1) cout<<" ageerr_key OK"<0) {get_saveGparm();} // SS_Label_Info_23.2 #Calculate selectivity in the initial year get_selectivity(); if(do_once==1) cout<<" selex OK, ready to call ALK and fishselex "<0 || MG_active(3)>0 || save_for_report>0) // initial year; if growth parms are active, get growth { for(subseas=1;subseas<=N_subseas;subseas++) // do all subseasons in first year { // SS_Label_Info_23.3.1 #calculate mean size-at-age, then size_at_age distribution (ALK) get_growth3(s, subseas); Make_AgeLength_Key(s, subseas); } } if(WTage_rd>0) { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { Wt_Age_beg(s,g)=WTage_emp(t,GP3(g),0); Wt_Age_mid(s,g)=WTage_emp(t,GP3(g),-1); if(s==spawn_seas) fec(g)=WTage_emp(t,GP3(g),-2); } } else if(MG_active(2)>0 || MG_active(3)>0 || save_for_report>0 || do_once==1) { Make_Fecundity(); // if(do_once==1) echoinput<<"Save_fec in initial year: "<0) { subseas=1; ALK_idx=(s-1)*N_subseas+subseas; Wt_Age_beg(s,g)=(ALK(ALK_idx,g)*wt_len(s,GP(g))); // wt-at-age at beginning of period subseas=mid_subseas; ALK_idx=(s-1)*N_subseas+subseas; Wt_Age_mid(s,g)=ALK(ALK_idx,g)*wt_len(s,GP(g)); // use for fisheries with no size selectivity } } Save_Wt_Age(t)=Wt_Age_beg(s); // if(do_once==1) echoinput<<"Save_Wt_Age in initial year: "<0) { // SS_Label_Info_23.3.3 #for each platoon, combine size_at_age distribution with length selectivity and weight-at-length to get combined selectivity vectors Make_FishSelex(); } } if(do_once==1) cout<<" ready for virgin age struc "<0) { SSB_B_yr(eq_yr).initialize(); SSB_N_yr(eq_yr).initialize(); for (s=1;s<=nseas;s++) for (p=1;p<=pop;p++) for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { if(s==spawn_seas && sx(g)==1) { SSB_B_yr(eq_yr) += make_mature_bio(GP4(g))*natage(t+s,p,g); SSB_N_yr(eq_yr) += make_mature_numbers(GP4(g))*natage(t+s,p,g); } Save_PopBio(t+s,p,g)=elem_prod(natage(t+s,p,g),Wt_Age_beg(s,g)); } } } else // area-specific spawn-recruitment { } // SS_Label_Info_23.5 #Calculate equilibrium using initial F if(do_once==1) cout<<" ready for initial age struc "<0) {Hrate(f,t) = init_F(init_F_loc(s,f));} } } // for the initial equilibrium, R0 and steepness will remain same as for virgin, but a regime shift is allowed // change with 3.30.12 to allow R0 to change according to a timevary effect // exp_rec(eq_yr,1)=Recr_virgin; // R1_exp=Recr_virgin; R1_exp=mfexp(SR_parm_work(1)); exp_rec(eq_yr,1)=R1_exp; // SS_Label_Info_23.5.1 #Apply adjustments to the recruitment level // SPAWN-RECR: adjust recruitment for the initial equilibrium regime_change=1.0; if(SR_parm_timevary(N_SRparm2-1)>0) // timevary regime exists { regime_change=mfexp(SR_parm_work(N_SRparm2-1)); } if(init_equ_steepness==0) // Adjustments do not include spawner-recruitment steepness { // R1=Recr_virgin*regime_change; R1=R1_exp*regime_change; exp_rec(eq_yr,2)=R1; exp_rec(eq_yr,3)=R1; exp_rec(eq_yr,4)=R1; equ_Recr=R1; // equ_Recr is used inside of Do_Equil_Calc Do_Equil_Calc(equ_Recr); CrashPen += Equ_penalty; } else { // SS_Label_Info_23.5.1.2 #Adjustments include spawner-recruitment function // do initial equilibrium with R1 based on offset from spawner-recruitment curve, using same approach as the benchmark calculations // first get SPR for this init_F // SPAWN-RECR: calc initial equilibrium pop, SPB, Recruitment // equ_Recr=Recr_virgin; equ_Recr=R1_exp*regime_change; Do_Equil_Calc(equ_Recr); CrashPen += Equ_penalty; SPR_temp=SSB_equil/equ_Recr; // spawners per recruit at initial F // get equilibrium SSB and recruitment from SPR_temp, Recr_virgin and virgin steepness Equ_SpawnRecr_Result = Equil_Spawn_Recr_Fxn(SR_parm(2), SR_parm(3), SSB_virgin, Recr_virgin, SPR_temp); // returns 2 element vector containing equilibrium biomass and recruitment at this SPR R1_exp=Equ_SpawnRecr_Result(2); // set the expected recruitment equal to this equilibrium exp_rec(eq_yr,1)=R1_exp; equ_Recr=R1_exp*regime_change; exp_rec(eq_yr,2)=equ_Recr; exp_rec(eq_yr,3)=equ_Recr; exp_rec(eq_yr,4)=equ_Recr; R1=equ_Recr; Do_Equil_Calc(equ_Recr); // calculated SSB_equil CrashPen += Equ_penalty; } SSB_pop_gp(eq_yr)=SSB_equil_pop_gp; // dimensions of pop x N_GP if(Hermaphro_Option!=0) MaleSPB(eq_yr)=MaleSSB_equil_pop_gp; SSB_yr(eq_yr)=SSB_equil; SR_parm_byyr(eq_yr,N_SRparm2+1)=SSB_equil; SR_parm_work(N_SRparm2+1)=SSB_equil; SSB_yr(styr)=SSB_equil; env_data(styr-1,-1)=0.0; env_data(styr-1,-2)=0.0; env_data(styr-1,-3)=0.0; env_data(styr-1,-4)=0.0; for (s=1;s<=nseas;s++) for (f=1;f<=Nfleet;f++) { if(catchunits(f)==1) { est_equ_catch(s,f)=equ_catch_fleet(2,s,f); } else { est_equ_catch(s,f)=equ_catch_fleet(5,s,f); } } if(save_for_report>0) { for (s=1;s<=nseas;s++) { t=styr-nseas-1+s; for (f=1;f<=Nfleet;f++) { for (g=1;g<=6;g++) {catch_fleet(t,f,g)=equ_catch_fleet(g,s,f); annual_catch(styr-1,g)+=equ_catch_fleet(g,s,f); } for (g=1;g<=gmorph;g++) {catage(t,f,g)=equ_catage(s,f,g); } } } for(k=1;k<=3;k++) {Smry_Table(styr-1,k+3)=annual_catch(styr-1,k);} } for (s=1;s<=nseas;s++) { t=styr-nseas-1+s; a=styr-1+s; for (p=1;p<=pop;p++) for (g=1;g<=gmorph;g++) { natage(t,p,g)(0,nages)=equ_numbers(s,p,g)(0,nages); natage(a,p,g)(0,nages)=equ_numbers(s,p,g)(0,nages); } } if(save_for_report>0) { t=styr-nseas-1; SSB_B_yr(eq_yr).initialize(); SSB_N_yr(eq_yr).initialize(); for (s=1;s<=nseas;s++) for (p=1;p<=pop;p++) for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { if(s==spawn_seas && sx(g)==1) { SSB_B_yr(eq_yr) += make_mature_bio(GP4(g))*natage(t+s,p,g); SSB_N_yr(eq_yr) += make_mature_numbers(GP4(g))*natage(t+s,p,g); } Save_PopBio(t+s,p,g)=elem_prod(natage(t+s,p,g),Wt_Age_beg(s,g)); } } if(docheckup==1) echoinput<<" init age comp for styr "<=1; a--) { j=styr-a; natage(styr,p,g,a) *=mfexp(recdev(j)-biasadj(j)*half_sigmaRsq); } } else { for (p=1;p<=pop;p++) for (g=1;g<=gmorph;g++) for (a=styr-recdev_first; a>=1; a--) { j=styr-a; natage(styr,p,g,a) *=mfexp(recdev(j)); } } } SSB_pop_gp(styr)=SSB_pop_gp(styr-1); // placeholder in case not calculated early in styr // note: the above keeps SSB_pop_gp(styr) = SSB_equil. It does not adjust for initial agecomp, but probably should } // end initial_conditions //********************************************************************* FUNCTION void get_time_series() { /* SS_Label_Function_24 get_time_series */ dvariable crashtemp; dvariable crashtemp1; dvariable interim_tot_catch; dvariable Z_adjuster; dvariable R0_use; dvariable SSB_use; if(Do_Morphcomp) Morphcomp_exp.initialize(); // SS_Label_Info_24.0 #Retrieve spawning biomass and recruitment from the initial equilibrium // SPAWN-RECR: begin of time series, retrieve last spbio and recruitment SSB_current = SSB_yr(styr); // need these initial assignments in case recruitment distribution occurs before spawnbio&recruits if(recdev_doit(styr-1)>0) { Recruits = R1 * mfexp(recdev(styr-1)-biasadj(styr-1)*half_sigmaRsq); } else { Recruits = R1;} smrybio=0.0; smrynum=0.0; for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (p=1;p<=pop;p++) { smrybio+=natage(styr,p,g)(Smry_Age,nages)*Save_Wt_Age(styr,g)(Smry_Age,nages); smrynum+=sum(natage(styr,p,g)(Smry_Age,nages)); //sums to accumulate across platoons and settlements } } Smry_Table(styr-1,2)=smrybio; Smry_Table(styr-1,3)=smrynum; // SS_Label_Info_24.1 #Loop the years for (y=styr;y<=endyr;y++) { yz=y; if(STD_Yr_Reverse_F(y)>0) F_std(STD_Yr_Reverse_F(y))=0.0; t_base=styr+(y-styr)*nseas-1; for(f=1;f<=N_SRparm2;f++) { if(SR_parm_timevary(f)==0) { // no change to SR_parm_work } else { SR_parm_work(f)=parm_timevary(SR_parm_timevary(f),y); } SR_parm_byyr(y,f)=SR_parm_work(f); } { env_data(y,-1)=log(SSB_current/SSB_yr(styr-1)); // store most recent value for density-dependent effects, NOTE - off by a year if recalc'ed at beginning of season 1 if(recdev_doit(y)>0) {env_data(y,-2)=recdev(y);} // store so can do density-dependence else { // should be 0.0 } // warning<0 || timevary_MG(y,3)>0 || save_for_report==1 || WTage_rd>0) { subseas=1; // begin season note that ALK_idx re-calculated inside get_growth3 ALK_idx=(s-1)*N_subseas+subseas; // redundant with calc inside get_growth3 ???? // get_growth3(s, subseas); // not needed because size-at-age already has been propagated to seas 1 subseas 1 Make_AgeLength_Key(s, subseas); // this will give wt_age_beg before any time-varying parameter changes for this year } smrybio=0.0; smrynum=0.0; for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (p=1;p<=pop;p++) { smrybio+=natage(t,p,g)(Smry_Age,nages)*Wt_Age_beg(1,g)(Smry_Age,nages); smrynum+=sum(natage(t,p,g)(Smry_Age,nages)); //sums to accumulate across platoons and settlements } } env_data(y,-3)=log(smrybio/Smry_Table(styr-1,2)); env_data(y,-4)=log(smrynum/Smry_Table(styr-1,3)); Smry_Table(y,2)=smrybio; Smry_Table(y,3)=smrynum; } if(y>styr) { if(do_densitydependent==1) make_densitydependent_parm(y); // call to adjust for density dependence // SS_Label_Info_24.1.1 #Update the time varying biology factors if necessary if(timevary_MG(y,0)>0 || save_for_report>0) get_MGsetup(); if(timevary_MG(y,2)>0) { ALK_subseas_update=1; // indicate that all ALKs will need re-estimation get_growth2(); } if(timevary_MG(y,1)>0) get_natmort(); if(y>=Bmark_Yr(1)&&y<=Bmark_Yr(2)) { for (s=1;s<=nseas;s++) for (gp=1;gp<=N_GP*gender*N_settle_timings;gp++) { natM_unf(s,gp)+=natM(s,gp); surv1_unf(s,gp)+=surv1(s,gp); surv2_unf(s,gp)+=surv2(s,gp); } } if(timevary_MG(y,3)>0) get_wtlen(); if(timevary_MG(y,4)>0) get_recr_distribution(); if(y>=Bmark_Yr(7)&&y<=Bmark_Yr(8)) { for (gp=1;gp<=N_GP;gp++) for (p=1;p<=pop;p++) for (settle=1;settle<=N_settle_timings;settle++) if(recr_dist_pattern(gp,settle,p)>0) { recr_dist_unf(gp,settle,p)+=recr_dist(gp,settle,p); if(gender==2) recr_dist_unf(gp+N_GP,settle,p)+=recr_dist(gp+N_GP,settle,p); } } if(timevary_MG(y,5)>0) get_migration(); if(timevary_MG(y,7)>0) { get_catch_mult(y, catch_mult_pointer); } if(Use_AgeKeyZero>0) { if(timevary_MG(y,6)>0) { get_age_age(Use_AgeKeyZero,AgeKey_StartAge,AgeKey_Linear1,AgeKey_Linear2); // call function to get the age_age key if(do_once==1) cout<<" ageerr_key recalc in "<0) { if(timevary_MG(y,1)>0 || timevary_MG(y,2)>0 || timevary_MG(y,3)>0) { get_saveGparm(); } } } // SS_Label_Info_24.2 #Loop the seasons for (s=1;s<=nseas;s++) { if (docheckup==1) echoinput<0 || timevary_MG(y,3)>0 || save_for_report==1 || WTage_rd>0) if(timevary_MG(y,2)>0 || save_for_report==1) { subseas=1; // begin season note that ALK_idx re-calculated inside get_growth3 get_growth3(s, subseas); Make_AgeLength_Key(s, subseas); subseas=mid_subseas; get_growth3(s, subseas); Make_AgeLength_Key(s, subseas); // for midseason // SPAWN-RECR: call Make_Fecundity in time series if(s==spawn_seas) { if(spawn_subseas!=1 && spawn_subseas!=mid_subseas) { subseas=spawn_subseas; get_growth3(s, subseas); Make_AgeLength_Key(s, subseas); // spawn subseas } } } if(WTage_rd>0) { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { Wt_Age_beg(s,g)=WTage_emp(t,GP3(g),0); Wt_Age_mid(s,g)=WTage_emp(t,GP3(g),-1); if(s==spawn_seas) fec(g)=WTage_emp(t,GP3(g),-2); } } else if(timevary_MG(y,2)>0 || timevary_MG(y,3)>0 || save_for_report==1 || do_once==1) { Make_Fecundity(); // if(do_once==1) echoinput<<"Save_fec in "<0) { subseas=1; ALK_idx=(s-1)*N_subseas+subseas; Wt_Age_beg(s,g)=(ALK(ALK_idx,g)*wt_len(s,GP(g))); // wt-at-age at beginning of period subseas=mid_subseas; ALK_idx=(s-1)*N_subseas+subseas; Wt_Age_mid(s,g)=ALK(ALK_idx,g)*wt_len(s,GP(g)); // use for fisheries with no size selectivity } } Save_Wt_Age(t)=Wt_Age_beg(s); // if(do_once==1) echoinput<<"Save_Wt_Age in "<styr) // because styr is done as part of initial conditions { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) {Make_FishSelex();} } // SS_Label_Info_24.2.2 #Compute spawning biomass if this is spawning season so recruits could occur later this season // SPAWN-RECR: calc SPB in time series if spawning is at beginning of the season if(s==spawn_seas && spawn_time_seas<0.0001) // compute spawning biomass if spawning at beginning of season so recruits could occur later this season { SSB_pop_gp(y).initialize(); SSB_B_yr(y).initialize(); SSB_N_yr(y).initialize(); for (p=1;p<=pop;p++) { for (g=1;g<=gmorph;g++) if(sx(g)==1 && use_morph(g)>0) // female { SSB_pop_gp(y,p,GP4(g)) += fracfemale_mult*fec(g)*natage(t,p,g); // accumulates SSB by area and by growthpattern SSB_B_yr(y) += fracfemale_mult*make_mature_bio(GP4(g))*natage(t,p,g); SSB_N_yr(y) += fracfemale_mult*make_mature_numbers(GP4(g))*natage(t,p,g); // SSB_pop_gp(y,p,GP4(g)) += fec(g)*natage(t,p,g); // accumulates SSB by area and by growthpattern // SSB_B_yr(y) += make_mature_bio(GP4(g))*natage(t,p,g); // SSB_N_yr(y) += make_mature_numbers(GP4(g))*natage(t,p,g); } } SSB_current=sum(SSB_pop_gp(y)); SSB_yr(y)=SSB_current; if(Hermaphro_Option!=0) // get male biomass { MaleSPB(y).initialize(); for (p=1;p<=pop;p++) { for (g=1;g<=gmorph;g++) if(sx(g)==2 && use_morph(g)>0) // male; all assumed to be mature { MaleSPB(y,p,GP4(g)) += Save_Wt_Age(t,g)*natage(t,p,g); // accumulates SSB by area and by growthpattern } } if(Hermaphro_maleSPB==1) // add MaleSPB to female SSB { SSB_current+=sum(MaleSPB(y)); SSB_yr(y)=SSB_current; } } // SS_Label_Info_24.2.3 #Get the total recruitment produced by this spawning biomass // SPAWN-RECR: calc recruitment in time series; need to make this area-specific if(SR_parm_timevary(1)==0) // R0 is not time-varying {R0_use=Recr_virgin; SSB_use=SSB_virgin;} else { R0_use=mfexp(SR_parm_work(1)); equ_Recr=R0_use; Fishon=0; eq_yr=y; bio_yr=y; Do_Equil_Calc(R0_use); // call function to do equilibrium calculation if(fishery_on_off==1) {Fishon=1;} else {Fishon=0;} SSB_use=SSB_equil; } Recruits=Spawn_Recr(SSB_use,R0_use,SSB_current); // calls to function Spawn_Recr apply_recdev(Recruits, R0_use); // apply recruitment deviation // distribute Recruitment of age 0 fish among the current and future settlements; and among areas and morphs // use t offset for each birth event: Settlement_offset(settle) // so the total number of Recruits will be relative to their numbers at the time of the set of settlement_events. // so need the integer elapsed time (in season count) stored in Birth_offset() // and need the real elapsed time (in fraction of a year) from the beginning of the season to settlement // use NatM to calculate the virtual numbers that would have existed at the beginning of the season of the settlement // need to use natM(t) because natM(t+offset) is not yet known // also need to store the integer age at settlement // NOTE: the settlement is added to natage at the beginning of the season in which the settlement occurs, // so it will be fished and sampled even before its settlement time // this is a shortcoming that might be dealt with in future. // For now, users will need to create finer season structure // NOTE: the distributed recruits are added into natage because more than one settlement can occur in same season // but each settlement has a unique "g", so maybe additive is not necessary for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { settle=settle_g(g); for (p=1;p<=pop;p++) { if(y==styr) natage(t+Settle_seas_offset(settle),p,g,Settle_age(settle))=0.0; // to negate the additive code natage(t+Settle_seas_offset(settle),p,g,Settle_age(settle)) += Recruits*recr_dist(GP(g),settle,p)*platoon_distr(GP2(g))* mfexp(natM(s,GP3(g),Settle_age(settle))*Settle_timing_seas(settle)); Recr(p,t+Settle_seas_offset(settle))+=Recruits*recr_dist(GP(g),settle,p)*platoon_distr(GP2(g)); // the adjustment for mortality increases recruit value for elapsed time since begin of season because M will then be applied from beginning of season if(docheckup==1) echoinput<0) { // SS_Label_Info_24.3.1 #Get middle of season numbers-at-age from M only; Nmid(g) = elem_prod(natage(t,p,g),surv1(s,GP3(g))); // get numbers-at-age(g,a) surviving to middle of time period if(docheckup==1) echoinput<0) { if(catchunits(f)==1) {vbio+=Nmid(g)*sel_al_2(s,g,f);} // retained catch bio else {vbio+=Nmid(g)*sel_al_4(s,g,f);} // retained catch numbers } //close gmorph loop // SS_Label_Info_24.3.3.3.2 #Apply constraint so that no fleet's initial calculation of harvest rate would exceed 95% temp = catch_ret_obs(f,t)/(vbio+0.1*catch_ret_obs(f,t)); // Pope's rate robust join1=1./(1.+mfexp(30.*(temp-0.95))); // steep logistic joiner at harvest rate of 0.95 temp1=join1*temp + (1.-join1)*0.95; // SS_Label_Info_24.3.3.3.3 #Convert the harvest rate to a starting value for F Hrate(f,t)=-log(1.-temp1)/seasdur(s); // initial estimate of F (even though labelled as Hrate) //echoinput<0.0) exit(1); // done with starting values from Pope's approximation } else { // Hrate(f,t) previously set to zero or set to a parameter value } } // SS_Label_Info_24.3.3.3.4 #Do a specified number of loops to tune up these F values to more closely match the observed catch for (int tune_F=1;tune_F<=F_Tune-1;tune_F++) { // SS_Label_Info_24.3.3.3.5 #add F+M to get Z for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { Z_rate(t,p,g)=natM(s,GP3(g)); for (f=1;f<=Nfleet;f++) //loop over fishing fleets to get Z if (catch_seas_area(t,p,f)!=0) { Z_rate(t,p,g)+=deadfish(s,g,f)*Hrate(f,t); } Zrate2(p,g)=elem_div( (1.-mfexp(-seasdur(s)*Z_rate(t,p,g))), Z_rate(t,p,g)); } // gradient_structure::set_NO_DERIVATIVES(); // SS_Label_Info_24.3.3.3.6 #Now calc adjustment to Z based on changes to be made to Hrate // if(tune_F0) { if(catchunits(f)==1) { interim_tot_catch+=catch_mult(y,f)*Hrate(f,t)*elem_prod(natage(t,p,g),sel_al_2(s,g,f))*Zrate2(p,g); // biomass basis } else { interim_tot_catch+=catch_mult(y,f)*Hrate(f,t)*elem_prod(natage(t,p,g),sel_al_4(s,g,f))*Zrate2(p,g); // numbers basis } } //close gmorph loop } // close fishery } Z_adjuster = totcatch_byarea(t,p)/(interim_tot_catch+0.0001); // but this totcatch_by_area needs to exclude fisheries with F from param for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { Z_rate(t,p,g)=natM(s,GP3(g)) + Z_adjuster*(Z_rate(t,p,g)-natM(s,GP3(g))); // need to modify to only do the exact catches Zrate2(p,g)=elem_div( (1.-mfexp(-seasdur(s)*Z_rate(t,p,g))), Z_rate(t,p,g)); } for (f=1;f<=Nfleet;f++) //loop over fishing fleets with input catch if(fleet_type(f)==1) { if(catch_seas_area(t,p,f)==1) { vbio=0.; // now use this to calc the selected vulnerable biomass (numbers) to each fishery with the adjusted Zrate2 // since catch = N * F*sel * (1-e(-Z))/Z // so F = catch / (N*sel * (1-e(-Z)) /Z ) for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { if(catchunits(f)==1) { vbio+=elem_prod(natage(t,p,g),sel_al_2(s,g,f)) *Zrate2(p,g); } else { vbio+=elem_prod(natage(t,p,g),sel_al_4(s,g,f)) *Zrate2(p,g); } } //close gmorph loop temp=catch_ret_obs(f,t)/(catch_mult(y,f)*vbio+0.0001); // prototype new F join1=1./(1.+mfexp(30.*(temp-0.95*max_harvest_rate))); Hrate(f,t)=join1*temp + (1.-join1)*max_harvest_rate; // new F value for this fleet } // close fishery } } /* else { // SS_Label_Info_24.3.3.3.7 #Final tuning loop; loop over fleets to apply the iterated F for (f=1;f<=Nfleet;f++) if (catch_seas_area(t,p,f)==1) { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { catch_fleet(t,f,1)+=Hrate(f,t)*elem_prod(natage(t,p,g),sel_al_1(s,g,f))*Zrate2(p,g); catch_fleet(t,f,2)+=Hrate(f,t)*elem_prod(natage(t,p,g),deadfish_B(s,g,f))*Zrate2(p,g); catch_fleet(t,f,3)+=Hrate(f,t)*elem_prod(natage(t,p,g),sel_al_2(s,g,f))*Zrate2(p,g); catch_fleet(t,f,4)+=Hrate(f,t)*elem_prod(natage(t,p,g),sel_al_3(s,g,f))*Zrate2(p,g); catch_fleet(t,f,5)+=Hrate(f,t)*elem_prod(natage(t,p,g),deadfish(s,g,f))*Zrate2(p,g); catch_fleet(t,f,6)+=Hrate(f,t)*elem_prod(natage(t,p,g),sel_al_4(s,g,f))*Zrate2(p,g); catage(t,f,g)=Hrate(f,t)*elem_prod(elem_prod(natage(t,p,g),deadfish(s,g,f)),Zrate2(p,g)); } //close gmorph loop } // close fishery } */ } // break; // gradient_structure::set_YES_DERIVATIVES(); } // end hybrid F_Method // SS_Label_Info_24.3.3.2 #Use a parameter for continuoous F case 2: // continuous F_method { // SS_Label_Info_24.3.3.2.1 #For each platoon, loop fleets to calculate Z = M+sum(F) for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { Z_rate(t,p,g)=natM(s,GP3(g)); for (f=1;f<=Nfleet;f++) if (catch_seas_area(t,p,f)==1) { Z_rate(t,p,g)+=deadfish(s,g,f)*Hrate(f,t); } Zrate2(p,g)=elem_div( (1.-mfexp(-seasdur(s)*Z_rate(t,p,g))), Z_rate(t,p,g)); } // SS_Label_Info_24.3.3.2.2 #For each fleet, loop platoons and accumulate catch for (f=1;f<=Nfleet;f++) if (catch_seas_area(t,p,f)==1) { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { catch_fleet(t,f,1)+=Hrate(f,t)*elem_prod(natage(t,p,g),sel_al_1(s,g,f))*Zrate2(p,g); catch_fleet(t,f,2)+=Hrate(f,t)*elem_prod(natage(t,p,g),deadfish_B(s,g,f))*Zrate2(p,g); catch_fleet(t,f,3)+=Hrate(f,t)*elem_prod(natage(t,p,g),sel_al_2(s,g,f))*Zrate2(p,g); // retained bio catch_fleet(t,f,4)+=Hrate(f,t)*elem_prod(natage(t,p,g),sel_al_3(s,g,f))*Zrate2(p,g); catch_fleet(t,f,5)+=Hrate(f,t)*elem_prod(natage(t,p,g),deadfish(s,g,f))*Zrate2(p,g); catch_fleet(t,f,6)+=Hrate(f,t)*elem_prod(natage(t,p,g),sel_al_4(s,g,f))*Zrate2(p,g); // retained numbers catage(t,f,g)=Hrate(f,t)*elem_prod(elem_prod(natage(t,p,g),deadfish(s,g,f)),Zrate2(p,g)); if(Do_Retain(f)>0) { disc_age(t,disc_fleet_list(f),g)=Hrate(f,t)*elem_prod(elem_prod(natage(t,p,g),sel_al_3(s,g,f)),Zrate2(p,g)); // selected numbers disc_age(t,disc_fleet_list(f)+N_retain_fleets,g)=Hrate(f,t)*elem_prod(elem_prod(natage(t,p,g),sel_al_4(s,g,f)),Zrate2(p,g)); // selected numbers } } //close gmorph loop } // close fishery break; } // end continuous F method case 1: // F_Method is Pope's approximation { // SS_Label_Info_24.3.3.1 #Use F_Method=1 for Pope's approximation // SS_Label_Info_24.3.3.1.1 #loop over fleets for (f=1;f<=Nfleet;f++) if (catch_seas_area(t,p,f)==1) { dvar_matrix catage_w=catage(t,f); // do shallow copy // SS_Label_Info_24.3.3.1.2 #loop over platoons and calculate the vulnerable biomass for each fleet vbio.initialize(); for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { // use sel_l to get total catch and use sel_l_r to get retained vbio // note that vbio in numbers can be used for both survey abund and fishery available "biomass" // vbio is for retained catch only; harvest rate = retainedcatch/vbio; // then harvestrate*catage_w = total kill by this fishery for this morph if(catchunits(f)==1) { vbio+=Nmid(g)*sel_al_2(s,g,f);} // retained catch bio else { vbio+=Nmid(g)*sel_al_4(s,g,f);} // retained catch numbers } //close gmorph loop if(docheckup==1) echoinput<<"fleet vbio obs_catch catch_mult vbio*catchmult"<=2) {cout<0) { catage_w(g)=harvest_rate*elem_prod(Nmid(g),deadfish(s,g,f)); // total kill numbers at age if(docheckup==1) echoinput<<"killrate "<0) { for (a=0;a<=nages;a++) // check for negative abundance, starting at age 1 { if(natage(t,p,g,a)>0.0) { crashtemp=max_harvest_rate-catage_tot(g,a)/(Nmid(g,a)+0.0000001); crashtemp1=posfun(crashtemp,0.000001,CrashPen); if(crashtemp<0.&&rundetail>=2) {cout<<" crash age "<0) {Z_rate(t,p,g)=natM(s,GP3(g));} } } //close area loop // SS_Label_Info_24.3.4 #Compute spawning biomass if occurs after start of current season // SPAWN-RECR: calc spawn biomass in time series if after beginning of the season if(s==spawn_seas && spawn_time_seas>=0.0001) // compute spawning biomass { SSB_pop_gp(y).initialize(); SSB_B_yr(y).initialize(); SSB_N_yr(y).initialize(); for (p=1;p<=pop;p++) { for (g=1;g<=gmorph;g++) if(sx(g)==1 && use_morph(g)>0) // female { SSB_pop_gp(y,p,GP4(g)) += fracfemale_mult*fec(g)*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); // accumulates SSB by area and by growthpattern SSB_B_yr(y) += fracfemale_mult*make_mature_bio(GP4(g))*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); SSB_N_yr(y) += fracfemale_mult*make_mature_numbers(GP4(g))*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); // SSB_pop_gp(y,p,GP4(g)) += fec(g)*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); // accumulates SSB by area and by growthpattern // SSB_B_yr(y) += make_mature_bio(GP4(g))*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); // SSB_N_yr(y) += make_mature_numbers(GP4(g))*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); } } SSB_current=sum(SSB_pop_gp(y)); SSB_yr(y)=SSB_current; if(Hermaphro_Option!=0) // get male biomass { MaleSPB(y).initialize(); for (p=1;p<=pop;p++) { for (g=1;g<=gmorph;g++) if(sx(g)==2 && use_morph(g)>0) // male; all assumed to be mature { MaleSPB(y,p,GP4(g)) += Save_Wt_Age(t,g)*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); // accumulates SSB by area and by growthpattern } } if(Hermaphro_maleSPB==1) // add MaleSPB to female SSB { SSB_current+=sum(MaleSPB(y)); SSB_yr(y)=SSB_current; } } // SS_Label_Info_24.3.4.1 #Get recruitment from this spawning biomass // SPAWN-RECR: calc recruitment in time series; need to make this area-specific if(SR_parm_timevary(1)==0) // R0 is not time-varying {R0_use=Recr_virgin; SSB_use=SSB_virgin;} else { R0_use=mfexp(SR_parm_work(1)); equ_Recr=R0_use; Fishon=0; eq_yr=y; bio_yr=y; Do_Equil_Calc(R0_use); // call function to do equilibrium calculation if(fishery_on_off==1) {Fishon=1;} else {Fishon=0;} SSB_use=SSB_equil; } Recruits=Spawn_Recr(SSB_use,R0_use,SSB_current); // calls to function Spawn_Recr apply_recdev(Recruits, R0_use); // apply recruitment deviation // distribute Recruitment among settlements, areas and morphs // note that because SSB_current is calculated at end of season to take into account Z, // this means that recruitment cannot occur until a subsequent season for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { settle=settle_g(g); for (p=1;p<=pop;p++) { if(y==styr) natage(t+Settle_seas_offset(settle),p,g,Settle_age(settle))=0.0; // to negate the additive code natage(t+Settle_seas_offset(settle),p,g,Settle_age(settle)) += Recruits*recr_dist(GP(g),settle,p)*platoon_distr(GP2(g))* mfexp(natM(s,GP3(g),Settle_age(settle))*Settle_timing_seas(settle)); Recr(p,t+Settle_seas_offset(settle))+=Recruits*recr_dist(GP(g),settle,p)*platoon_distr(GP2(g)); if(docheckup==1) echoinput<0) { settle=settle_g(g); { j=Settle_age(settle); if(s0) { if(Hermaphro_Option==1) { for (a=1;a0) // movement between areas in time series { natage_temp=natage(t+1); natage(t+1)=0.0; for (p=1;p<=pop;p++) // source population for (p2=1;p2<=pop;p2++) // destination population for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { k=move_pattern(s,GP4(g),p,p2); if(k>0) natage(t+1,p2,g) += elem_prod(natage_temp(p,g),migrrate(y,k));} } // end migration // SS_Label_Info_24.10 #save selectivity*Hrate for tag-recapture if(Do_TG>0 && t>=TG_timestart) { for (g=1;g<=gmorph;g++) for (f=1;f<=Nfleet;f++) { Sel_for_tag(t,g,f) = sel_al_4(s,g,f)*Hrate(f,t); } } // SS_Label_Info_24.11 #calc annual F quantities double countN; dvariable tempbase; dvariable tempM; dvariable tempZ; if( fishery_on_off==1 && ((save_for_report>0) || ((sd_phase() || mceval_phase()) && (initial_params::mc_phase==0)) || (F_ballpark_yr>=styr))) { for (f=1;f<=Nfleet;f++) if(fleet_type(f)<=2) { for (k=1;k<=6;k++) { annual_catch(y,k)+=catch_fleet(t,f,k); if(k<=3) Smry_Table(y,k+3)=annual_catch(y,k); } if(F_Method==1) { annual_F(y,1)+=Hrate(f,t); } else { annual_F(y,1)+=Hrate(f,t)*seasdur(s); } } if(s==nseas) { // sum across p and g the number of survivors to end of the year // also project from the initial numbers and M, the number of survivors without F // then F = ln(n+1/n)(M+F) - ln(n+1/n)(M only), but ln(n) cancels out, so only need the ln of the ratio of the two ending quantities // calculated average F weighted by numbers (option 5 is unweighted) if(F_reporting!=5) { tempbase=0.0; tempM=0.0; tempZ=0.0; annual_F(y,2)=0.; annual_F(y,3)=0.; // accumulate numbers across ages, morphs, sexes, areas for (a=F_reporting_ages(1);a<=F_reporting_ages(2);a++) // should not let a go higher than nages-2 because of accumulator { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (p=1;p<=pop;p++) { tempbase+=natage(t-nseas+1,p,g,a); // sum of numbers at beginning of year tempZ+=natage(t+1,p,g,a+1); // numbers at beginning of next year temp3=natage(t-nseas+1,p,g,a); // numbers at begin of year for (j=1;j<=nseas;j++) {temp3*=mfexp(-seasdur(j)*natM(j,GP3(g),a));} tempM+=temp3; // survivors if just M operating } } } annual_F(y,2) = log(tempM)-log(tempZ); // F=Z-M annual_F(y,3) = log(tempbase)-log(tempM); // M } // end if F_reporting!=5 else { // F_reporting==5 (ICES-style arithmetic mean across ages) // like option 4 above, but F is calculated 1 age at a time to get a // unweighted average across ages within each year countN=0.0; // used for count of Fs included in average for (a=F_reporting_ages(1);a<=F_reporting_ages(2);a++) // should not let a go higher than nages-2 because of accumulator { tempbase=0.0; tempM=0.0; tempZ=0.0; // accumulate numbers across all morphs, sexes, and areas for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (p=1;p<=pop;p++) { tempbase+=natage(t-nseas+1,p,g,a); // sum of numbers at beginning of year tempZ+=natage(t+1,p,g,a+1); // numbers at beginning of next year temp3=natage(t-nseas+1,p,g,a); // numbers at begin of year for (j=1;j<=nseas;j++) {temp3*=mfexp(-seasdur(j)*natM(j,GP3(g),a));} tempM+=temp3; // survivors if just M operating } } // calc F and M for this age and add to the total countN += 1; // increment count of values included in average annual_F(y,2) += log(tempM)-log(tempZ); // F=Z-M annual_F(y,3) += log(tempbase)-log(tempM); // M // if(save_for_report==1) warning<0) // save selected std quantity { if(F_reporting<=1) { F_std(STD_Yr_Reverse_F(y))=annual_catch(y,2)/Smry_Table(y,2); // dead catch biomass/summary biomass // does not exactly correspond to F, which is for total catch } else if(F_reporting==2) { F_std(STD_Yr_Reverse_F(y))=annual_catch(y,5)/Smry_Table(y,3); // dead catch numbers/summary numbers } else if(F_reporting==3) { F_std(STD_Yr_Reverse_F(y))=annual_F(y,1); } else if(F_reporting==4 || F_reporting==5) { F_std(STD_Yr_Reverse_F(y))=annual_F(y,2); } } } // end s==nseas } if(save_for_report==2) { for(g=1;g<=gmorph;g++) { gg=sx(g); if(ishadow(GP2(g))==0) { if(s==spawn_seas) bodywtout<0) || ((sd_phase() || mceval_phase()) && (initial_params::mc_phase==0)) ) { eq_yr=y; equ_Recr=Recr_virgin; bio_yr=y; Fishon=0; Do_Equil_Calc(equ_Recr); // call function to do equilibrium calculation with current year's biology Smry_Table(y,11)=SSB_equil; Smry_Table(y,13)=GenTime; Fishon=1; Do_Equil_Calc(equ_Recr); // call function to do equilibrium calculation with current year's biology and F if(STD_Yr_Reverse_Ofish(y)>0) { SPR_std(STD_Yr_Reverse_Ofish(y))=SSB_equil/Smry_Table(y,11); } Smry_Table(y,9)=(totbio); Smry_Table(y,10)=(smrybio); Smry_Table(y,12)=(SSB_equil); Smry_Table(y,14)=(YPR_dead); for (g=1;g<=gmorph;g++) { Smry_Table(y,20+g)=(cumF(g)); Smry_Table(y,20+gmorph+g)=(maxF(g)); } } } //close year loop // Save end year quantities to refresh for forecast after benchmark is called recr_dist_endyr=recr_dist; natM_endyr=natM; surv1_endyr=surv1; surv2_endyr=surv2; if(Do_TG>0) Tag_Recapture(); } // end time_series // SS_Label_Info_24.16 # end of time series function //******************************************************************** /* SS_Label_FUNCTION 30 Do_Equil_Calc */ FUNCTION void Do_Equil_Calc(const prevariable& equ_Recr) { int t_base; int bio_t_base; int bio_t; int t; int s; dvariable N_mid; dvariable N_beg; dvariable tempM, countN, tempZ, tempbase, temp3; dvariable Fishery_Survival; dvariable crashtemp; dvariable crashtemp1; dvar_matrix Survivors(1,pop,1,gmorph); dvar_matrix Survivors2(1,pop,1,gmorph); t_base=styr+(eq_yr-styr)*nseas-1; bio_t_base=styr+(bio_yr-styr)*nseas-1; GenTime.initialize(); Equ_penalty.initialize(); cumF.initialize(); maxF.initialize(); SSB_equil_pop_gp.initialize(); if(Hermaphro_Option!=0) MaleSSB_equil_pop_gp.initialize(); equ_mat_bio=0.0; equ_mat_num=0.0; equ_catch_fleet.initialize(); equ_numbers.initialize(); equ_catage.initialize(); equ_F_std=0.0; equ_M_std=0.0; totbio=0.0; smrybio=0.0; smryage=0.0; smrynum=0.0; // first seed the recruits; seems redundant for (g=1;g<=gmorph;g++) { if(use_morph(g)>0) { settle=settle_g(g); for (p=1;p<=pop;p++) { equ_numbers(Settle_seas(settle),p,g,Settle_age(settle)) = equ_Recr*recr_dist(GP(g),settle,p)*platoon_distr(GP2(g))* mfexp(natM(Settle_seas(settle),GP3(g),Settle_age(settle))*Settle_timing_seas(settle)); } } } for (a=0;a<=3*nages;a++) // go to 3x nages to approximate the infinite tail, then add the infinite tail { if(a<=nages) {a1=a;} else {a1=nages;} // because selex and biology max out at nages for (s=1;s<=nseas;s++) { t=t_base+s; bio_t=bio_t_base+s; for (g=1;g<=gmorph;g++) // need to loop g inside of a because of hermaphroditism if(use_morph(g)>0) { gg=sx(g); // gender settle=settle_g(g); for (p=1;p<=pop;p++) { if(s==Settle_seas(settle) && a==Settle_age(settle)) { equ_numbers(Settle_seas(settle),p,g,Settle_age(settle)) = equ_Recr*recr_dist(GP(g),settle,p)*platoon_distr(GP2(g))* mfexp(natM(Settle_seas(settle),GP3(g),Settle_age(settle))*Settle_timing_seas(settle)); } if(equ_numbers(s,p,g,a)>0.0) // will only be zero if not yet settled { N_beg=equ_numbers(s,p,g,a); if(F_Method==1) // Pope's approx { N_mid = N_beg*surv1(s,GP3(g),a1); // numbers at middle of season Nsurvive=N_mid; // initial number of fishery survivors if(Fishon==1) { // remove catch this round // check to see if total harves would exceed max_harvest_rate crashtemp=0.; harvest_rate=1.0; for (f=1;f<=Nfleet;f++) if (fleet_area(f)==p && Hrate(f,t)>0.) { crashtemp+=Hrate(f,t)*deadfish(s,g,f,a1); } if(crashtemp>0.20) // only worry about this if the exploit rate is at all high { join1=1./(1.+mfexp(40.0*(crashtemp-max_harvest_rate))); // steep joiner logistic curve at limit upselex=1./(1.+mfexp(Equ_F_joiner*(crashtemp-0.2))); // value of a shallow logistic curve that goes through the limit harvest_rate = join1 + (1.-join1)*upselex/(crashtemp); // ratio by which all Hrates will be adjusted } for (f=1;f<=Nfleet;f++) if (fleet_area(f)==p && Hrate(f,t)>0. && fleet_type(f)<=2) { temp=N_mid*Hrate(f,t)*harvest_rate; // numbers that would be caught if fully selected Nsurvive-=temp*deadfish(s,g,f,a1); // survival from fishery kill equ_catch_fleet(2,s,f) += temp*deadfish_B(s,g,f,a1); equ_catch_fleet(5,s,f) += temp*deadfish(s,g,f,a1); equ_catch_fleet(3,s,f) += temp*sel_al_2(s,g,f,a1); // retained fishery kill in biomass equ_catch_fleet(1,s,f)+=temp*sel_al_1(s,g,f,a1); // total fishery encounter in biomass equ_catch_fleet(4,s,f)+=temp*sel_al_3(s,g,f,a1); // total fishery encounter in numbers equ_catch_fleet(6,s,f)+=temp*sel_al_4(s,g,f,a1); // retained fishery kill in numbers equ_catage(s,f,g,a1)+=temp*deadfish(s,g,f,a1); // dead catch numbers per recruit (later accumulate N in a1) } } // end removing catch Nsurvive *= surv1(s,GP3(g),a1); // decay to end of season if(a<=a1) { equ_Z(s,p,g,a1) = -(log((Nsurvive+1.0e-13)/(N_beg+1.0e-10)))/seasdur(s); Fishery_Survival = equ_Z(s,p,g,a1)-natM(s,GP3(g),a1); if(a>=Smry_Age) { cumF(g)+=Fishery_Survival*seasdur(s); if(Fishery_Survival>maxF(g)) maxF(g)=Fishery_Survival; } } } // end Pope's approx else // Continuous F for method 2 or 3 { equ_Z(s,p,g,a1)=natM(s,GP3(g),a1); if(Fishon==1) { if(a1<=nages) { for (f=1;f<=Nfleet;f++) //loop over fishing fleets to get Z if (fleet_area(f)==p && Hrate(f,t)>0.0 && fleet_type(f)<=2) { equ_Z(s,p,g,a1)+=deadfish(s,g,f,a1)*Hrate(f,t); } if(save_for_report>0) { temp=equ_Z(s,p,g,a1)-natM(s,GP3(g),a1); if(a>=Smry_Age && a<=nages) cumF(g)+=temp*seasdur(s); if(temp>maxF(g)) maxF(g)=temp; } } } Nsurvive=N_beg*mfexp(-seasdur(s)*equ_Z(s,p,g,a1)); } // end F method Survivors(p,g)=Nsurvive; } else { equ_Z(s,p,g,a1)=natM(s,GP3(g),a1); } } // end pop } // end morph if(Hermaphro_Option!=0) { if(Hermaphro_seas==-1 || Hermaphro_seas==s) { for (p=1;p<=pop;p++) { k=gmorph/2; for (g=1;g<=k;g++) if(use_morph(g)>0) { if(Hermaphro_Option==1) { Survivors(p,g+k) += Survivors(p,g)*Hermaphro_val(GP4(g),a1); // increment males with females Survivors(p,g) *= (1.-Hermaphro_val(GP4(g),a1)); // decrement females } else if(Hermaphro_Option==-1) { Survivors(p,g) += Survivors(p,g+k)*Hermaphro_val(GP4(g+k),a1); // increment females with males Survivors(p,g+k) *= (1.-Hermaphro_val(GP4(g+k),a1)); // decrement males } } } } } if(do_migration>0) // movement between areas in equil calcs { Survivors2.initialize(); for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (p=1;p<=pop;p++) for (p2=1;p2<=pop;p2++) { k=move_pattern(s,GP4(g),p,p2); if(k>0) Survivors2(p2,g) += Survivors(p,g)*migrrate(bio_yr,k,a1); } // end destination pop } Survivors=Survivors2; } // end do migration for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (p=1;p<=pop;p++) { if(s==nseas) // into next age at season 1 { if(a==3*nages) { // end of the cohort } else if(a==(3*nages-1)) // do infinite tail; note that it uses Z from nseas as if it applies annually { if(F_Method==1) { equ_numbers(1,p,g,a+1) = Survivors(p,g)/(1.-exp(-equ_Z(nseas,p,g,nages))); } else { equ_numbers(1,p,g,a+1) = Survivors(p,g)/(1.-exp(-equ_Z(nseas,p,g,nages))); } } else { equ_numbers(1,p,g,a+1) = Survivors(p,g); } } else { equ_numbers(s+1,p,g,a) = Survivors(p,g); // same age, next season } } } } // end season } // end age // now calc contribution to catch and ssb for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { gg=sx(g); for (s=1;s<=nseas;s++) for (p=1;p<=pop;p++) { t=t_base+s; bio_t=bio_t_base+s; equ_numbers(s,p,g,nages)+=sum(equ_numbers(s,p,g)(nages+1,3*nages)); if(Fishon==1) { if(F_Method>=2) { Zrate2(p,g)=elem_div( (1.-mfexp(-seasdur(s)*equ_Z(s,p,g))), equ_Z(s,p,g)); if(s0.0) { equ_catch_fleet(2,s,f)+=Hrate(f,t)*elem_prod(equ_numbers(s,p,g)(0,nages),deadfish_B(s,g,f))*Zrate2(p,g); // dead catch bio equ_catch_fleet(5,s,f)+=Hrate(f,t)*elem_prod(equ_numbers(s,p,g)(0,nages),deadfish(s,g,f))*Zrate2(p,g); // deadfish catch numbers equ_catch_fleet(3,s,f)+=Hrate(f,t)*elem_prod(equ_numbers(s,p,g)(0,nages),sel_al_2(s,g,f))*Zrate2(p,g); // retained catch bio equ_catage(s,f,g)=elem_prod(elem_prod(equ_numbers(s,p,g)(0,nages),deadfish(s,g,f)) , Zrate2(p,g)); equ_catch_fleet(1,s,f)+=Hrate(f,t)*elem_prod(equ_numbers(s,p,g)(0,nages),sel_al_1(s,g,f))*Zrate2(p,g); // encountered catch bio equ_catch_fleet(4,s,f)+=Hrate(f,t)*elem_prod(equ_numbers(s,p,g)(0,nages),sel_al_3(s,g,f))*Zrate2(p,g); // encountered catch bio equ_catch_fleet(6,s,f)+=Hrate(f,t)*elem_prod(equ_numbers(s,p,g)(0,nages),sel_al_4(s,g,f))*Zrate2(p,g); // retained catch numbers } } else // F_method=1 { // already done in the age loop } } if(s==1) { totbio += equ_numbers(s,p,g)(0,nages)*Wt_Age_beg(s,g)(0,nages); smrybio += equ_numbers(s,p,g)(Smry_Age,nages)*Wt_Age_beg(s,g)(Smry_Age,nages); smrynum += sum(equ_numbers(s,p,g)(Smry_Age,nages)); smryage += equ_numbers(s,p,g)(Smry_Age,nages) * r_ages(Smry_Age,nages); } // SPAWN-RECR: calc generation time, etc. if(s==spawn_seas) { if(gg==1) // compute equilibrium spawning biomass for females { tempvec_a=elem_prod(equ_numbers(s,p,g)(0,nages),mfexp(-spawn_time_seas*equ_Z(s,p,g)(0,nages))); SSB_equil_pop_gp(p,GP4(g))+=fracfemale_mult*tempvec_a*fec(g); equ_mat_bio+=fracfemale_mult*elem_prod(equ_numbers(s,p,g)(0,nages),mfexp(-spawn_time_seas*equ_Z(s,p,g)(0,nages)))*make_mature_bio(GP4(g)); equ_mat_num+=fracfemale_mult*elem_prod(equ_numbers(s,p,g)(0,nages),mfexp(-spawn_time_seas*equ_Z(s,p,g)(0,nages)))*make_mature_numbers(GP4(g)); GenTime+=fracfemale_mult*tempvec_a*elem_prod(fec(g),r_ages); // SSB_equil_pop_gp(p,GP4(g))+=tempvec_a*fec(g); // equ_mat_bio+=elem_prod(equ_numbers(s,p,g)(0,nages),mfexp(-spawn_time_seas*equ_Z(s,p,g)(0,nages)))*make_mature_bio(GP4(g)); // equ_mat_num+=elem_prod(equ_numbers(s,p,g)(0,nages),mfexp(-spawn_time_seas*equ_Z(s,p,g)(0,nages)))*make_mature_numbers(GP4(g)); // GenTime+=tempvec_a*elem_prod(fec(g),r_ages); } else if(Hermaphro_Option!=0 && gg==2) { tempvec_a=elem_prod(equ_numbers(s,p,g)(0,nages),mfexp(-spawn_time_seas*equ_Z(s,p,g)(0,nages))); MaleSSB_equil_pop_gp(p,GP4(g))+=tempvec_a*Wt_Age_beg(s,g)(0,nages); } } } } YPR_dead = sum(equ_catch_fleet(2)); // dead yield per recruit if(N_bycatch==0) {YPR_opt=YPR_dead;} else { YPR_opt = 0.0; for(f=1;f<=Nfleet;f++) { if(YPR_mask(f)>0) { for (s=1;s<=nseas;s++) {YPR_opt+=equ_catch_fleet(2,s,f);} } } } YPR_N_dead = sum(equ_catch_fleet(5)); // dead numbers per recruit YPR_enc = sum(equ_catch_fleet(1)); // encountered yield per recruit YPR_ret = sum(equ_catch_fleet(3)); // retained yield per recruit if(Fishon==1) { if(F_reporting<=1) { equ_F_std=YPR_dead/smrybio; equ_M_std=natM(1,1,int(nages/2)); } else if(F_reporting==2) { equ_F_std=YPR_N_dead/smrynum; equ_M_std=natM(1,1,int(nages/2)); } else if(F_reporting==3) { equ_M_std=natM(1,1,int(nages/2)); if(F_Method==1) { for (s=1;s<=nseas;s++) { t=t_base+s; for (f=1;f<=Nfleet;f++) { equ_F_std+=Hrate(f,t); } } } else { for (s=1;s<=nseas;s++) { t=t_base+s; for (f=1;f<=Nfleet;f++) { equ_F_std+=Hrate(f,t)*seasdur(s); } } } } else if(F_reporting==4) { tempbase=0.0; tempM=0.0; tempZ=0.0; // accumulate numbers across ages, morphs, sexes, areas for (a=F_reporting_ages(1);a<=F_reporting_ages(2);a++) // should not let a go higher than nages-2 because of accumulator { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (p=1;p<=pop;p++) { tempbase+=equ_numbers(1,p,g,a); // sum of numbers at beginning of year tempZ+=equ_numbers(1,p,g,a+1); // numbers at beginning of next year temp3=equ_numbers(1,p,g,a); // numbers at begin of year for (int kkk=1;kkk<=nseas;kkk++) {temp3*=mfexp(-seasdur(kkk)*natM(kkk,GP3(g),a));} tempM+=temp3; // survivors if just M operating } } } equ_F_std = log(tempM)-log(tempZ); // F=Z-M equ_M_std = log(tempbase)-log(tempM); // M } else if(F_reporting==5) { // F_reporting==5 (ICES-style arithmetic mean across ages) // like option 4 above, but F is calculated 1 age at a time to get a // unweighted average across ages within each year // Need to put area loop within age loop countN=0.0; // used for count of Fs included in average for (a=F_reporting_ages(1);a<=F_reporting_ages(2);a++) // should not let a go higher than nages-2 because of accumulator { tempbase=0.0; tempM=0.0; tempZ=0.0; // accumulate numbers across all morphs, sexes, and areas for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (p=1;p<=pop;p++) { tempbase+=equ_numbers(1,p,g,a); // sum of numbers at beginning of year tempZ+=equ_numbers(1,p,g,a+1); // numbers at beginning of next year temp3=equ_numbers(1,p,g,a); // numbers at begin of year for (int kkk=1;kkk<=nseas;kkk++) {temp3*=mfexp(-seasdur(kkk)*natM(kkk,GP3(g),a));} tempM+=temp3; // survivors if just M operating } } // add F-at-age to tally countN += 1.; // increment count of values included in average equ_F_std += log(tempM)-log(tempZ); // F=Z-M equ_M_std += log(tempbase)-log(tempM); // M } equ_F_std /= countN; equ_M_std /= countN; } // end F_reporting==5 } SSB_equil=sum(SSB_equil_pop_gp); GenTime/=SSB_equil; smryage /= smrynum; cumF/=(r_ages(nages)-r_ages(Smry_Age)+1.); if(Hermaphro_maleSPB==1) SSB_equil+=sum(MaleSSB_equil_pop_gp); } // end equil calcs //******************************************************************** /* SS_Label_FUNCTION 43 Spawner-recruitment function */ // SPAWN-RECR: function: to calc R from S FUNCTION dvariable Spawn_Recr(const prevariable& SSB_virgin_adj, const prevariable& Recr_virgin_adj, const prevariable& SSB_current) { RETURN_ARRAYS_INCREMENT(); dvariable NewRecruits; dvariable SSB_BH1; dvariable recdev_offset; dvariable steepness; dvariable Shepherd_c; dvariable Shepherd_c2; dvariable Hupper; dvariable steep2; dvariable SSB_curr_adj; dvariable join; dvariable SRZ_0; dvariable srz_min; dvariable SRZ_surv; // SS_Label_43.1 add 0.1 to input spawning biomass value to make calculation more rebust SSB_curr_adj = SSB_current + 0.100; // robust regime_change=SR_parm_work(N_SRparm2-1); // this is a persistent deviation off the S/R curve // SS_Label_43.3 calculate expected recruitment from the input spawning biomass and the SR curve // functions below use Recr_virgin_adj,SSB_virgin_adj which could have been adjusted adjusted above from R0,SSB_virgin switch(SR_fxn) { case 1: // previous placement for B-H constrained { N_warn++; cout<<"Critical error: see warning"<SSB_virgin_adj) {SSB_BH1=SSB_virgin_adj;} else {SSB_BH1=SSB_curr_adj;} NewRecruits=(4.*steepness*Recr_virgin_adj*SSB_BH1) / (SSB_virgin_adj*(1.-steepness)+(5.*steepness-1.)*SSB_BH1); break; } // SS_Label_43.3.7 survival based case 7: // survival based, so constrained such that recruits cannot exceed fecundity { // PPR_0=SSB_virgin_adj/Recr_virgin_adj; // pups per recruit at virgin // Surv_0=1./PPR_0; // recruits per pup at virgin // Pups_0=SSB_virgin_adj; // total population fecundity is the number of pups produced // Sfrac=SR_parm(2); SRZ_0=log(1.0/(SSB_virgin_adj/Recr_virgin_adj)); srz_min=SRZ_0*(1.0-steepness); SRZ_surv=mfexp((1.-pow((SSB_curr_adj/SSB_virgin_adj),SR_parm_work(3)) )*(srz_min-SRZ_0)+SRZ_0); // survival NewRecruits=SSB_curr_adj*SRZ_surv; exp_rec(y,1)=NewRecruits; // expected arithmetic mean recruitment // SS_Label_43.3.7.1 Do variation in recruitment by adjusting survival // if(SR_env_target==1) SRZ_surv*=mfexp(SR_parm(N_SRparm2-2)* env_data(y,SR_env_link)); // environ effect on survival if(recdev_cycle>0) { gg=y - (styr+(int((y-styr)/recdev_cycle))*recdev_cycle)+1; SRZ_surv*=mfexp(recdev_cycle_parm(gg)); } exp_rec(y,2)=SSB_curr_adj*SRZ_surv; SRZ_surv*=mfexp(-biasadj(y)*half_sigmaRsq); // bias adjustment exp_rec(y,3)=SSB_curr_adj*SRZ_surv; if(y <=recdev_end) { if(recdev_doit(y)>0) SRZ_surv*=mfexp(recdev(y)); // recruitment deviation } else if(Do_Forecast>0) { SRZ_surv *= mfexp(Fcast_recruitments(y)); } join=1./(1.+mfexp(100*(SRZ_surv-1.))); SRZ_surv=SRZ_surv*join + (1.-join)*1.0; NewRecruits=SSB_curr_adj*SRZ_surv; exp_rec(y,4) = NewRecruits; break; } // SS_Label_43.3.8 Shepherd case 8: // Shepherd 3-parameter SRR. per Punt & Cope 2017 { Shepherd_c=SR_parm_work(3); Shepherd_c2=pow(0.2,SR_parm_work(3)); Hupper=1.0/(5.0*Shepherd_c2); steepness=0.2+(SR_parm_work(2)-0.2)/(0.8)*(Hupper-0.2); temp=(SSB_curr_adj)/(SSB_virgin_adj); NewRecruits = (5.*steepness*Recr_virgin_adj*(1.-Shepherd_c2)*temp) / (1.0 - 5.0*steepness*Shepherd_c2 + (5.*steepness-1.)*pow(temp,Shepherd_c)); break; } // SS_Label_43.3.8 Ricker-power case 9: // Ricker power 3-parameter SRR. per Punt & Cope 2017 { steepness = SR_parm_work(2); dvariable RkrPower=SR_parm_work(3); temp=SSB_curr_adj/SSB_virgin_adj; temp2 = posfun(1.0-temp,0.0000001,temp3); temp=1.0-temp2; // Rick's new line to stabilize recruitment at R0 if B>B0 dvariable RkrTop = log(5.0*steepness) * pow(temp2,RkrPower) / pow(0.8,RkrPower); NewRecruits = Recr_virgin_adj * temp * mfexp(RkrTop); break; } } RETURN_ARRAYS_DECREMENT(); return NewRecruits; } // end spawner_recruitment FUNCTION void apply_recdev(prevariable& NewRecruits, const prevariable& Recr_virgin_adj) { RETURN_ARRAYS_INCREMENT(); // SS_Label_43.4 For non-survival based SRR, get recruitment deviations by adjusting recruitment itself exp_rec(y,1)=NewRecruits; // expected arithmetic mean recruitment // exp_rec(y,2) is with regime shift or other env effect; // exp_rec(y,3) is with bias adjustment // exp_rec(y,4) is with dev regime_change=SR_parm_work(N_SRparm2-1); // this is a persistent deviation off the S/R curve if(recdev_cycle>0) { gg=y - (styr+(int((y-styr)/recdev_cycle))*recdev_cycle)+1; NewRecruits*=mfexp(recdev_cycle_parm(gg)); } NewRecruits*=mfexp(regime_change); // adjust for regime which includes env and block effects; and forecast adjustments exp_rec(y,2)=NewRecruits; // adjusted for env and special forecast conditions if(SR_fxn!=4) NewRecruits*=mfexp(-biasadj(y)*half_sigmaRsq); // bias adjustment exp_rec(y,3)=NewRecruits; if(y<=recdev_end) { if(recdev_doit(y)>0) { if(do_recdev>=3) { NewRecruits=Recr_virgin_adj*mfexp(recdev(y)); // recruitment deviation } else if(SR_fxn!=7) { NewRecruits*=mfexp(recdev(y)); // recruitment deviation } } } else if(Do_Forecast>0) { switch (int(Fcast_Loop_Control(3))) { case 0: { NewRecruits=exp_rec(y,2); if(SR_fxn!=4) NewRecruits*=mfexp(-biasadj(y)*half_sigmaRsq); // bias adjustment exp_rec(y,3)=NewRecruits; break; } case 1: { exp_rec(y,2)*=Fcast_Loop_Control(4); // apply fcast multiplier to the regime-adjusted expected value NewRecruits=exp_rec(y,2); if(SR_fxn!=4) NewRecruits*=mfexp(-biasadj(y)*half_sigmaRsq); // bias adjustment exp_rec(y,3)=NewRecruits; break; } case 2: // use multiplier of R0 { exp_rec(y,2)=Recr_virgin_adj*Fcast_Loop_Control(4); // apply fcast multiplier to the virgin recruitment NewRecruits=exp_rec(y,2); if(SR_fxn!=4) NewRecruits*=mfexp(-biasadj(y)*half_sigmaRsq); // bias adjustment exp_rec(y,3)=NewRecruits; break; } case 3: // use recent mean { // values going into the mean have already been bias adjusted and had dev applied, so take straight mean NewRecruits=0.0; for(j=Fcast_Rec_yr1; j<=Fcast_Rec_yr2; j++) { NewRecruits+=exp_rec(j,4); } NewRecruits/=(Fcast_Rec_yr2-Fcast_Rec_yr1+1); exp_rec(y,2)=NewRecruits; exp_rec(y,3)=NewRecruits; // store in the bias-adjusted field break; } } NewRecruits*=mfexp(Fcast_recruitments(y)); // recruitment deviation } exp_rec(y,4)=NewRecruits; RETURN_ARRAYS_DECREMENT(); } // end spawner_recruitment //******************************************************************** /* SS_Label_FUNCTION 44 Equil_Spawn_Recr_Fxn */ // SPAWN-RECR: function Equil_Spawn_Recr_Fxn FUNCTION dvar_vector Equil_Spawn_Recr_Fxn(const prevariable &SRparm2, const prevariable &SRparm3, const prevariable& SSB_virgin, const prevariable& Recr_virgin, const prevariable& SPR_temp) { RETURN_ARRAYS_INCREMENT(); dvar_vector Equil_Spawn_Recr_Calc(1,2); // values to return 1 is B_equil, 2 is R_equil dvariable B_equil; dvariable R_equil; dvariable temp; dvariable steepness; dvariable join; dvariable Shepherd_c; dvariable Shepherd_c2; dvariable SRZ_0; dvariable srz_min; dvariable SRZ_surv; steepness=SRparm2; // common usage but some different // SS_Label_44.1 calc equilibrium SpawnBio and Recruitment from input SPR_temp, which is spawning biomass per recruit at some given F level switch(SR_fxn) { case 1: // previous placement for B-H constrained { N_warn++; cout<<"Critical error: see warning"<0) { if(Fcast_Specify_Selex==0) { // SS_Label_Info_7.5.1 #Calc average selectivity to use in forecast; store in endyr+1 temp=float(Fcast_Sel_yr2-Fcast_Sel_yr1+1.); for (gg=1;gg<=gender;gg++) for (f=1;f<=Nfleet;f++) { tempvec_l.initialize(); for (y=Fcast_Sel_yr1;y<=Fcast_Sel_yr2;y++) {tempvec_l+=sel_l(y,f,gg);} sel_l(endyr+1,f,gg)=tempvec_l/temp; sel_l(YrMax,f,gg)=tempvec_l/temp; tempvec_l.initialize(); for (y=Fcast_Sel_yr1;y<=Fcast_Sel_yr2;y++) {tempvec_l+=sel_l_r(y,f,gg);} sel_l_r(endyr+1,f,gg)=tempvec_l/temp; sel_l_r(YrMax,f,gg)=tempvec_l/temp; tempvec_l.initialize(); for (y=Fcast_Sel_yr1;y<=Fcast_Sel_yr2;y++) {tempvec_l+=discmort2(y,f,gg);} discmort2(endyr+1,f,gg)=tempvec_l/temp; discmort2(YrMax,f,gg)=tempvec_l/temp; tempvec_a.initialize(); for (y=Fcast_Sel_yr1;y<=Fcast_Sel_yr2;y++) {tempvec_a+=sel_a(y,f,gg);} sel_a(endyr+1,f,gg)=tempvec_a/temp; sel_a(YrMax,f,gg)=tempvec_a/temp; tempvec_a.initialize(); for (y=Fcast_Sel_yr1;y<=Fcast_Sel_yr2;y++) {tempvec_a+=discmort2_a(y,f,gg);} discmort2_a(endyr+1,f,gg)=tempvec_a/temp; discmort2_a(YrMax,f,gg)=tempvec_a/temp; } } t=styr+(endyr+1-styr)*nseas+spawn_seas-1; for (g=1;g<=gmorph;g++) if(use_morph(g)>0 && sx(g)==1) { fec(g)=save_sel_fec(t,g,0); } // SS_Label_Info_7.5.2 #Set-up relative F among fleets and seasons for forecast if(Fcast_RelF_Basis==1) // set allocation according to range of years { temp=0.0; Fcast_RelF_Use.initialize(); for (y=Fcast_RelF_yr1;y<=Fcast_RelF_yr2;y++) for (f=1;f<=Nfleet;f++) for (s=1;s<=nseas;s++) { if(fleet_type(f)==1 || (fleet_type(f)==2 && bycatch_setup(f,3)==1)) {t=styr+(y-styr)*nseas+s-1; Fcast_RelF_Use(s,f)+=Hrate(f,t);} } temp=sum(Fcast_RelF_Use); if(temp==0.0) { Fcast_RelF_Use(1,1)=1.0; Fcurr_Fmult=0.0; } else { Fcast_RelF_Use/=temp; Fcurr_Fmult=temp/float(Fcast_RelF_yr2-Fcast_RelF_yr1+1); } } else // Fcast_RelF_Basis==2 so set to values that were read { temp=0.0; for (f=1;f<=Nfleet;f++) for (s=1;s<=nseas;s++) { temp+=Fcast_RelF_Input(s,f); Fcast_RelF_Use(s,f) = Fcast_RelF_Input(s,f); } // Fcast_RelF_Use=Fcast_RelF_Input/temp; Fcast_RelF_Use /= temp; Fcurr_Fmult=temp; } if(N_bycatch>0) { for (f=1;f<=Nfleet;f++) for (s=1;s<=nseas;s++) { if(Fcast_RelF_Use(s,f)==0. && bycatch_setup(f,3)>0) {Fcast_RelF_Use(s,f)=1.0e-6; warning<<"setting positive forecast relF for bycatch fleet: "<0) { // if(save_for_report>0 || last_phase() || current_phase()==max_phase || ((sd_phase() || mceval_phase()) && (initial_params::mc_phase==0))) { // calc average body size to use in equil; store in styr-3 temp=float(Bmark_Yr(2)-Bmark_Yr(1)+1.); // get denominator for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (s=0;s<=nseas-1;s++) { tempvec_a.initialize(); for (t=Bmark_t(1);t<=Bmark_t(2);t+=nseas) {tempvec_a+=Ave_Size(t+s,1,g);} Ave_Size(styr-3*nseas+s,1,g)=tempvec_a/temp; tempvec_a.initialize(); for (t=Bmark_t(1);t<=Bmark_t(2);t+=nseas) {tempvec_a+=Ave_Size(t+s,mid_subseas,g);} Ave_Size(styr-3*nseas+s,mid_subseas,g)=tempvec_a/temp; tempvec_a.initialize(); for (t=Bmark_t(1);t<=Bmark_t(2);t+=nseas) {tempvec_a+=Save_Wt_Age(t+s,g);} Save_Wt_Age(styr-3*nseas+s,g)=tempvec_a/temp; for (f=0;f<=Nfleet;f++) // goes to Nfleet because this contains fecundity as well as asel2(f) { tempvec_a.initialize(); for (t=Bmark_t(1);t<=Bmark_t(2);t+=nseas) { tempvec_a+=save_sel_fec(t+s,g,f); } save_sel_fec(styr-3*nseas+s,g,f)=tempvec_a/temp; } // natmort_unf is accumulated while doing the time_series // then it's mean is calculated in Get_Benchmarks and assigned back to natmort } } if(pop>0) { if(do_migration>0) { temp=float(Bmark_Yr(8)-Bmark_Yr(7)+1.); // get denominator for (j=1;j<=do_migr2;j++) { tempvec_a.initialize(); for (y=Bmark_Yr(7);y<=Bmark_Yr(8);y++){tempvec_a+=migrrate(y,j);} migrrate(styr-3,j)=tempvec_a/temp; } } // recr_dist_unf is accumulated while doing the time_series // then its mean is calculated in Get_Benchmarks and assigned to recr_dist // the SR_parm_bench is calculated from Bmark_yrs 9-10 in benchmark code using values stored in SR_parm_byyr // same for natmort and survival (surv1 and surv2) } // calc average selectivity to use in equil; store in styr-1 temp=float(Bmark_Yr(4)-Bmark_Yr(3)+1.); // get denominator for (gg=1;gg<=gender;gg++) for (f=1;f<=Nfleet;f++) { tempvec_l.initialize(); for (y=Bmark_Yr(3);y<=Bmark_Yr(4);y++) {tempvec_l+=sel_l(y,f,gg);} sel_l(styr-3,f,gg)=tempvec_l/temp; tempvec_l.initialize(); for (y=Bmark_Yr(3);y<=Bmark_Yr(4);y++) {tempvec_l+=sel_l_r(y,f,gg);} sel_l_r(styr-3,f,gg)=tempvec_l/temp; tempvec_l.initialize(); for (y=Bmark_Yr(3);y<=Bmark_Yr(4);y++) {tempvec_l+=discmort2(y,f,gg);} discmort2(styr-3,f,gg)=tempvec_l/temp; tempvec_a.initialize(); for (y=Bmark_Yr(3);y<=Bmark_Yr(4);y++) {tempvec_a+=sel_a(y,f,gg);} sel_a(styr-3,f,gg)=tempvec_a/temp; tempvec_a.initialize(); for (y=Bmark_Yr(3);y<=Bmark_Yr(4);y++) {tempvec_a+=discmort2_a(y,f,gg);} discmort2_a(styr-3,f,gg)=tempvec_a/temp; } // set-up relative F among fleets and seasons if(Bmark_RelF_Basis==1) // set allocation according to range of years { temp=0.0; Bmark_RelF_Use.initialize(); for (y=Bmark_Yr(5);y<=Bmark_Yr(6);y++) for (f=1;f<=Nfleet;f++) if(fleet_type(f)==1 || (fleet_type(f)==2 && bycatch_setup(f,3)==1)) for (s=1;s<=nseas;s++) { t=styr+(y-styr)*nseas+s-1; Bmark_RelF_Use(s,f)+=Hrate(f,t); } temp=sum(Bmark_RelF_Use); if(temp==0.0) { Bmark_RelF_Use(1,1)=1.0; } else { Bmark_RelF_Use/=temp; } } else // Bmark_RelF_Basis==2 so set same as forecast { Bmark_RelF_Use=Fcast_RelF_Use; } } // end being in a phase for these calcs } // end getting quantities for benchmarks } FUNCTION void Get_Benchmarks(const int show_MSY) { //******************************************************************** /* SS_Label_FUNCTION 34 Get_Benchmarks(Find Fspr, MSY) */ int jj; int Nloops; int bio_t; int bio_t_base; dvariable last_F1; dvariable Closer; dvariable Vbio1_unfished; dvariable SPR_unfished; dvariable Vbio_MSY; dvariable Vbio1_MSY; dvariable junk; dvariable Nmid_c; dvariable df; dvariable BestYield; dvariable BestF1; dvariable FF; dvariable dyld; dvariable dyldp; dvariable Fmax; dvariable bestF1; dvariable bestF2; dvariable F01_origin; dvariable F01_second; dvariable F01_actual; dvar_vector F1(1,3); dvar_vector yld1(1,3); dvar_vector Fmult_save(1,3); if(show_MSY==1) { report5<0) { ALK_idx=(s-1)*N_subseas+mid_subseas; // for midseason Make_FishSelex(); } } maxpossF.initialize(); for(g=1;g<=gmorph;g++) for(s=1;s<=nseas;s++) { tempvec_a.initialize(); for(f=1;f<=Nfleet;f++) {tempvec_a+=Bmark_RelF_Use(s,f)*deadfish(s,g,f);} temp=max(tempvec_a); if(temp>maxpossF) maxpossF=temp; } maxpossF =max_harvest_rate/maxpossF; // applies to any F_method // SPAWN-RECR: notes regarding virgin vs. benchmark biology usage in spawn-recr // the spawner-recruitment function has Bzero based on virgin biology, not benchmark biology // need to deal with possibility that with time-varying biology, the SSB_virgin calculated from virgin conditions will differ from the SSB_virgin used for benchmark conditions recr_dist=recr_dist_unf/(Bmark_Yr(8)-Bmark_Yr(7)+1); natM=natM_unf/(Bmark_Yr(2)-Bmark_Yr(1)+1); surv1=surv1_unf/(Bmark_Yr(2)-Bmark_Yr(1)+1); surv2=surv2_unf/(Bmark_Yr(2)-Bmark_Yr(1)+1); for(j=1;j<=N_SRparm2;j++) { if(SR_parm_timevary(j)==0) {SR_parm_work(j)=SR_parm(j);} else { temp=0.; for(int y=Bmark_Yr(9);y<=Bmark_Yr(10);y++) {temp+=SR_parm_byyr(y,j);} SR_parm_work(j)=temp/(Bmark_Yr(10)-Bmark_Yr(9)+1.); } } Fishon=0; Recr_unf=mfexp(SR_parm_work(1)); Do_Equil_Calc(Recr_unf); SSB_unf=SSB_equil; SR_parm_work(N_SRparm2+1)=SSB_unf; if(show_MSY==1) report5<<"SR_parm for benchmark: "<=1;ii--) { Fmult=40.00/(1.0+mfexp(-F1(ii))); for (f=1;f<=Nfleet;f++) { if(fleet_type(f)==1 || (fleet_type(f)==2 && bycatch_setup(f,3)==1)) { for (s=1;s<=nseas;s++) {t=bio_t_base+s; Hrate(f,t)=Fmult*Bmark_RelF_Use(s,f);} } // else Hrate for bycatch fleets set above } Fishon=1; Do_Equil_Calc(equ_Recr); yld1(ii)=100.*SSB_equil/SPR_unfished; // spawning potential ratio } SPR_actual=yld1(1); // spawning potential ratio if(jj==3) { Closer*=0.5; dyld=(yld1(2) - yld1(3))/df; // First derivative (to find the root of this) if(dyld!=0.) {last_F1=F1(1); F1(1) += (SPR_target100-SPR_actual)/(dyld+0.001); F1(1)=(1.-Closer)*F1(1)+Closer*last_F1; } // averages with last good value to keep from changing too fast else {F1(1)=(F1(1)+last_F1)*0.5;} // go halfway back towards previous value } else { // if((last_calc-SPR_target)*(SPR_actual-SPR_target)<0.0) {Fchange*=-0.5;} // changed sign, so reverse search direction temp=(last_calc-SPR_target100)*(SPR_actual-SPR_target100)/(sfabs(last_calc-SPR_target100)*sfabs(SPR_actual-SPR_target100)); // values of -1 or 1 temp1=temp-1.; // values of -2 or 0 Fchange*=exp(temp1/4.)*temp; F1(1)+=Fchange; last_calc=SPR_actual; } if(show_MSY==1) { report5<=0.1) {N_warn++; warning<<" warning: poor convergence in Fspr search "<=1.01) {N_warn++; warning<<" warning: Fmult = "<0 && mceval_counter==0 && show_MSY==1) cout<<" got Fspr "<=1;ii--) { for (f=1;f<=Nfleet;f++) { if(fleet_type(f)==1 || (fleet_type(f)==2 && bycatch_setup(f,3)==1)) { for (s=1;s<=nseas;s++) {t=bio_t_base+s; Hrate(f,t)=F1(ii)*Bmark_RelF_Use(s,f);} } // else Hrate for bycatch fleets set above } Do_Equil_Calc(equ_Recr); yld1(ii)=YPR_opt; } F01_actual=(yld1(2) - yld1(3))/(F1(2)-F1(3)); F01_second=((yld1(2)-yld1(1))/(F1(2)-F1(1))-(yld1(1)-yld1(3))/(F1(1)-F1(3)))/(F1(2)-F1(3)); if(show_MSY==1) { report5<=0.001) {N_warn++; warning<<" warning: poor convergence in F0.1 search target= "<0 && mceval_counter==0 && show_MSY==1) cout<<" got_F0.1: "<=1;ii--) { if(j==0) {Fmult=0.0;} else {Fmult=40.00/(1.00+mfexp(-F1(ii)));} for (f=1;f<=Nfleet;f++) { if(fleet_type(f)==1 || (fleet_type(f)==2 && bycatch_setup(f,3)==1)) { for (s=1;s<=nseas;s++) {t=bio_t_base+s; Hrate(f,t)=Fmult*Bmark_RelF_Use(s,f);} } // else Hrate for bycatch fleets set above } Do_Equil_Calc(equ_Recr); SPR_Btgt = SSB_equil/SPR_unfished; // SPAWN-RECR: calc equil spawn-recr for Btarget calcs; need to make area-specific SPR_temp=SSB_equil; Equ_SpawnRecr_Result = Equil_Spawn_Recr_Fxn(SR_parm_work(2), SR_parm_work(3), SSB_unf, Recr_unf, SPR_temp); // returns 2 element vector containing equilibrium biomass and recruitment at this SPR yld1(ii)=Equ_SpawnRecr_Result(1); } Btgt=Equ_SpawnRecr_Result(1); // so uses benchmark average years if(jj==3) { Closer *=0.5; dyld=(yld1(2) - yld1(3))/df; // First derivative if(dyld!=0.) {last_F1=F1(1); F1(1) -= (Btgt-Btgttgt)/(dyld+0.001); F1(1)=(1.-Closer)*F1(1)+(Closer)*last_F1; } // weighted average with last good value to keep from changing too fast else {F1(1)=(F1(1)+last_F1)*0.5;} // go halfway back towards previous value } else { temp=(last_calc-Btgttgt)*(Btgt-Btgttgt)/(sfabs(last_calc-Btgttgt)*sfabs(Btgt-Btgttgt)); // values of -1 or 1 temp1=temp-1.; // values of -2 or 0 Fchange*=exp(temp1/4.)*temp; F1(1)+=Fchange; last_calc=Btgt; } if(show_MSY==1) { report5<=0.001) {N_warn++; warning<<" warning: poor convergence in Btarget search "<0 && mceval_counter==0 && show_MSY==1) cout<<" got_Btgt "<=2) {Fmax=3.00*Btgt_Fmult;} switch(Do_MSY) { case 1: // set Fmsy=Fspr {Fmult=SPR_Fmult; if(F_Method==1) {Fmax=SPR_Fmult*1.1;} F1(1)=-log(Fmax/SPR_Fmult-1.); last_calc=0.; Fchange=1.0; Closer=1.; Nloops=0; break;} case 2: // calc Fmsy {last_calc=0.; Fchange=0.51; Closer=1.0; if(SR_fxn==5) {Nloops=40;} else {Nloops=19;} if(F_Method==1) {Fmax=(Btgt_Fmult+SPR_Fmult)*0.5*SR_parm_work(2)/0.05;} // previously /0.18 F1(1)=-log(Fmax/Btgt_Fmult-1.); break;} case 3: // set Fmsy=Fbtgt {Fmult=Btgt_Fmult; if(F_Method==1) {Fmax=Btgt_Fmult*1.1;} F1(1)=-log(Fmax/Btgt_Fmult-1.); last_calc=0.; Fchange=1.0; Closer=1.0; Nloops=0; break;} case 4: // set fmult for Fmsy to 1 {Fmult=1; Fmax=1.1; F1(1)=-log(Fmax/Fmult-1.); last_calc=0.; Fchange=1.0; Closer=1.0; Nloops=0; break;} } if(show_MSY==1) { report5<<"#"<=1;ii--) { Fmult=Fmax/(1.00+mfexp(-F1(ii))); for (f=1;f<=Nfleet;f++) { if(fleet_type(f)==1 || (fleet_type(f)==2 && bycatch_setup(f,3)==1)) { for (s=1;s<=nseas;s++) {t=bio_t_base+s; Hrate(f,t)=Fmult*Bmark_RelF_Use(s,f);} } // else Hrate for bycatch fleets set above } Do_Equil_Calc(equ_Recr); // SPAWN-RECR: calc spawn-recr for MSY calcs; need to make area-specific MSY_SPR = SSB_equil/SPR_unfished; SPR_temp=SSB_equil; Equ_SpawnRecr_Result = Equil_Spawn_Recr_Fxn(SR_parm_work(2), SR_parm_work(3), SSB_unf, Recr_unf, SPR_temp); // returns 2 element vector containing equilibrium biomass and recruitment at this SPR Bmsy=Equ_SpawnRecr_Result(1); Recr_msy=Equ_SpawnRecr_Result(2); yld1(ii)=YPR_opt*Recr_msy; // *mfexp(-Equ_penalty); Yield=YPR_opt*Recr_msy; bestF1+=F1(ii)*(pow(mfexp(Yield/1.0e08),5)-1.); bestF2+=pow(mfexp(Yield/1.0e08),5)-1.; } // end gradient calc dyld = (yld1(2) - yld1(3))/df; // First derivative (to find the root of this) temp = (yld1(2) + yld1(3) - 2.*yld1(1))/(.25*df*df); // Second derivative (for Newton Raphson) dyldp = -sqrt(temp*temp+1.); // add 1 to keep curvature reasonably large last_F1=F1(1); temp = F1(1)-dyld*(1.-Closer)/(dyldp); if(show_MSY==1) { report5<=0.001) {N_warn++; warning<<" warning: poor convergence in Fmsy, final dy/dy2= "<0) report5<0) { if(GP4(g)==gp && sx(g)==gg) tempvec_a+= value(Recr_msy*equ_numbers(1,p,g)(0,nages)); } if(nseas>1) { tempvec_a(0)=0.; for (s=1;s<=nseas;s++) for (p=1;p<=pop;p++) for (g=1;g<=gmorph;g++) if(use_morph(g)>0 && Bseas(g)==s) { if(GP4(g)==gp && sx(g)==gg) tempvec_a(0) += value(Recr_msy*equ_numbers(1,p,g,0)); } } report5 <0) report5<0) { if(GP4(g)==gp && sx(g)==gg) tempvec_a+= value(Recr_msy*equ_numbers(1,p,g)(0,nages)); } if(nseas>1) { tempvec_a(0)=0.; for (s=1;s<=nseas;s++) for (p=1;p<=pop;p++) for (g=1;g<=gmorph;g++) if(use_morph(g)>0 && Bseas(g)==s) { if(GP4(g)==gp && sx(g)==gg) tempvec_a(0) += value(Recr_msy*equ_numbers(1,p,g,0)); } } report5 <= SPR_Fmult) {N_warn++; warning<<" Fmsy is >3x of Fspr are you sure? check for convergence "<= Fmax) {N_warn++; warning<<" Fmsy is close to max allowed; check for convergence "<0 && mceval_counter==0 && show_MSY==1) cout<<" got Fmsy "<0) { report5<<"Bycatch_Fleets: "<0) { report5<<"Year "; for (f=1;f<=Fcast_Catch_Allocation_Groups;f++) report5<<" group_"<0) { report5<<"-1 #Input_fixed_catches_or_F_with_fleet/time_specific_values (3 for retained catch; 2 for dead catch; 99 for F)"<F_std_because_of_selex)"<=3) report5<<"pop year ABC_Loop season Ramp bio-all bio-Smry SpawnBio Depletion recruit-0 "; for (f=1;f<=Nfleet;f++) if(fleet_type(f)<=2) {report5<<" sel(B):_"<0 || timevary_MG(y,3)>0 || save_for_report==1 || WTage_rd>0) { s=1; subseas=1; // begin season note that ALK_idx re-calculated inside get_growth3 ALK_idx=(s-1)*N_subseas+subseas; // redundant with calc inside get_growth3 ???? get_growth3(s, subseas); // not needed because size-at-age already has been propagated to seas 1 subseas 1 Make_AgeLength_Key(s, subseas); // this will give wt_age_beg before any time-varying parameter changes for this year } smrybio=0.0; smrynum=0.0; s=1; t=t_base+1; for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (p=1;p<=pop;p++) { smrybio+=natage(t,p,g)(Smry_Age,nages)*Wt_Age_beg(s,g)(Smry_Age,nages); smrynum+=sum(natage(t,p,g)(Smry_Age,nages)); //sums to accumulate across platoons and settlements } } env_data(y,-3)=log(smrybio/Smry_Table(styr-1,2)); env_data(y,-4)=log(smrynum/Smry_Table(styr-1,3)); Smry_Table(y).initialize(); if(Fcast_Loop1==3 && Do_Impl_Error>0) // apply implementation error, which is a random variable, so adds variance to forecast // in future, could do this a fleet-specific implementation error { for (s=1;s<=nseas;s++) { t=t_base+s; for (f=1;f<=Nfleet;f++) { if(fleet_type(f)<=2) {Fcast_Catch_Store(t,f)*=mfexp(Fcast_impl_error(y));} // should this be bias adjusted? } } } // do biology for this year // yz=endyr+1; // biology year for parameters yz=y; if(do_densitydependent==1) make_densitydependent_parm(y); // call to adjust for density dependence if(timevary_MG(endyr+1,2)>0 || save_for_report>0) // so uses endyr+1 timevary setting for duration of forecast { get_MGsetup(); ALK_subseas_update=1; // vector to indicate if ALK needs recalculating get_growth2(); } // warning<0) get_natmort(); if(timevary_MG(endyr+1,3)>0) get_wtlen(); if(timevary_MG(endyr+1,4)>0) get_recr_distribution(); if(timevary_MG(endyr+1,5)>0) get_migration(); if(timevary_MG(endyr+1,7)>0) get_catch_mult(y, catch_mult_pointer); if(save_for_report>0 && Fcast_Loop1==Fcast_Loop_Control(1)) { if(timevary_MG(endyr+1,1)>0 || timevary_MG(endyr+1,2)>0 || timevary_MG(endyr+1,3)>0) { get_saveGparm(); } } // SS_Label_Info_24.1.2 #Call selectivity, which does its own internal check for time-varying changes if(Fcast_Specify_Selex>0) get_selectivity(); // ABC_loop: 1=get OFL; 2=get_ABC, use input catches; 3=recalc with caps and allocations for (int ABC_Loop=ABC_Loop_start; ABC_Loop<=ABC_Loop_end;ABC_Loop++) { totcatch=0.; if(ABC_Loop==1) Mgmt_quant(Fcast_catch_start+N_Fcast_Yrs+y-endyr)=0.0; // for OFL Mgmt_quant(Fcast_catch_start+y-endyr)=0.0; // for ABC if(max(Do_Retain)>0) Mgmt_quant(Fcast_catch_start+2*N_Fcast_Yrs+y-endyr)=0.0; // for retained ABC if(STD_Yr_Reverse_F(y)>0) F_std(STD_Yr_Reverse_F(y))=0.0; for (s=1;s<=nseas;s++) { t = t_base+s; bio_t=styr+(endyr-styr)*nseas+s-1; if(ABC_Loop==ABC_Loop_start) // do seasonal ALK and fishery selex { if(timevary_MG(endyr+1,2)>0 || save_for_report==1) { subseas=1; // for begin of season ALK_idx calculated within Make_AgeLength_Key get_growth3(s, subseas); Make_AgeLength_Key(s, subseas); // begin season subseas=mid_subseas; get_growth3(s, subseas); Make_AgeLength_Key(s, subseas); // for middle of season (begin of 3rd quarter) // SPAWN-RECR: call Make_Fecundity in forecast if(s==spawn_seas) { subseas=spawn_subseas; if(spawn_subseas!=1 && spawn_subseas!=mid_subseas) { get_growth3(s, subseas); Make_AgeLength_Key(s, subseas); // spawn subseas } } } if(WTage_rd>0) { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { Wt_Age_beg(s,g)=WTage_emp(t,GP3(g),0); Wt_Age_mid(s,g)=WTage_emp(t,GP3(g),-1); if(s==spawn_seas) fec(g)=WTage_emp(t,GP3(g),-2); } } else if(timevary_MG(endyr+1,2)>0 || timevary_MG(endyr+1,3)>0 || save_for_report>0 || ((sd_phase() || mceval_phase()) && (initial_params::mc_phase==0)) ) { Make_Fecundity(); for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { subseas=1; ALK_idx=(s-1)*N_subseas+subseas; Wt_Age_beg(s,g)=(ALK(ALK_idx,g)*wt_len(s,GP(g))); // wt-at-age at beginning of period subseas=mid_subseas; ALK_idx=(s-1)*N_subseas+subseas; Wt_Age_mid(s,g)=ALK(ALK_idx,g)*wt_len(s,GP(g)); // use for fisheries with no size selectivity } } Save_Wt_Age(t)=Wt_Age_beg(s); for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { Make_FishSelex(); // calcs fishery selex by current season, all fleets, current gmorph } } // end of seasonal biology if(s==nseas) {adv_age=1;} else {adv_age=0;} // advance age or not when doing survivorship // SPAWN-RECR: calc area-specific spawning biomass in forecast if(s==spawn_seas && spawn_time_seas<0.0001) // get spawnbio in a forecast year { SSB_pop_gp(y).initialize(); SSB_B_yr(y).initialize(); SSB_N_yr(y).initialize(); for (p=1;p<=pop;p++) { for (g=1;g<=gmorph;g++) if(sx(g)==1 && use_morph(g)>0) // female { // SSB_pop_gp(y,p,GP4(g)) += fec(g)*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); // accumulates SSB by area and by growthpattern // SSB_B_yr(y) += make_mature_bio(GP4(g))*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); // SSB_N_yr(y) += make_mature_numbers(GP4(g))*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); SSB_pop_gp(y,p,GP4(g)) += fracfemale_mult*fec(g)*natage(t,p,g); // accumulates SSB by area and by growthpattern SSB_B_yr(y) += fracfemale_mult*make_mature_bio(GP4(g))*natage(t,p,g); SSB_N_yr(y) += fracfemale_mult*make_mature_numbers(GP4(g))*natage(t,p,g); } } SSB_current=sum(SSB_pop_gp(y)); SSB_yr(y)=SSB_current; if(Hermaphro_Option!=0) // get male biomass { MaleSPB(y).initialize(); for (p=1;p<=pop;p++) { for (g=1;g<=gmorph;g++) if(sx(g)==2 && use_morph(g)>0) // male; all assumed to be mature { MaleSPB(y,p,GP4(g)) += Save_Wt_Age(t,g)*natage(t,p,g); // accumulates SSB by area and by growthpattern } } if(Hermaphro_maleSPB==1) // add MaleSPB to female SSB { SSB_current+=sum(MaleSPB(y)); SSB_yr(y)=SSB_current; } } // SPAWN-RECR: get recruitment in forecast; needs to be area-specific if(SR_parm_timevary(1)==0) // R0 is not time-varying {R0_use=Recr_virgin; SSB_use=SSB_virgin;} else { R0_use=mfexp(SR_parm_work(1)); equ_Recr=R0_use; Fishon=0; eq_yr=y; bio_yr=y; Do_Equil_Calc(R0_use); // call function to do equilibrium calculation if(fishery_on_off==1) {Fishon=1;} else {Fishon=0;} SSB_use=SSB_equil; } Recruits=Spawn_Recr(SSB_use,R0_use,SSB_current); // calls to function Spawn_Recr apply_recdev(Recruits, R0_use); // apply recruitment deviation if(Fcast_Loop10) { settle=settle_g(g); // get settlement event for (p=1;p<=pop;p++) { // if(y==endyr+1) natage(t+Settle_seas_offset(settle),p,g,Settle_age(settle))=0.0; // to negate the additive code natage(t+Settle_seas_offset(settle),p,g,Settle_age(settle)) = Recruits*recr_dist(GP(g),settle,p)*platoon_distr(GP2(g))* mfexp(natM(s,GP3(g),Settle_age(settle))*Settle_timing_seas(settle)); if(Fcast_Loop1==jloop && ABC_Loop==ABC_Loop_end) Recr(p,t+Settle_seas_offset(settle))+=Recruits*recr_dist(GP(g),settle,p)*platoon_distr(GP2(g)); // the adjustment for mortality increases recruit value for elapsed time since begin of season because M will then be applied from beginning of season } } } // end of spawner-recruitment calculations // SPAWN-RECR: total spawn bio used in F policy. Make this area-specific too? if(ABC_Loop==1) // doing OFL this loop { ABC_buffer(y)=1.0; } else if(ABC_Loop==2 && s==1) // Calc the buffer in season 1, will use last year's spawnbio if multiseas and spawnseas !=1 { temp=SSB_unf; join1=1./(1.+mfexp(10.*(SSB_current-H4010_bot*temp))); join2=1./(1.+mfexp(10.*(SSB_current-H4010_top*temp))); switch(HarvestPolicy) { case 1: // west coast // ramp scales catch as f(B) and buffer (H4010_scale) applied to F { ABC_buffer(y) = H4010_scale_vec(y)* ( (0.0001*SSB_current/(H4010_bot*temp) ) *(join1) // low +(0.0001+(1.0-0.0001)*(H4010_top*temp/SSB_current)*(SSB_current-H4010_bot*temp)/(H4010_top*temp-H4010_bot*temp)) * (1.0-join1) // curve ) *(join2) // scale combo + (H4010_scale_vec(y)) * (1.0-join2); // scale right side break; } case 2: // Alaska // ramp scales F as f(B) and buffer (H4010_scale) applied to F { ABC_buffer(y) = H4010_scale_vec(y)* ( (0.0001*SSB_current/(H4010_bot*temp) ) *(join1) // low +(0.0001+(1.0-0.0001)*(SSB_current-H4010_bot*temp)/(H4010_top*temp-H4010_bot*temp)) * (1.0-join1) // curve ) *(join2) // scale combo + (H4010_scale_vec(y)) * (1.0-join2); // scale right side break; } case 3: // west coast // ramp scales catch as f(B) and buffer (H4010_scale) applied to catch { ABC_buffer(y) = 1.0* ( (0.0001*SSB_current/(H4010_bot*temp) ) *(join1) // low +(0.0001+(1.0-0.0001)*(H4010_top*temp/SSB_current)*(SSB_current-H4010_bot*temp)/(H4010_top*temp-H4010_bot*temp)) * (1.0-join1) // curve ) *(join2) // scale combo + (1.0) * (1.0-join2); // scale right side break; } case 4: // Alaska // ramp scales F as f(B) and buffer (H4010_scale) applied to catch { ABC_buffer(y) = 1.0* ( (0.0001*SSB_current/(H4010_bot*temp) ) *(join1) // low +(0.0001+(1.0-0.0001)*(SSB_current-H4010_bot*temp)/(H4010_top*temp-H4010_bot*temp)) * (1.0-join1) // curve ) *(join2) // scale combo + (1.0) * (1.0-join2); // scale right side break; } } } // end calc of ABC buffer else { // ABC buffer remains at previously calculated value } for (p=1;p<=pop;p++) // loop areas { totbio.initialize();smrybio.initialize(); smrynum.initialize(); for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { gg=sx(g); totbio+=natage(t,p,g)*Wt_Age_beg(s,g); temp=natage(t,p,g)(Smry_Age,nages)*Wt_Age_beg(s,g)(Smry_Age,nages); smrybio+=temp; smrynum+=sum(natage(t,p,g)(Smry_Age,nages)); if(save_for_report==1) { Save_PopLen(t,p,g)=0.0; Save_PopLen(t,p+pop,g)=0.0; // later put midseason here Save_PopWt(t,p,g)=0.0; Save_PopWt(t,p+pop,g)=0.0; // later put midseason here Save_PopAge(t,p,g)=value(natage(t,p,g)); for (a=0;a<=nages;a++) { Save_PopLen(t,p,g)+=value(natage(t,p,g,a))*value(ALK(ALK_idx,g,a)); Save_PopWt(t,p,g)+= value(natage(t,p,g,a))*value(elem_prod(ALK(ALK_idx,g,a),wt_len(s,GP(g)))); Save_PopBio(t,p,g,a)=value(natage(t,p,g,a))*value(Wt_Age_beg(s,g,a)); } // close age loop } } Tune_F_loops=1; for (f=1;f<=Nfleet;f++) // calc the Hrates given the HarvestPolicy, and find which catches are fixed or adjustable if(fleet_type(f)<=2) { switch (ABC_Loop) { case 1: // apply Fmsy and get OFL { if(bycatch_setup(f,3)<=1) {Hrate(f,t)=Fcast_Fmult*Fcast_RelF_Use(s,f);} else {Hrate(f,t)=bycatch_F(f,s);} break; // no action, keep Hrate } case 2: // apply ABC control rule and store catches { if(bycatch_setup(f,3)<=1) {Hrate(f,t)=ABC_buffer(y)*Fcast_Fmult*Fcast_RelF_Use(s,f);} else {Hrate(f,t)=bycatch_F(f,s);} // if HarvestPolicy==3 or 4, then H4010_scale is not in ABC_buffer and will need to be applied to catch in first stage of the tuning process below if(N_Fcast_Input_Catches>0) if(Fcast_InputCatch(t,f,1)>-1.0) // have an input { if(Fcast_InputCatch(t,f,2)<=3) // input is catch { if(Fcast_InputCatch(t,f,1)==0.0) { Hrate(f,t)=0.0; Do_F_tune(t,f)=0; } else { Tune_F_loops=8; Do_F_tune(t,f)=1; } } else {Hrate(f,t)=Fcast_InputCatch(t,f,1);} // input is as Hrate (F), but do not need tuning } break; } case 3: // always get F to match catch when in ABC_Loop==3 { Tune_F_loops=8; Do_F_tune(t,f)=1; break; } } } if(F_Method==1) // calculate catch, survival and F using Fmethod==1 (Pope's) { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { Nmid(g) = elem_prod(natage(t,p,g),surv1(s,GP3(g))); } for (Tune_F=1;Tune_F<=Tune_F_loops;Tune_F++) { for (f=1;f<=Nfleet;f++) // get calculated catch if (fleet_area(f)==p && Fcast_RelF_Use(s,f)>0.0 && fleet_type(f)<=2) { temp=0.0; if(Do_F_tune(t,f)==1) { if(ABC_Loop==2 && N_Fcast_Input_Catches>0) // tune to input catch if in ABC_loop 2 { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { if(catchunits(f)==1) // catch in weight { if(Fcast_InputCatch(t,f,2)==2) {temp+=Nmid(g)*deadfish_B(s,g,f);} // dead catch bio else if(Fcast_InputCatch(t,f,2)==3) {temp+=Nmid(g)*sel_al_2(s,g,f);} // retained catch bio } else // catch in numbers { if(Fcast_InputCatch(t,f,2)==2) {temp+=Nmid(g)*deadfish(s,g,f);} // deadfish catch numbers else if(Fcast_InputCatch(t,f,2)==3) {temp+=Nmid(g)*sel_al_4(s,g,f);} // retained catch numbers } } //close gmorph loop temp=max_harvest_rate-Fcast_InputCatch(t,f,1)/(temp+NilNumbers); Hrate(f,t)=max_harvest_rate-posfun(temp,0.0001,Fcast_Crash); } else if (fishery_on_off==1) // tune to adjusted catch calculated from ABC_Loop=2 { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { if(Fcast_Catch_Basis==2) {temp+=Nmid(g)*deadfish_B(s,g,f);} // dead catch bio else if(Fcast_Catch_Basis==3) {temp+=Nmid(g)*sel_al_2(s,g,f);} // retained catch bio else if(Fcast_Catch_Basis==5) {temp+=Nmid(g)*deadfish(s,g,f);} // deadfish catch numbers else if(Fcast_Catch_Basis==6) {temp+=Nmid(g)*sel_al_4(s,g,f);} // retained catch numbers } //close gmorph loop temp=max_harvest_rate-Fcast_Catch_Store(t,f)/(temp+NilNumbers); Hrate(f,t)=max_harvest_rate-posfun(temp,0.0001,Fcast_Crash); } } // end have fixed catch to be matched } // end fishery loop } // end finding the Hrates // now get catch details and survivorship Nsurv=Nmid; // initialize the number of survivors for (f=1;f<=Nfleet;f++) //loop over fishing fleets SS_Label_105 if (fleet_area(f)==p && fleet_type(f)<=2) { catch_fleet(t,f).initialize(); // if(ABC_Loop==2 && bycatch_setup(f,3)<=1 && HarvestPolicy>=3) // fleet has scalable catch and policy applies to catch, not F // {Hrate(f,t)*=H4010_scale;} // here for Pope's, ok to do scale adjustment to Hrate; will have to be on catch for continuous F temp=Hrate(f,t); for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { catch_fleet(t,f,1)+=Nmid(g)*sel_al_1(s,g,f); // encountered catch bio catch_fleet(t,f,2)+=Nmid(g)*deadfish_B(s,g,f); // dead catch bio catch_fleet(t,f,3)+=Nmid(g)*sel_al_2(s,g,f); // retained catch bio catch_fleet(t,f,4)+=Nmid(g)*sel_al_3(s,g,f); // encountered catch numbers catch_fleet(t,f,5)+=Nmid(g)*deadfish(s,g,f); // deadfish catch numbers catch_fleet(t,f,6)+=Nmid(g)*sel_al_4(s,g,f); // retained catch numbers catage_w(g)= temp*elem_prod(Nmid(g),deadfish(s,g,f)); Nsurv(g)-=catage_w(g); } //close gmorph loop catch_fleet(t,f)*=temp; } // close fishery for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { settle=settle_g(g); // get settlement event j=Settle_age(settle); if(s0) { Z_rate(t,p,g)=natM(s,GP3(g)); for (f=1;f<=Nfleet;f++) if (fleet_area(f)==p && Fcast_RelF_Use(s,f)>0.0 && fleet_type(f)<=2) { Z_rate(t,p,g)+=deadfish(s,g,f)*Hrate(f,t); } Zrate2(p,g)=elem_div( (1.-mfexp(-seasdur(s)*Z_rate(t,p,g))), Z_rate(t,p,g)); } // end morph for (f=1;f<=Nfleet;f++) // get calculated catch if (fleet_area(f)==p && Fcast_RelF_Use(s,f)>0.0 && fleet_type(f)<=2) { // report5<0) // tune to input catch in ABCloop 2, then it becomes fixed in the stored catch { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { if(catchunits(f)==1) // catch in weight { if(Fcast_InputCatch(t,f,2)==2) {temp+=elem_prod(natage(t,p,g),deadfish_B(s,g,f))*Zrate2(p,g);} // dead catch bio else if(Fcast_InputCatch(t,f,2)==3) {temp+=elem_prod(natage(t,p,g),sel_al_2(s,g,f))*Zrate2(p,g);} // retained catch bio } else // catch in numbers { if(Fcast_InputCatch(t,f,2)==2) {temp+=elem_prod(natage(t,p,g),deadfish(s,g,f))*Zrate2(p,g);} // deadfish catch numbers else if(Fcast_InputCatch(t,f,2)==3) {temp+=elem_prod(natage(t,p,g),sel_al_4(s,g,f))*Zrate2(p,g);} // retained catch numbers } } //close gmorph loop temp*=Hrate(f,t); H_temp(f)=Hrate(f,t); C_temp(f)=temp; if(Tune_F<3) { C_old(f)=C_temp(f); H_old(f)=H_temp(f); Hrate(f,t)*=(Fcast_InputCatch(t,f,1)+1.0)/(temp+1.0); // apply adjustment } else { Hrate(f,t)=H_old(f)+(H_temp(f)-H_old(f))/(C_temp(f)-C_old(f)+1.0e-6) * (Fcast_InputCatch(t,f,1)-C_old(f)); C_old(f)=C_temp(f); H_old(f)=H_temp(f); } } else if (fishery_on_off==1) // tune to adjusted catch calculated in ABC_Loop=2 (note different basis for catch) { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { if(Fcast_Catch_Basis==2) {temp+=elem_prod(natage(t,p,g),deadfish_B(s,g,f))*Zrate2(p,g);} // dead catch bio else if(Fcast_Catch_Basis==3) {temp+=elem_prod(natage(t,p,g),sel_al_2(s,g,f))*Zrate2(p,g);} // retained catch bio else if(Fcast_Catch_Basis==5) {temp+=elem_prod(natage(t,p,g),deadfish(s,g,f))*Zrate2(p,g);} // deadfish catch numbers else if(Fcast_Catch_Basis==6) {temp+=elem_prod(natage(t,p,g),sel_al_4(s,g,f))*Zrate2(p,g);} // retained catch numbers } //close gmorph loop temp*=Hrate(f,t); H_temp(f)=Hrate(f,t); C_temp(f)=temp; if(Tune_F<3) { C_old(f)=C_temp(f); H_old(f)=H_temp(f); Hrate(f,t)*=(Fcast_Catch_Store(t,f)+1.0)/(temp+1.0); // adjust Hrate using catch stored from ABCloop2 // report5<<" new F "<0) { tempvec_a=Hrate(f,t)*Zrate2(p,g); catch_fleet(t,f,1)+=tempvec_a*elem_prod(natage(t,p,g),sel_al_1(s,g,f)); // encountered catch bio catch_fleet(t,f,2)+=tempvec_a*elem_prod(natage(t,p,g),deadfish_B(s,g,f)); // dead catch bio catch_fleet(t,f,3)+=tempvec_a*elem_prod(natage(t,p,g),sel_al_2(s,g,f)); // retained catch bio catch_fleet(t,f,4)+=tempvec_a*elem_prod(natage(t,p,g),sel_al_3(s,g,f)); // encountered catch numbers catch_fleet(t,f,5)+=tempvec_a*elem_prod(natage(t,p,g),deadfish(s,g,f)); // deadfish catch numbers catch_fleet(t,f,6)+=tempvec_a*elem_prod(natage(t,p,g),sel_al_4(s,g,f)); // retained catch numbers catage(t,f,g)=elem_prod(elem_prod(natage(t,p,g),deadfish(s,g,f)),tempvec_a); } //close gmorph loop } // close fishery // calculate survival within area within season for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { if(s0.) {report5<<" "<=0.0001) // compute spawning biomass { SSB_pop_gp(y).initialize(); SSB_B_yr(y).initialize(); SSB_N_yr(y).initialize(); for (p=1;p<=pop;p++) { for (g=1;g<=gmorph;g++) if(sx(g)==1 && use_morph(g)>0) // female { SSB_pop_gp(y,p,GP4(g)) += fracfemale_mult*fec(g)*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); // accumulates SSB by area and by growthpattern SSB_B_yr(y) += fracfemale_mult*make_mature_bio(GP4(g))*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); SSB_N_yr(y) += fracfemale_mult*make_mature_numbers(GP4(g))*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); } } SSB_current=sum(SSB_pop_gp(y)); SSB_yr(y)=SSB_current; if(Hermaphro_Option!=0) // get male biomass { MaleSPB(y).initialize(); for (p=1;p<=pop;p++) { for (g=1;g<=gmorph;g++) if(sx(g)==2 && use_morph(g)>0) // male; all assumed to be mature { MaleSPB(y,p,GP4(g)) += Save_Wt_Age(t,g)*elem_prod(natage(t,p,g),mfexp(-Z_rate(t,p,g)*spawn_time_seas)); // accumulates SSB by area and by growthpattern } } if(Hermaphro_maleSPB==1) // add MaleSPB to female SSB { SSB_current+=sum(MaleSPB(y)); SSB_yr(y)=SSB_current; } } // SS_Label_Info_24.3.4.1 #Get recruitment from this spawning biomass // SPAWN-RECR: calc recruitment in time series; need to make this area-specififc if(SR_parm_timevary(1)==0) // R0 is not time-varying {R0_use=Recr_virgin; SSB_use=SSB_virgin;} else { R0_use=mfexp(SR_parm_work(1)); equ_Recr=R0_use; Fishon=0; eq_yr=y; bio_yr=y; Do_Equil_Calc(equ_Recr); // call function to do equilibrium calculation if(fishery_on_off==1) {Fishon=1;} else {Fishon=0;} SSB_use=SSB_equil; } Recruits=Spawn_Recr(SSB_use,R0_use,SSB_current); // calls to function Spawn_Recr apply_recdev(Recruits, R0_use); // apply recruitment deviation // distribute Recruitment among the settlements, areas and morphs for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { settle=settle_g(g); for (p=1;p<=pop;p++) { // if(y==endyr+1) natage(t+Settle_seas_offset(settle),p,g,Settle_age(settle))=0.0; // to negate the additive code // natage(t+Settle_seas_offset(settle),p,g,Settle_age(settle)) += Recruits*recr_dist(GP(g),settle,p)*platoon_distr(GP2(g))* natage(t+Settle_seas_offset(settle),p,g,Settle_age(settle)) = Recruits*recr_dist(GP(g),settle,p)*platoon_distr(GP2(g))* mfexp(natM(s,GP3(g),Settle_age(settle))*Settle_timing_seas(settle)); if(Fcast_Loop1==jloop && ABC_Loop==ABC_Loop_end) Recr(p,t+Settle_seas_offset(settle))+=Recruits*recr_dist(GP(g),settle,p)*platoon_distr(GP2(g)); } } } if(Hermaphro_Option!=0) //hermaphroditism { if(Hermaphro_seas==-1 || Hermaphro_seas==s) { k=gmorph/2; for(p=1;p<=pop;p++) for (g=1;g<=k;g++) // loop females if(use_morph(g)>0) { if(Hermaphro_Option==1) { for (a=1;a0) // movement between areas in forecast { natage_temp=natage(t+1); natage(t+1).initialize(); for (p=1;p<=pop;p++) // source population for (p2=1;p2<=pop;p2++) // destination population for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { k=move_pattern(s,GP4(g),p,p2); if(k>0) natage(t+1,p2,g) += elem_prod(natage_temp(p,g),migrrate(bio_yr,k)); } } if( (save_for_report>0) || ((sd_phase() || mceval_phase()) && (initial_params::mc_phase==0)) ) { if(Fcast_Loop1==2 && ABC_Loop==1) // get variance in OFL { for (f=1;f<=Nfleet;f++) { if(fleet_type(f)==1) {Mgmt_quant(Fcast_catch_start+N_Fcast_Yrs+y-endyr)+=catch_fleet(t,f,2);} else if (fleet_type(f)==3) {} // survey else if(bycatch_setup(f,2)==1) // bycatch {Mgmt_quant(Fcast_catch_start+N_Fcast_Yrs+y-endyr)+=catch_fleet(t,f,2);} } } if(Fcast_Loop1==Fcast_Loop_Control(1) && ABC_Loop==ABC_Loop_end) // in final loop, so do variance quantities { double countN; dvariable tempbase; dvariable tempM; dvariable tempZ; if(F_reporting!=5 && s==nseas) { tempbase=0.0; tempM=0.0; tempZ=0.0; // accumulate numbers across ages, morphs, sexes, areas for (a=F_reporting_ages(1);a<=F_reporting_ages(2);a++) // should not let a go higher than nages-2 because of accumulator { for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (p=1;p<=pop;p++) { tempbase+=natage(t-nseas+1,p,g,a); // sum of numbers at beginning of year tempZ+=natage(t+1,p,g,a+1); // numbers at beginning of next year temp3=natage(t-nseas+1,p,g,a); // numbers at begin of year for (j=1;j<=nseas;j++) {temp3*=mfexp(-seasdur(j)*natM(j,GP3(g),a));} tempM+=temp3; // survivors if just M operating } } } annual_F(y,2) += log(tempM)-log(tempZ); // F=Z-M annual_F(y,3) += log(tempbase)-log(tempM); // M } if(F_reporting==5 && s==nseas) { // F_reporting==5 (ICES-style arithmetic mean across ages) // like option 4 above, but F is calculated 1 age at a time to get a // unweighted average across ages within each year countN=0.0; // used for count of Fs included in average for (a=F_reporting_ages(1);a<=F_reporting_ages(2);a++) // should not let a go higher than nages-2 because of accumulator { tempbase=0.0; tempM=0.0; tempZ=0.0; // accumulate numbers across all morphs, sexes, and areas for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (p=1;p<=pop;p++) { tempbase+=natage(t-nseas+1,p,g,a); // sum of numbers at beginning of year tempZ+=natage(t+1,p,g,a+1); // numbers at beginning of next year temp3=natage(t-nseas+1,p,g,a); // numbers at begin of year for (j=1;j<=nseas;j++) {temp3*=mfexp(-seasdur(j)*natM(j,GP3(g),a));} tempM+=temp3; // survivors if just M operating } } // calc F and M for this age and add to the total countN += 1; // increment count of values included in average annual_F(y,2) += log(tempM)-log(tempZ); // F=Z-M annual_F(y,3) += log(tempbase)-log(tempM); // M // if(save_for_report==1) warning<0) { if(F_reporting<=1) { for (f=1;f<=Nfleet;f++) { if(fleet_type(f)==1) {F_std(STD_Yr_Reverse_F(y))+=catch_fleet(t,f,2);} // add up dead catch biomass else if (fleet_type(f)==3) {} // survey else if(bycatch_setup(f,2)==1) // bycatch {F_std(STD_Yr_Reverse_F(y))+=catch_fleet(t,f,2);} // add up dead catch biomass } if(s==nseas) F_std(STD_Yr_Reverse_F(y))/=Smry_Table(y,2); } else if(F_reporting==2) { for (f=1;f<=Nfleet;f++) { if(fleet_type(f)==1) {F_std(STD_Yr_Reverse_F(y))+=catch_fleet(t,f,5);} // add up dead catch numbers else if (fleet_type(f)==3) {} // survey else if(bycatch_setup(f,2)==1) // bycatch {F_std(STD_Yr_Reverse_F(y))+=catch_fleet(t,f,5);} // add up dead catch numbers } if(s==nseas) F_std(STD_Yr_Reverse_F(y))/=Smry_Table(y,3); } else if(F_reporting==3) { if(F_Method==1) { for (f=1;f<=Nfleet;f++) { if(fleet_type(f)<=2) {F_std(STD_Yr_Reverse_F(y))+=Hrate(f,t);} } } else { for (f=1;f<=Nfleet;f++) { if(fleet_type(f)<=2) {F_std(STD_Yr_Reverse_F(y))+=Hrate(f,t)*seasdur(s);} } } } else {F_std(STD_Yr_Reverse_F(y))=annual_F(y,2);} /* else if(F_reporting==4 && s==nseas) { // sum across p and g the number of survivors to end of the year // also project from the initial numbers and M, the number of survivors without F // then F = ln(n+1/n)(M+F) - ln(n+1/n)(M only), but ln(n) cancels out, so only need the ln of the ratio of the two ending quantities temp1=0.0; temp2=0.0; for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (p=1;p<=pop;p++) { for (a=F_reporting_ages(1);a<=F_reporting_ages(2);a++) // should not let a go higher than nages-2 because of accumulator { if(nseas==1) { temp1+=natage(t+1,p,g,a+1); temp2+=natage(t,p,g,a)*mfexp(-seasdur(s)*natM(s,GP3(g),a)); } else { temp1+=natage(t+1,p,g,a+1); temp3=natage(t-nseas+1,p,g,a); // numbers at begin of year for (j=1;j<=nseas;j++) {temp3*=mfexp(-seasdur(j)*natM(j,GP3(g),a));} temp2+=temp3; } } } } F_std(STD_Yr_Reverse_F(y)) = log(temp2)-log(temp1); } else if(F_reporting==5 && s==nseas) { // F_reporting==5 (ICES-style arithmetic mean across ages) // like option 4 above, but F is calculated 1 age at a time to get a // unweighted average across ages within each year temp=0.0; // used for count of Fs included in average for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (a=F_reporting_ages(1);a<=F_reporting_ages(2);a++) // should not let a go higher than nages-2 because of accumulator { temp1=0.0; // sum survivors across all g and p temp2=0.0; for (p=1;p<=pop;p++) { temp1+=natage(t+1,p,g,a+1); temp3=natage(t-nseas+1,p,g,a); // numbers at begin of year for (j=1;j<=nseas;j++) {temp3*=mfexp(-seasdur(j)*natM(j,GP3(g),a));} temp2+=temp3; // temp2 and temp3 are redundant but match code above } // add F-at-age to tally F_std(STD_Yr_Reverse_F(y)) += log(temp2)-log(temp1); temp += 1; // increment count of values included in average } } F_std(STD_Yr_Reverse_F(y)) /= temp; } // end F_reporting==5 */ } for (f=1;f<=Nfleet;f++) { if(fleet_type(f)==1) { Mgmt_quant(Fcast_catch_start+y-endyr)+=catch_fleet(t,f,2); if(max(Do_Retain)>0) Mgmt_quant(Fcast_catch_start+2*N_Fcast_Yrs+y-endyr)+=catch_fleet(t,f,3); } else if (fleet_type(f)==3) {} // survey else if(bycatch_setup(f,2)==1) // bycatch { Mgmt_quant(Fcast_catch_start+y-endyr)+=catch_fleet(t,f,2); if(max(Do_Retain)>0) Mgmt_quant(Fcast_catch_start+2*N_Fcast_Yrs+y-endyr)+=catch_fleet(t,f,3); } } } } for (f=1;f<=Nfleet;f++) // store catches { if(fleet_type(f)==1) { if(ABC_Loop==2 && HarvestPolicy>=3) {catch_fleet(t,f)*=H4010_scale_vec(y);} if(Fcast_InputCatch(t,f,2)>1) // have input catch {Fcast_Catch_Store(t,f)=Fcast_InputCatch(t,f,1);} else {Fcast_Catch_Store(t,f)=catch_fleet(t,f,Fcast_Catch_Basis);} totcatch+=Fcast_Catch_Store(t,f); } else if(fleet_type(f)==3) {} // survey else // bycatch { if(ABC_Loop==2 && HarvestPolicy>=3 && bycatch_setup(f,3)<=1) {catch_fleet(t,f)*=H4010_scale_vec(y);} if(Fcast_InputCatch(t,f,2)>1) // have input catch {Fcast_Catch_Store(t,f)=Fcast_InputCatch(t,f,1);} else {Fcast_Catch_Store(t,f)=catch_fleet(t,f,Fcast_Catch_Basis);} if(bycatch_setup(f,2)==1) totcatch+=Fcast_Catch_Store(t,f); } } if(show_MSY==1) { if(s==nseas) {report5<<" "<0) {report5<0 && y>=Fcast_Cap_FirstYear) { for (f=1;f<=Nfleet;f++) // adjust ABC catch to fleet caps { if(Fcast_MaxFleetCatch(f)>0. && fleet_type(f)<=2) { temp = Fcast_Catch_Calc_Annual(f)/Fcast_MaxFleetCatch(f); join1=1./(1.+mfexp(1000.*(temp-1.0))); // steep logistic joiner at adjustment of 1.0 temp1=join1*1.0 + (1.-join1)*temp; Fcast_Catch_Calc_Annual(f)/=temp1; for (s=1;s<=nseas;s++) {Fcast_Catch_Store(t_base+s,f)/=temp1;} } } } if(Fcast_Do_Area_Cap>0 && y>=Fcast_Cap_FirstYear) // scale down if Totcatch exceeds Fcast_MaxAreaCatch (in this area) { if(pop==1) // one area { Fcast_Catch_ByArea(1)=sum(Fcast_Catch_Calc_Annual(1,Nfleet)); } else { Fcast_Catch_ByArea=0.0; for (f=1;f<=Nfleet;f++) { if(fleet_type(f)<=2) { Fcast_Catch_ByArea(fleet_area(f))+=Fcast_Catch_Calc_Annual(f); } } } for (p=1;p<=pop;p++) if(Fcast_MaxAreaCatch(p)>0.0) { temp = Fcast_Catch_ByArea(p)/Fcast_MaxAreaCatch(p); join1=1./(1.+mfexp(1000.*(temp-1.0))); // steep logistic joiner at adjustment of 1.0 temp1=join1*1.0 + (1.-join1)*temp; for (f=1;f<=Nfleet;f++) if (fleet_area(f)==p && fleet_type(f)<=2) { Fcast_Catch_Calc_Annual(f)/=temp1; // adjusts total for the year for (s=1;s<=nseas;s++) {Fcast_Catch_Store(t_base+s,f)/=temp1;} } } // report5<0 && y>=Fcast_Cap_FirstYear) // adjust to get a specific fleet allocation { Fcast_Catch_Allocation_Group.initialize(); for (g=1;g<=Fcast_Catch_Allocation_Groups;g++) for (f=1;f<=Nfleet;f++) if (Allocation_Fleet_Assignments(f)==g && fleet_type(f)<=2) { Fcast_Catch_Allocation_Group(g)+=Fcast_Catch_Calc_Annual(f); } temp=sum(Fcast_Catch_Allocation_Group); // total catch for all fleets that are part of the allocation scheme temp1=sum(Fcast_Catch_Allocation(y-endyr)); // total of all allocation fractions for all fleets that are part of the allocation scheme for (g=1;g<=Fcast_Catch_Allocation_Groups;g++) { temp2=(Fcast_Catch_Allocation(y-endyr,g)/temp1) / (Fcast_Catch_Allocation_Group(g)/temp); for (f=1;f<=Nfleet;f++) if (Allocation_Fleet_Assignments(f)==g && fleet_type(f)<=2) { Fcast_Catch_Calc_Annual(f)*=temp2; for (s=1;s<=nseas;s++) { Fcast_Catch_Store(t_base+s,f)*=temp2; } } } } // end allocation among groups } } // end ABC_Loop if( (Fcast_Loop1==Fcast_Loop_Control(1) && (save_for_report>0)) || ((sd_phase() || mceval_phase()) && (initial_params::mc_phase==0)) ) { Smry_Table(y,4)=Mgmt_quant(Fcast_catch_start+y-endyr); eq_yr=y; equ_Recr=Recr_unf; bio_yr=endyr; Fishon=0; Do_Equil_Calc(equ_Recr); // call function to do equilibrium calculation Smry_Table(y,11)=SSB_equil; Smry_Table(y,13)=GenTime; Fishon=1; Do_Equil_Calc(equ_Recr); // call function to do equilibrium calculation if(STD_Yr_Reverse_Ofish(y)>0) SPR_std(STD_Yr_Reverse_Ofish(y))=SSB_equil/Smry_Table(y,11); Smry_Table(y,9)=totbio; Smry_Table(y,10)=smrybio; Smry_Table(y,12)=SSB_equil; Smry_Table(y,14)=YPR_dead; for (g=1;g<=gmorph;g++) { Smry_Table(y,20+g)=(cumF(g)); Smry_Table(y,20+gmorph+g)=(maxF(g)); } } } // end year loop if(save_for_report==2) save_for_report=1; } // end Fcast_Loop1 for the different stages of the forecast } // end forecast function //******************************************************************** /* SS_Label_FUNCTION 46 Get_expected_values: check for data */ FUNCTION void Get_expected_values(); { dvariable temp1; dvar_vector age_exp(0,nages2); for (subseas=1;subseas<=N_subseas;subseas++) { // make age-length key if needed ALK_idx=(s-1)*N_subseas+subseas; ALK_time=(y-styr)*nseas*N_subseas+(s-1)*N_subseas+subseas; if(ALK_subseas_update(ALK_idx)==1 || have_data(ALK_time,0,0,0)>0) // need ALK update for growth reasons or for data reasons { get_growth3(s, subseas); Make_AgeLength_Key(s, subseas); } for (f=1;f<=Nfleet;f++) { if(have_data(ALK_time,f,0,0)>0) { p=fleet_area(f); timing=data_time(ALK_time,f,2)*seasdur(s); // within season elapsed time same for all datatypes of this fleet x time // make selected age-length sample for this fleet and with this timing { exp_AL.initialize(); exp_AL_ret.initialize(); for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { int ALK_finder=(ALK_idx-1)*gmorph+g; ivector ALK_range_lo=ALK_range_g_lo(ALK_finder); ivector ALK_range_hi=ALK_range_g_hi(ALK_finder); gg=sx(g); if(gg==2) { L1=nlength1; L2= nlength2; A2=nages+1;} // move over on length dimension to store males else { L1=1; L2=nlength; A2=0;} /* if(F_Method==1 && surveytime(f)<0.0) // Pope's approximation {tempvec_a=elem_prod(Nmid(g),sel_a(y,f,gg));} // CHECK Nmid may not exist correctly unless still within the area loop else if(surveytime(f)<0.0) // mimic fishery catch, but without Hrate so gets available numbers {tempvec_a=elem_prod(natage(t,p,g),elem_prod(Zrate2(p,g),sel_a(y,f,gg)));} else // explicit timing {tempvec_a=elem_prod(natage(t,p,g),elem_prod(mfexp(-Z_rate(t,p,g)*timing),sel_a(y,f,gg)));} */ if(timing>=0.0) {tempvec_a=elem_prod(natage(t,p,g),elem_prod(mfexp(-Z_rate(t,p,g)*timing),sel_a(y,f,gg)));} // explicit timing else { if(F_Method>1) // mimic fishery catch, so gets mean available numbers {tempvec_a=elem_prod(natage(t,p,g),elem_prod(Zrate2(p,g),sel_a(y,f,gg)));} else // Pope's approximation { Nmid(g) = elem_prod(natage(t,p,g),surv1(s,GP3(g))); // numbers-at-age(g,a) surviving to middle of time period tempvec_a=elem_prod(Nmid(g),sel_a(y,f,gg)); } } tempvec_a=elem_prod(tempvec_a,keep_age(g,ALK_idx)); int retflag; retflag=0; if(Do_Retain(f)==0) { if(dolen(f)==1) { for (a=0;a<=nages;a++) { temp=tempvec_a(a); for(z=ALK_range_lo(a);z<=ALK_range_hi(a);z++) { exp_AL(a+A2,L1-1+z)+=temp*ALK(ALK_idx,g,a,z)*sel_l(y,f,gg,z);; // note that A2 and L1 depend on what sex g is } } exp_AL_ret=exp_AL; } else { for (a=0;a<=nages;a++) { temp=tempvec_a(a); for(z=ALK_range_lo(a);z<=ALK_range_hi(a);z++) { exp_AL(a+A2,L1-1+z)+=temp*ALK(ALK_idx,g,a,z); } } } } else // need retain matrix { if(dolen(f)==1) // need retention and length { for (a=0;a<=nages;a++) { temp=tempvec_a(a); temp1=tempvec_a(a)*retain_a(y,f,gg,a); for(z=ALK_range_lo(a);z<=ALK_range_hi(a);z++) { exp_AL(a+A2,L1-1+z)+=temp*ALK(ALK_idx,g,a,z)*sel_l(y,f,gg,z); // note that A2 and L1 depend on what sex g is exp_AL_ret(a+A2,L1-1+z)+=temp1*ALK(ALK_idx,g,a,z)*sel_l(y,f,gg,z)*retain(y,f,L1-1+z); // note that A2 and L1 depend on what sex g is } } } else // need retention, but no length selex { for (a=0;a<=nages;a++) { temp=tempvec_a(a); temp1=tempvec_a(a)*retain_a(y,f,gg,a); for(z=ALK_range_lo(a);z<=ALK_range_hi(a);z++) { exp_AL(a+A2,L1-1+z)+=temp*ALK(ALK_idx,g,a,z); exp_AL_ret(a+A2,L1-1+z)+=temp1*ALK(ALK_idx,g,a,z)*retain(y,f,L1-1+z); } } } } if(Do_Morphcomp) { if(Morphcomp_havedata(f,t,0)>0) { Morphcomp_exp(Morphcomp_havedata(f,t,0),5+GP4(g))+=sum(exp_AL); // total catch of this GP in this season x area } } } //close gmorph loop exp_l_temp=colsum(exp_AL); // total size composition agetemp=rowsum(exp_AL); // total age composition if(do_once==1) echoinput<<"yr "<0) { exp_l_temp_ret=colsum(exp_AL_ret); exp_truea_ret=rowsum(exp_AL_ret); if(do_once==1) echoinput<<" retained size "<0) { j=have_data(ALK_time,f,data_type,1); // for now, only one observations is allowed for surveys switch(Svy_units(f)) { case 1: // biomass { if(WTage_rd==1) // using empirical wt-at-age; note that this cannot use GP specific bodyweights { vbio=0.0; if(Do_Retain(f)==0) // all retained { for (a=0;a<=nages;a++) vbio+=WTage_emp(y,1,f,a)*agetemp(a); if(gender==2) { for (a=0;a<=nages;a++) vbio+=WTage_emp(y,2,f,a)*agetemp(a+nages+1); } } else { for (a=0;a<=nages;a++) vbio+=WTage_emp(y,1,f,a)*exp_truea_ret(a); if(gender==2) { for (a=0;a<=nages;a++) vbio+=WTage_emp(y,2,f,a)*exp_truea_ret(a+nages+1); } } } else { if(Do_Retain(f)==0) { vbio=exp_l_temp*wt_len2(s,1);// biomass TEMPORARY CODE. Using gp=1 wt at length } else { vbio=exp_l_temp_ret*wt_len2(s,1); } } break; } case 0: // numbers { if(Do_Retain(f)==0) { vbio=sum(exp_l_temp); } else { vbio=sum(exp_l_temp_ret); } break; } case 2: // F rate { vbio=Hrate(f,t); break; } case 30: // spawning biomass #30 { if(pop==1 || fleet_area(f)==0) { vbio=SSB_current; } else { vbio=sum(SSB_pop_gp(y,fleet_area(f))); } break; } case 31: // recruitment deviation #31 { if(y>=recdev_start && y<=recdev_end) {vbio=mfexp(recdev(y));} else {vbio=1.0;} break; } case 32: // recruitment without density-dependence (for pre-recruit survey) #32 { if(y>=recdev_start && y<=recdev_end) {vbio=SSB_current*mfexp(recdev(y));} else {vbio=SSB_current;} break; } case 33: // recruitment #33 {vbio=Recruits; break;} case 34: // spawning biomass depletion { if(pop==1 || fleet_area(f)==0) { vbio=(SSB_current+1.0e-06)/(SSB_virgin+1.0e-06); } else { vbio=(sum(SSB_pop_gp(y,fleet_area(f)))+1.0e-06)/(SSB_virgin+1.0e-06); } break; } case 35: // parm deviation #35 { k=Q_setup(f,2); // specify which parameter's time-vary vector will be compared to this survey if(y>=parm_dev_minyr(k) && y<=parm_dev_maxyr(k)) { vbio=parm_dev(k,y); // can the mean dev for years with surveys be calculated here? } else {vbio=0.0;} break; } } Svy_selec_abund(f,j)=value(vbio); // get catchability if(Q_setup(f,1)==2) // mirror Q from lower numbered survey { Svy_log_q(f,j) = Svy_log_q(Q_setup(f,2),1); Q_parm(Q_setup_parms(f,1))=Svy_log_q(f,1); // base Q So this sets parameter equal to the scaling coefficient and can then have a prior } else if(Q_setup(f,1)==4) { Svy_log_q(f,j) = Svy_log_q(Q_setup(f,2),1)+Q_parm(Q_setup_parms(f,1)+1); Q_parm(Q_setup_parms(f,1))=Svy_log_q(f,1); // base Q So this sets parameter equal to the scaling coefficient and can then have a prior } else // Q from parameter { if(Qparm_timevary(Q_setup_parms(f,1))==0) // not time-varying { Svy_log_q(f,j)=Q_parm(Q_setup_parms(f,1)); // set to base parameter value } else { y=Svy_yr(f,j); Svy_log_q(f,j)=parm_timevary(Qparm_timevary(Q_setup_parms(f,1)),y); } } // SS_Label_Info_25.1.3 #log or not if(Svy_errtype(f)==-1) // normal { Svy_q(f) = Svy_log_q(f); // q already in arithmetic space } else // lognormal, or t-distribution in lognormal { Svy_q(f) = mfexp(Svy_log_q(f)); // get q in arithmetic space } // SS_Label_Info_46.1.1 #note order of operations, vbio raised to a power, then constant is added, then later multiplied by Q. Needs work switch (Q_setup(f,1)) { case 2: { // no break, so do same as case 1 } case 4: { // no break, so do same as case 1 } case 1: { if(Q_setup(f,5)==1) // float Q calculated and applied in objfun section { if(Svy_errtype(f)>=0) // lognormal or T-distribution {Svy_est(f,j)=log(vbio+0.000001);} else {Svy_est(f,j)=vbio;} } else { if(Svy_errtype(f)>=0) // lognormal or T-distribution {Svy_est(f,j)=log(vbio+0.000001)+Svy_log_q(f,j);} else {Svy_est(f,j)=vbio*Svy_q(f,j);} } break; } case 3: // link is power function { vbio=pow(vbio,1.0+Q_parm(Q_setup_parms(f,1)+1)); // raise vbio to a power if(Svy_errtype(f)>=0) // lognormal or T-distribution {Svy_est(f,j)=log(vbio+0.000001)+Svy_log_q(f,j);} else {Svy_est(f,j)=vbio*Svy_q(f,j);} break; } } } break; } // end survey index case(2): // DISCARD_OUTPUT /* SS_Label_46.2 expected discard amount */ { j=have_data(ALK_time,f,data_type,0); // number of observations if(j>0) { j=have_data(ALK_time,f,data_type,1); // only getting first observation for now if(catch_ret_obs(f,t)>0.0 || y>endyr) { if(disc_units(f)==3) // numbers regardless of catchunits for retained catch { exp_disc(f,j)=catch_fleet(t,f,4)-catch_fleet(t,f,6); } else if(catchunits(f)==1) // biomass units for retained and discarded catch { exp_disc(f,j)=catch_fleet(t,f,1)-catch_fleet(t,f,3); // discard in biomass if(disc_units(f)==2) exp_disc(f,j) /= (catch_fleet(t,f,1) + 0.0000001); } else // numbers for retained and discarded catch { exp_disc(f,j)=catch_fleet(t,f,4)-catch_fleet(t,f,6); // discard in numbers if(disc_units(f)==2) exp_disc(f,j) /= (catch_fleet(t,f,4) + 0.0000001); } if(exp_disc(f,j)<0.0) warning<0) // number of observations { for (int reps=1;reps<=have_data(ALK_time,f,data_type,0);reps++) { j=have_data(ALK_time,f,data_type,reps); // observation number in overall list z=mnwtdata(5,j); // type 1=length, 2=weight int parti = mnwtdata(4,j); // parrtition: 0=all, 1=discard, 2=retained switch (parti) { case 0: { if(z==2) {exp_mnwt(j) = (exp_l_temp*wt_len2(s,1)) / sum(exp_l_temp);} // total sample else {exp_mnwt(j) = (exp_l_temp*len_bins_m2) / sum(exp_l_temp);} break; } case 1: { if(z==2) exp_mnwt(j) = (exp_l_temp-exp_l_temp_ret)*wt_len2(s,1) / (sum(exp_l_temp)-sum(exp_l_temp_ret)); // discard sample else {exp_mnwt(j) = (exp_l_temp-exp_l_temp_ret)*len_bins_m2 / (sum(exp_l_temp)-sum(exp_l_temp_ret));} break; } case 2: { if(z==2) exp_mnwt(j) = (exp_l_temp_ret*wt_len2(s,1)) / sum(exp_l_temp_ret); // retained only else {exp_mnwt(j) = (exp_l_temp_ret*len_bins_m2) / sum(exp_l_temp_ret);} break; } } } } break; } case(4): // length composition /* SS_Label_46.4 length composition */ { if(have_data(ALK_time,f,data_type,0)>0) { for (j=1;j<=have_data(ALK_time,f,data_type,0);j++) // loop all obs of this type { i=have_data(ALK_time,f,data_type,j); if(LenBin_option>1) { if(mkt_l(f,i)==0) {exp_l(f,i) = make_len_bin*exp_l_temp;} // expected size comp MAtrix * vector = vector else if(mkt_l(f,i)==1) {exp_l(f,i) = make_len_bin*(exp_l_temp-exp_l_temp_ret);} // discard sample else {exp_l(f,i) = make_len_bin*exp_l_temp_ret;} // retained only } else // using data_bins same as pop_bins { if(mkt_l(f,i)==0) {exp_l(f,i) = exp_l_temp;} // expected size comp MAtrix * vector = vector else if(mkt_l(f,i)==1) {exp_l(f,i) = (exp_l_temp-exp_l_temp_ret);} // discard sample else {exp_l(f,i) = exp_l_temp_ret;} // retained only } if(docheckup==1) echoinput<<" len obs "<0) { for (j=1;j<=have_data(ALK_time,f,data_type,0);j++) // loop all obs of this type { i=have_data(ALK_time,f,data_type,j); k=ageerr_type_a(f,i); // age-err type if(use_Lbin_filter(f,i)==0) { // sum across all length bins if(mkt_a(f,i)==0) age_exp = agetemp; if(mkt_a(f,i)==1) age_exp = agetemp-exp_truea_ret; // discard sample if(mkt_a(f,i)==2) age_exp = exp_truea_ret; // retained only } else { // only use ages from specified range of size bins // Lbin_filter is a vector with 0 for unselected size bins and 1 for selected bins if(mkt_a(f,i)==0) age_exp = exp_AL * Lbin_filter(f,i); if(mkt_a(f,i)==1) age_exp = (exp_AL-exp_AL_ret) * Lbin_filter(f,i); // discard sample if(mkt_a(f,i)==2) age_exp = exp_AL_ret * Lbin_filter(f,i); // retained only } exp_a(f,i) = age_age(k) * age_exp; if(docheckup==1) echoinput<<"Lbin "<0) // have some sizefreq data { if(have_data(ALK_time,f,data_type,0)>0) { for (j=1;j<=have_data(ALK_time,f,data_type,0);j++) // loop all obs of this type { iobs=have_data(ALK_time,f,data_type,j); // observation index SzFreqMethod=SzFreq_obs_hdr(iobs,6); SzFreqMethod_seas=nseas*(SzFreqMethod-1)+s; // index that combines sizefreqmethod and season and used in SzFreqTrans if(SzFreq_obs_hdr(iobs,9)>0) // first occurrence of this method at this time is with fleet = f { if(do_once==1 || (MG_active(3)>0 && (timevary_MG(y,3)>0 ))) // calc matrix because wtlen parameters have changed { for (gg=1;gg<=gender;gg++) { if(gg==1) {z1=1;z2=nlength;ibin=0; ibinsave=0;} // female else {z1=nlength1; z2=nlength2; ibin=0; ibinsave=SzFreq_Nbins(SzFreqMethod);} // male topbin=0.; botbin=0.; // NOTE: wt_len_low is calculated separately for each growth pattern (GPat) // but the code below still just uses GPat=1 for calculation of the sizefreq transition matrix switch(SzFreq_units(SzFreqMethod)) // biomass vs. numbers are accumulated in the bins { case(1): // units are biomass, so accumulate body weight into the bins; Assume that bin demarcations are also in biomass { if(SzFreq_Omit_Small(SzFreqMethod)==1) { while(wt_len_low(s,1,z1+1)=z2) { N_warn++; cout<<" EXIT - see warning "<=topbin) { ibin++; ibinsave++; } if(ibin>1) {botbin=SzFreq_bins2(SzFreqMethod,ibin);} if(ibin==SzFreq_Nbins(SzFreqMethod)) { SzFreqTrans(SzFreqMethod_seas,z,ibinsave)=wt_len2(s,1,z); topbin=99999.; } else { topbin=SzFreq_bins2(SzFreqMethod,ibin+1); if(wt_len_low(s,1,z)>=botbin && wt_len_low(s,1,z+1)<=topbin ) { SzFreqTrans(SzFreqMethod_seas,z,ibinsave)=wt_len2(s,1,z); } else { temp=(wt_len_low(s,1,z+1)-topbin)/wt_len_fd(s,1,z); // frac in pop bin above (data bin +1) temp1=wt_len_low(s,1,z)+(1.-temp*0.5)*wt_len_fd(s,1,z); // approx body wt for these fish temp2=wt_len_low(s,1,z)+(1.-temp)*0.5*wt_len_fd(s,1,z); // approx body wt for fish below SzFreqTrans(SzFreqMethod_seas,z,ibinsave+1)=temp*temp1; SzFreqTrans(SzFreqMethod_seas,z,ibinsave)=(1.-temp)*temp2; } } } } if(SzFreq_scale(SzFreqMethod)==2 && gg==gender) // convert to pounds { SzFreqTrans(SzFreqMethod_seas)/=0.4536; } break; } // end of units in biomass // NOTE: even though the transition matrix is currently in units of biomass distribution, there is no need to // normalize to sum to 1.0 here because the normalization will occur after it gets used to create SzFreq_exp case(2): // units are numbers { if(SzFreq_scale(SzFreqMethod)<=2) // bin demarcations are in weight units (1=kg, 2=lbs), so uses wt_len to compare to bins { if(SzFreq_Omit_Small(SzFreqMethod)==1) { while(wt_len_low(s,1,z1+1)=z2) { N_warn++; cout<<" EXIT - see warning "<=topbin) {ibin++; ibinsave++;} //checkup<<" incr ibin "<1) {botbin=SzFreq_bins2(SzFreqMethod,ibin);} if(ibin==SzFreq_Nbins(SzFreqMethod)) // checkup<<" got to last ibin, so put rest of popbins here"<=botbin && wt_len_low(s,1,z+1)<=topbin ) //checkup<<" pop inside dat, put here"<=topbin) {ibin++; ibinsave++;} //checkup<<" incr ibin "<1) {botbin=SzFreq_bins2(SzFreqMethod,ibin);} if(ibin==SzFreq_Nbins(SzFreqMethod)) // checkup<<" got to last ibin, so put rest of popbins here"<=botbin && len_bins2(z+1)<=topbin ) //checkup<<" pop inside dat, put here"<0.0) { SzFreq_exp(iobs)(1,k)+=SzFreq_mincomp(SzFreqMethod); SzFreq_exp(iobs)(1,k)/=sum(SzFreq_exp(iobs)(1,k)); } break; } case(1): // female only { SzFreq_exp(iobs)(k+1,2*k)=0.0; // zero out the males so will not interfere with data generation SzFreq_exp(iobs)(1,k)/=sum(SzFreq_exp(iobs)(1,k)); if(SzFreq_mincomp(SzFreqMethod)>0.0) { SzFreq_exp(iobs)(1,k)+=SzFreq_mincomp(SzFreqMethod); SzFreq_exp(iobs)(1,k)/=sum(SzFreq_exp(iobs)(1,k)); } break; } case(2): // male only { ibin=SzFreq_obs_hdr(iobs,7); SzFreq_exp(iobs)(1,ibin-1)=0.0; // zero out the females so will not interfere with data generation SzFreq_exp(iobs)(ibin,k)/=sum(SzFreq_exp(iobs)(ibin,k)); if(SzFreq_mincomp(SzFreqMethod)>0.0) { SzFreq_exp(iobs)(ibin,k)+=SzFreq_mincomp(SzFreqMethod); SzFreq_exp(iobs)(ibin,k)/=sum(SzFreq_exp(iobs)(ibin,k)); } break; } case(3): // each gender { SzFreq_exp(iobs)/=sum(SzFreq_exp(iobs)); if(SzFreq_mincomp(SzFreqMethod)>0.0) { SzFreq_exp(iobs)+=SzFreq_mincomp(SzFreqMethod); SzFreq_exp(iobs)/=sum(SzFreq_exp(iobs)); } break; } } // end gender switch } // end have 2 genders else { k=SzFreq_obs_hdr(iobs,8); // max bins for this method SzFreq_exp(iobs)(1,k)/=sum(SzFreq_exp(iobs)(1,k)); if(SzFreq_mincomp(SzFreqMethod)>0.0) { SzFreq_exp(iobs)(1,k)+=SzFreq_mincomp(SzFreqMethod); SzFreq_exp(iobs)(1,k)/=sum(SzFreq_exp(iobs)(1,k)); } } if(do_once==1) echoinput<0) { for (j=1;j<=have_data(ALK_time,f,data_type,0);j++) // loop all obs of this type { i=have_data(ALK_time,f,data_type,j); k=abs(ageerr_type_ms(f,i)); // age-err type where the sign selects length vs. weight if(ageerr_type_ms(f,i)>0) // values are length at age { if(mkt_ms(f,i)==0) // total catch { exp_a_temp = age_age(k) * agetemp; // numbers at binned age exp_ms(f,i) = age_age(k) * (exp_AL * len_bins_m2); // numbers * length exp_ms_sq(f,i) = age_age(k) * (exp_AL * len_bins_sq); // numbers * length^2 } if(mkt_ms(f,i)==1) // discard { // exp_a_temp = age_age(k) * (exp_AL * (1-retain(y,f))); // numbers at binned age = age_age(bins,age) * sum(age) // exp_ms(f,i) = age_age(k) * (exp_AL * elem_prod((1-retain(y,f)),len_bins_m2)); // numbers * length // exp_ms_sq(f,i) = age_age(k) * (exp_AL * elem_prod((1-retain(y,f)),len_bins_sq)); // numbers * length^2 exp_a_temp = age_age(k) * (agetemp-exp_truea_ret); exp_ms(f,i) = age_age(k) * ((exp_AL-exp_AL_ret) * len_bins_m2); // numbers * length exp_ms_sq(f,i) = age_age(k) * ((exp_AL-exp_AL_ret) * len_bins_sq); // numbers * length^2 } if(mkt_ms(f,i)==2) // retained { exp_a_temp = age_age(k) * exp_truea_ret; // numbers at binned age = age_age(bins,age) * sum(age) exp_ms(f,i) = age_age(k) * (exp_AL_ret * len_bins_m2); // numbers * length exp_ms_sq(f,i) = age_age(k) * (exp_AL_ret * len_bins_sq); // numbers * length^2 } } else // values are weight at age { if(mkt_ms(f,i)==0) { exp_a_temp = age_age(k) * agetemp; // numbers at binned age = age_age(bins,age) * sum(age) exp_ms(f,i) = age_age(k) * (exp_AL * wt_len2(s,1)); // numbers * bodywt exp_ms_sq(f,i) = age_age(k) * (exp_AL * wt_len2_sq(s,1)); // numbers * bodywt^2 } if(mkt_ms(f,i)==1) { exp_a_temp = age_age(k) * (agetemp-exp_truea_ret); // numbers at binned age = age_age(bins,age) * sum(age) exp_ms(f,i) = age_age(k) * ((exp_AL-exp_AL_ret) * wt_len2(s,1)); // numbers * bodywt exp_ms_sq(f,i) = age_age(k) * ((exp_AL-exp_AL_ret) * wt_len2_sq(s,1)); // numbers * bodywt^2 } if(mkt_ms(f,i)==2) { exp_a_temp = age_age(k) * exp_truea_ret; // numbers at binned age = age_age(bins,age) * sum(age) exp_ms(f,i) = age_age(k) * (exp_AL_ret* wt_len2(s,1)); // numbers * bodywt exp_ms_sq(f,i) = age_age(k) * (exp_AL_ret * wt_len2_sq(s,1)); // numbers * bodywt^2 } } exp_ms(f,i)+=1.0e-6; exp_a_temp+=1.0e-6; exp_ms_sq(f,i)+=1.0e-6; exp_ms_sq(f,i) = sqrt( elem_div( (exp_ms_sq(f,i) - elem_div(elem_prod(exp_ms(f,i),exp_ms(f,i)), exp_a_temp)), exp_a_temp ) ) + 0.000001; //std.err. of size at binned age = sqrt( (P2-P1*P1/P0) / P0 ) exp_ms(f,i) = elem_div(exp_ms(f,i), exp_a_temp); // mean size at binned age } } // endl size-at-age break; } // end mean size-at-age } // end switch(data_type) } // end loop for types of data } } // end loop of fleets } // end loop of subseasons return; } // end function //******************************************************************** /* SS_Label_FUNCTION 25 evaluate_the_objective_function */ FUNCTION void evaluate_the_objective_function() { surv_like.initialize(); Q_dev_like.initialize(); disc_like.initialize(); length_like.initialize(); age_like.initialize(); sizeage_like.initialize(); parm_like.initialize(); parm_dev_like.initialize();noBias_recr_like.initialize(); mnwt_like.initialize(); equ_catch_like.initialize(); recr_like.initialize(); Fcast_recr_like.initialize(); catch_like.initialize(); Morphcomp_like.initialize(); TG_like1.initialize(); TG_like2.initialize(); length_like_tot.initialize(); age_like_tot.initialize(); obj_fun=0.0; int k_phase=current_phase(); int fs; if(k_phase>max_lambda_phase) k_phase=max_lambda_phase; //Q_setup for 3.30 // 1: link type // 2: extra input for link, i.e. mirror fleet // 3: 0/1 to select extra sd parameter // 4: 0/1 for biasadj or not // 5: 0/1 to float k=4; // Link types // 1 simple q, 1 parm // 2 mirror simple q, 1 mirrored parameter // 3 q and power, 2 parm if(Svy_N>0) { for (f=1;f<=Nfleet;f++) if(surv_lambda(f,k_phase)>0.0 || save_for_report>0) // skip if zero emphasis { if(Svy_N_fleet(f)>0) { Svy_se_use(f) = Svy_se(f); if(Q_setup(f,3)>0) { Svy_se_use(f)+=Q_parm(Q_setup_parms(f,2)); // add extra stderr } // SS_Label_Info_25.1.1 #combine for super-periods for (j=1;j<=Svy_super_N(f);j++) { temp=0.0; for (i=Svy_super_start(f,j);i<=Svy_super_end(f,j);i++) {temp+=Svy_est(f,i)*Svy_super_weight(f,i);} // combine across range of observations // sampwt sums to 1.0, so temp contains the weighted average for (i=Svy_super_start(f,j);i<=Svy_super_end(f,j);i++) {Svy_est(f,i)=temp;} // assign average to each obs } // SS_Label_Info_25.1.2 #apply catchability, Q if(Q_setup(f,5)>0 ) // do float Q { // NOTE: cannot use float option if error type is normal temp=0.; temp1=0.; temp2=0.; Svy_log_q(f)=0.0; Svy_q(f)=0.0; for (i=1;i<=Svy_N_fleet(f);i++) { if(Svy_use(f,i) > 0) { temp2 += (Svy_obs_log(f,i)-Svy_est(f,i))/square(Svy_se_use(f,i)); temp += 1.0/square(Svy_se_use(f,i)); temp1 += 1.; } } if(Q_setup(f,4)==0) // mean q, with nobiasadjustment { Svy_log_q(f) =temp2/temp; Svy_est(f) += temp2/temp; } else // for value = 1 or 5 // mean q with variance bias adjustment { Svy_log_q(f) = (temp2 + temp1*0.5)/temp; Svy_est(f) += (temp2 + temp1*0.5)/temp; } Q_parm(Q_setup_parms(f,1))=Svy_log_q(f,1); // base Q So this sets parameter equal to the scaling coefficient and can then have a prior if(Svy_errtype(f)==-1) // normal { Svy_q(f) = Svy_log_q(f); // q already in arithmetic space } else { Svy_q(f) = mfexp(Svy_log_q(f)); // get q in arithmetic space } } /* else if(Q_setup(f,1)==2) // mirror Q from lower numbered survey // because Q is a vector for each observation, the mirror is to the first observation's Q // so time-varying property cannot be mirrored {Svy_log_q(f) = Svy_log_q(Q_setup(f,2),1);} else // Q from parameter // add code here for more link options // NOTE: if Q_setup(f,1)==3 then the power function is used in SS_expval to adjust svy_exp by that function // probably better to move this Q parameter code to right after the call to SS_timevaryparm and to keep only the Q float code here { if(Qparm_timevary(Q_setup_parms(f,1))==0) // not time-varying { Svy_log_q(f)=Q_parm(Q_setup_parms(f,1)); // set to base parameter value } else { for(j=1;j<=Svy_N_fleet(f);j++) { y=Svy_yr(f,j); Svy_log_q(f,j)=parm_timevary(Qparm_timevary(Q_setup_parms(f,1)),y); } } } // SS_Label_Info_25.1.3 #log or not */ // SS_Label_Info_25.1.4 #calc the logL if(Svy_errtype(f)==0) // lognormal { for (i=1;i<=Svy_N_fleet(f);i++) if(Svy_use(f,i)>0) { surv_like(f) +=0.5*square( ( Svy_obs_log(f,i)-Svy_est(f,i)) / Svy_se_use(f,i)) + sd_offset*log(Svy_se_use(f,i)); // should add a term for 0.5*s^2 for bias adjustment so that parameter approach will be same as the biasadjusted scaling approach } } else if (Svy_errtype(f)>0) // t-distribution { dvariable df = Svy_errtype(f); for (i=1;i<=Svy_N_fleet(f);i++) if(Svy_use(f,i)>0) { surv_like(f) +=((df+1.)/2.)*log((1.+square((Svy_obs_log(f,i)-Svy_est(f,i) ))/(df*square(Svy_se_use(f,i))) )) + sd_offset*log(Svy_se_use(f,i)); } } else if(Svy_errtype(f)==-1) // normal { for (i=1;i<=Svy_N_fleet(f);i++) { if(Svy_use(f,i)>0) { surv_like(f) +=0.5*square( ( Svy_obs(f,i)-Svy_est(f,i) ) / Svy_se_use(f,i)) + sd_offset*log(Svy_se_use(f,i)); } } } } // end having obs for this survey } if(do_once==1) cout<<" did survey obj_fun "<0) { for (f=1;f<=Nfleet;f++) if(disc_lambda(f,k_phase)>0.0 || save_for_report>0) { if(disc_N_fleet(f)>0) { for (j=1;j<=N_suprper_disc(f);j++) // do super years { temp=0.0; for (i=suprper_disc1(f,j);i<=suprper_disc2(f,j);i++) {temp+=exp_disc(f,i)*suprper_disc_sampwt(f,i);} // combine across range of observations for (i=suprper_disc1(f,j);i<=suprper_disc2(f,j);i++) {exp_disc(f,i)=temp;} // assign back to each obs } if(disc_errtype(f)>=1) // T -distribution { for (i=1;i<=disc_N_fleet(f);i++) if(yr_disc_use(f,i)>=0.0) { disc_like(f) +=0.5*(disc_errtype(f)+1.)*log((1.+square(obs_disc(f,i)-exp_disc(f,i))/(disc_errtype(f)*square(sd_disc(f,i))) )) + sd_offset*log(sd_disc(f,i)); } } else if (disc_errtype(f)==0) // normal error, with input CV { for (i=1;i<=disc_N_fleet(f);i++) if(yr_disc_use(f,i)>=0.0) { disc_like(f) +=0.5*square( (obs_disc(f,i)-exp_disc(f,i)) / sd_disc(f,i)) + sd_offset*log(sd_disc(f,i)); } } else if (disc_errtype(f)==-1) // normal error with input se { for (i=1;i<=disc_N_fleet(f);i++) if(yr_disc_use(f,i)>=0.0) { disc_like(f) +=0.5*square( (obs_disc(f,i)-exp_disc(f,i)) / sd_disc(f,i)) + sd_offset*log(sd_disc(f,i)); } } else if (disc_errtype(f)==-2) // lognormal where input cv_disc must contain se in log space { for (i=1;i<=disc_N_fleet(f);i++) if(yr_disc_use(f,i)>=0.0) { disc_like(f) +=0.5*square( log(obs_disc(f,i)/exp_disc(f,i)) / sd_disc(f,i)) + sd_offset*log(sd_disc(f,i)); } } else if (disc_errtype(f)==-3) // trunc normal error, with input CV { for (i=1;i<=disc_N_fleet(f);i++) if(yr_disc_use(f,i)>=0.0) { disc_like(f) +=0.5*square( (obs_disc(f,i)-exp_disc(f,i) ) / sd_disc(f,i)) - log(cumd_norm( (1 - exp_disc(f,i)) / sd_disc(f,i) ) - cumd_norm( (0 - exp_disc(f,i)) / sd_disc(f,i) )); } } else { N_warn++; cout<<" EXIT - see warning "<=1"<0) { for (i=1;i<=nobs_mnwt;i++) if(mnwtdata(3,i)>0.) { mnwt_like(mnwtdata(3,i)) +=0.5*(DF_bodywt+1.)*log(1.+square(mnwtdata(6,i)-exp_mnwt(i))/mnwtdata(9,i))+ mnwtdata(10,i); } if(do_once==1) cout<<" did meanwt obj_fun "<0) { for (f=1;f<=Nfleet;f++) if(length_lambda(f,k_phase)>0.0 || save_for_report>0) { if(Nobs_l(f)>=1) { for (j=1;j<=N_suprper_l(f);j++) // do each super period { exp_l_temp_dat.initialize(); for (i=suprper_l1(f,j);i<=suprper_l2(f,j);i++) { exp_l_temp_dat+=exp_l(f,i)*suprper_l_sampwt(f,i); // combine across range of observations } // exp_l_temp_dat/=sum(exp_l_temp_dat); // normalize not needed because converted to proportions later for (i=suprper_l1(f,j);i<=suprper_l2(f,j);i++) { exp_l(f,i)=exp_l_temp_dat; // assign back to all obs } } for (i=1;i<=Nobs_l(f);i++) { length_like(f,i) = -offset_l(f,i); // so a perfect fit will approach 0.0 if(gender==2) { if(gen_l(f,i)==0) { for (z=1;z<=nlen_bin;z++) {exp_l(f,i,z)+=exp_l(f,i,z+nlen_bin);} exp_l(f,i)(nlen_binP,nlen_bin2)=0.00; } else if(gen_l(f,i)==1) // female only {exp_l(f,i)(nlen_binP,nlen_bin2)=0.00;} else if(gen_l(f,i)==2) // male only {exp_l(f,i)(1,nlen_bin)=0.00;} else if(gen_l(f,i)==3 && CombGender_L(f)>0) { for (z=1;z<=CombGender_L(f);z++) {exp_l(f,i,z)+=exp_l(f,i,z+nlen_bin); exp_l(f,i,z+nlen_bin)=0.00;} } } exp_l(f,i) /= sum(exp_l(f,i)); tails_w=ivector(tails_l(f,i)); if(gen_l(f,i)!=2) { if(tails_w(1)>1) {exp_l(f,i,tails_w(1))=sum(exp_l(f,i)(1,tails_w(1))); exp_l(f,i)(1,tails_w(1)-1)=0.;} if(tails_w(2)=2) { if(tails_w(3)>nlen_binP) {exp_l(f,i,tails_w(3))=sum(exp_l(f,i)(nlen_binP,tails_w(3))); exp_l(f,i)(nlen_binP,tails_w(3)-1)=0.;} if(tails_w(4)0 || save_for_report==1) { if(Comp_Err_L(f)==0) // multinomial { // get female or combined sex logL if(gen_l(f,i) !=2) length_like(f,i) -= nsamp_l(f,i) * obs_l(f,i)(tails_w(1),tails_w(2)) * log(exp_l(f,i)(tails_w(1),tails_w(2))); // add male logL if(gen_l(f,i) >=2 && gender==2) length_like(f,i) -= nsamp_l(f,i) * obs_l(f,i)(tails_w(3),tails_w(4)) * log(exp_l(f,i)(tails_w(3),tails_w(4))); } else // dirichlet { // from Thorson: NLL -= gammln(A) - gammln(ninput_t(t)+A) + sum(gammln(ninput_t(t)*extract_row(pobs_ta,t) + A*extract_row(pexp_ta,t))) - sum(lgamma(A*extract_row(pexp_ta,t))) \ // dirichlet_Parm=mfexp(selparm(Comp_Err_Parm_Start+Comp_Err_L2(f)))*nsamp_l(f,i); if(Comp_Err_L(f)==1) dirichlet_Parm=mfexp(selparm(Comp_Err_Parm_Start+Comp_Err_L2(f)))*nsamp_l(f,i); if(Comp_Err_L(f)==2) dirichlet_Parm=mfexp(selparm(Comp_Err_Parm_Start+Comp_Err_L2(f))); // dirichlet_Parm=mfexp(selparm(Comp_Err_Parm_Start+Comp_Err_L2(f))); temp = gammln(dirichlet_Parm) - gammln(nsamp_l(f,i)+dirichlet_Parm); // get female or combined sex logL if(gen_l(f,i) !=2) // so not male only { temp+=sum(gammln(nsamp_l(f,i)* obs_l(f,i)(tails_w(1),tails_w(2)) + dirichlet_Parm*exp_l(f,i)(tails_w(1),tails_w(2)))); temp-=sum(gammln(dirichlet_Parm*exp_l(f,i)(tails_w(1),tails_w(2)))); } // add male logL if(gen_l(f,i) >=2 && gender==2) { temp+=sum(gammln(nsamp_l(f,i)* obs_l(f,i)(tails_w(3),tails_w(4)) + dirichlet_Parm*exp_l(f,i)(tails_w(3),tails_w(4)))); temp-=sum(gammln(dirichlet_Parm*exp_l(f,i)(tails_w(3),tails_w(4)))); } length_like(f,i)-=temp; } if(header_l(f,i,3)>0) length_like_tot(f)+=length_like(f,i); } } } } if(do_once==1) cout<<" did lencomp obj_fun " <0) { for (f=1;f<=Nfleet;f++) if(age_lambda(f,k_phase)>0.0 || save_for_report>0) { if(Nobs_a(f)>=1) { for (j=1;j<=N_suprper_a(f);j++) // do super years Max of 20 allowed per type(f) { exp_a_temp.initialize(); for (i=suprper_a1(f,j);i<=suprper_a2(f,j);i++) { exp_a_temp+=exp_a(f,i)*suprper_a_sampwt(f,i); // combine across range of observations } // exp_a_temp/=(1.0e-15+sum(exp_a_temp)); // normalize for (i=suprper_a1(f,j);i<=suprper_a2(f,j);i++) exp_a(f,i)=exp_a_temp; // assign back to each original obs } for (i=1;i<=Nobs_a(f);i++) { age_like(f,i) = -offset_a(f,i); // so a perfect fit will approach 0.0 if(gender==2) { if(gen_a(f,i)==0) // combined sex observation { for (z=1;z<=n_abins;z++) {exp_a(f,i,z)+=exp_a(f,i,z+n_abins);} exp_a(f,i)(n_abins1,n_abins2)=0.00; } else if(gen_a(f,i)==1) // female only {exp_a(f,i)(n_abins1,n_abins2)=0.00;} else if(gen_a(f,i)==2) // male only {exp_a(f,i)(1,n_abins)=0.00;} else if(gen_a(f,i)==3 && CombGender_A(f)>0) { for (z=1;z<=CombGender_A(f);z++) {exp_a(f,i,z)+=exp_a(f,i,z+n_abins); exp_a(f,i,z+n_abins)=0.00;} } } exp_a(f,i) /= (1.0e-15+sum(exp_a(f,i))); // proportion at binned age tails_w=ivector(tails_a(f,i)); if(gen_a(f,i)!=2) { if(tails_w(1)>1) {exp_a(f,i,tails_w(1))=sum(exp_a(f,i)(1,tails_w(1))); exp_a(f,i)(1,tails_w(1)-1)=0.;} if(tails_w(2)=2) { if(tails_w(3)>n_abins1) {exp_a(f,i,tails_w(3))=sum(exp_a(f,i)(n_abins1,tails_w(3))); exp_a(f,i)(n_abins1,tails_w(3)-1)=0.;} if(tails_w(4)0 || save_for_report==1) { if(Comp_Err_A(f)==0) // multinomial { if(gen_a(f,i) !=2) age_like(f,i) -= nsamp_a(f,i) * obs_a(f,i)(tails_w(1),tails_w(2)) * log(exp_a(f,i)(tails_w(1),tails_w(2))); if(gen_a(f,i) >=2 && gender==2) age_like(f,i) -= nsamp_a(f,i) * obs_a(f,i)(tails_w(3),tails_w(4)) * log(exp_a(f,i)(tails_w(3),tails_w(4))); } else // dirichlet { // from Thorson: NLL -= gammln(A) - gammln(ninput_t(t)+A) + sum(gammln(ninput_t(t)*extract_row(pobs_ta,t) + A*extract_row(pexp_ta,t))) - sum(lgamma(A*extract_row(pexp_ta,t))) \ // dirichlet_Parm=mfexp(selparm(Comp_Err_Parm_Start+Comp_Err_A2(f)))*nsamp_a(f,i); if(Comp_Err_A(f)==1) dirichlet_Parm=mfexp(selparm(Comp_Err_Parm_Start+Comp_Err_A2(f)))*nsamp_a(f,i); if(Comp_Err_A(f)==2) dirichlet_Parm=mfexp(selparm(Comp_Err_Parm_Start+Comp_Err_A2(f))); // dirichlet_Parm=mfexp(selparm(Comp_Err_Parm_Start+Comp_Err_A2(f))); temp = gammln(dirichlet_Parm) - gammln(nsamp_a(f,i)+dirichlet_Parm); // get female or combined sex logL if(gen_a(f,i) !=2) // so not male only { temp+=sum(gammln(nsamp_a(f,i)* obs_a(f,i)(tails_w(1),tails_w(2)) + dirichlet_Parm*exp_a(f,i)(tails_w(1),tails_w(2)))); temp-=sum(gammln(dirichlet_Parm*exp_a(f,i)(tails_w(1),tails_w(2)))); } // add male logL if(gen_a(f,i) >=2 && gender==2) { temp+=sum(gammln(nsamp_a(f,i)* obs_a(f,i)(tails_w(3),tails_w(4)) + dirichlet_Parm*exp_a(f,i)(tails_w(3),tails_w(4)))); temp-=sum(gammln(dirichlet_Parm*exp_a(f,i)(tails_w(3),tails_w(4)))); } age_like(f,i)-=temp; } } if(header_a(f,i,3)>0) age_like_tot(f)+=age_like(f,i); } } } if(do_once==1) cout<<" did agecomp obj_fun "<0) { for (f=1;f<=Nfleet;f++) if(Nobs_ms(f)>0 && sizeage_lambda(f,k_phase)>0.0) { for (j=1;j<=N_suprper_ms(f);j++) { exp_a_temp.initialize(); for (i=suprper_ms1(f,j);i<=suprper_ms2(f,j);i++) {exp_a_temp+=exp_ms(f,i)*suprper_ms_sampwt(f,i);} // combine across range of observations for (i=suprper_ms1(f,j);i<=suprper_ms2(f,j);i++) exp_ms(f,i)=exp_a_temp; // assign back to each original obs } for (i=1;i<=Nobs_ms(f);i++) if(header_ms(f,i,3)>0) { for (b=1;b<=n_abins2;b++) { if(obs_ms_n(f,i,b)>0 && obs_ms(f,i,b)>0) { sizeage_like(f) += 0.5*square((obs_ms(f,i,b) -exp_ms(f,i,b)) / (exp_ms_sq(f,i,b)/obs_ms_n(f,i,b))) + sd_offset*log(exp_ms_sq(f,i,b)/obs_ms_n(f,i,b)); // where: obs_ms_n(f,i,b)=sqrt(var_adjust(6,f)*obs_ms_n(f,i,b)); } } } } if(do_once==1) cout<<" did meanlength obj_fun "<0) // have some sizefreq data { // create super-period expected values for (j=1;j<=N_suprper_SzFreq;j++) { a=suprper_SzFreq_start(j); // get observation index SzFreq_exp(a)*=suprper_SzFreq_sampwt(a); // start creating weighted average for (iobs=a+1;iobs<=suprper_SzFreq_end(j);iobs++) {SzFreq_exp(a)+=SzFreq_exp(iobs)*suprper_SzFreq_sampwt(iobs);} // combine into the first obs of this superperiod for (iobs=a+1;iobs<=suprper_SzFreq_end(j);iobs++) {SzFreq_exp(iobs)=SzFreq_exp(a);} // assign back to all obs } SzFreq_like=-SzFreq_like_base; // initializes for (iobs=1;iobs<=SzFreq_totobs;iobs++) { if(SzFreq_obs_hdr(iobs,3)>0) { k=SzFreq_obs_hdr(iobs,6); f=abs(SzFreq_obs_hdr(iobs,3)); z1=SzFreq_obs_hdr(iobs,7); z2=SzFreq_obs_hdr(iobs,8); SzFreq_like(SzFreq_LikeComponent(f,k))-=SzFreq_sampleN(iobs)*SzFreq_obs(iobs)(z1,z2)*log(SzFreq_exp(iobs)(z1,z2)); } } if(do_once==1) cout<<" did sizefreq obj_fun: "<0) { for (iobs=1;iobs<=Morphcomp_nobs;iobs++) { k=5+Morphcomp_nmorph; Morphcomp_exp(iobs)(6,k) /= sum(Morphcomp_exp(iobs)(6,k)); Morphcomp_exp(iobs)(6,k) += Morphcomp_mincomp; Morphcomp_exp(iobs)(6,k) /= 1.+Morphcomp_mincomp*Morphcomp_nmorph; if(Morphcomp_obs(iobs,5)>0.) Morphcomp_like -= Morphcomp_obs(iobs,5)*Morphcomp_obs(iobs)(6,k) * log(elem_div(Morphcomp_exp(iobs)(6,k),Morphcomp_obs(iobs)(6,k))); } if(do_once==1) cout<<" did morphcomp obj_fun "<0) { for (TG=1;TG<=N_TG;TG++) { overdisp=TG_parm(2*N_TG+TG); for (TG_t=TG_mixperiod;TG_t<=TG_endtime(TG);TG_t++) { TG_recap_exp(TG,TG_t)(1,Nfleet)+=1.0e-6; // add a tiny amount TG_recap_exp(TG,TG_t,0) = sum(TG_recap_exp(TG,TG_t)(1,Nfleet)); TG_recap_exp(TG,TG_t)(1,Nfleet)/=TG_recap_exp(TG,TG_t,0); if(Nfleet>1) TG_like1(TG)-=TG_recap_obs(TG,TG_t,0)* (TG_recap_obs(TG,TG_t)(1,Nfleet) * log(TG_recap_exp(TG,TG_t)(1,Nfleet))); TG_like2(TG)-=log_negbinomial_density(TG_recap_obs(TG,TG_t,0),TG_recap_exp(TG,TG_t,0),overdisp); } } if(do_once==1) cout<<" did tag obj_fun "<0.0) { for (s=1;s<=nseas;s++) for (f=1;f<=Nfleet;f++) { if(fleet_type(f)==1 && obs_equ_catch(s,f)>0.0) {equ_catch_like += 0.5*square( (log(1.1*obs_equ_catch(s,f)) -log(est_equ_catch(s,f)*catch_mult(styr-1,f)+0.1*obs_equ_catch(s,f))) / catch_se(styr-1,f));} } if(do_once==1) cout<<" initequ_catch -log(L) "<1) { for (f=1;f<=Nfleet;f++) { if(catchunits(f)==1) {i=3;} // biomass else {i=6;} // numbers for (y=styr;y<=endyr;y++) for(s=1;s<=nseas;s++) { t=styr+(y-styr)*nseas-1+s; if(fleet_type(f)==1 && catch_ret_obs(f,t)>0.0) { // catch_like(f) += 0.5*square( (log(catch_ret_obs(f,t)) -log(catch_fleet(t,f,i)+0.000001)) / catch_se(t,f)); temp=catch_like(f); catch_like(f) += 0.5*square( (log(1.1*catch_ret_obs(f,t)) -log(catch_fleet(t,f,i)*catch_mult(y,f)+0.1*catch_ret_obs(f,t))) / catch_se(t,f)); // if(f==2) warning<0) // for (i=styr_rec+1;i<=endyr;i++) // rec_like(1) += square((chi(i)- rho*chi(i-1)) /(sqrt(1.-rho*rho))) / (2.*sigmaRsq) + log(sigr); // else // rec_like(1) = (norm2( chi + sigmaRsq/2. ) / (2*sigmaRsq)) / (2.*sigmaRsq) + size_count(chi)*log(sigr); if(recrdev_lambda(k_phase)>0.0 && (do_recdev>0 || recdev_do_early>0) ) { recr_like = sd_offset_rec*log(sigmaR); // where sd_offset_rec takes account for the number of recruitment years fully estimated // this is calculated as the sum of the biasadj vector if(do_recdev<3) { if(SR_autocorr==0) { recr_like += norm2(recdev(recdev_first,recdev_end))/two_sigmaRsq; } else { rho=SR_parm(N_SRparm2); recr_like += square(recdev(recdev_first))/two_sigmaRsq; for (y=recdev_first+1;y<=recdev_end;y++) { recr_like += square(recdev(y)-rho*recdev(y-1)) / ((1.0-rho*rho)*two_sigmaRsq); } } sum_recdev=sum(recdev); } else { rho=SR_parm(N_SRparm2); dvariable dev; dvariable dev_last; if(recdev_first>=styr) { dev_last=log(exp_rec(recdev_first,4)/exp_rec(recdev_first,3)); } else { dev_last=recdev(recdev_first); // so use devs for initial agecomp directly } recr_like += square(dev_last)/two_sigmaRsq; sum_recdev=dev_last; for (y=recdev_first+1;y<=recdev_end;y++) { if(y>=styr) { dev=log(exp_rec(y,4)/exp_rec(y,3)); } else { dev=recdev(y); // so use devs for initial agecomp directly } recr_like += square(dev-rho*dev_last) / ((1.0-rho*rho)*two_sigmaRsq); dev_last=dev; sum_recdev+=dev; // get sum of devs } } noBias_recr_like=recr_like-sd_offset_rec*log(sigmaR)+(recdev_end-recdev_first+1.)*log(sigmaR); regime_like = 0.5 * square( log(R1/R1_exp) / (sigmaR/ave_age) ); if(do_recdev==4) regime_like+=square(sum_recdev); if(do_once==1) cout<<" did recruitdev obj_fun "<0) { if(recdev_end0) Fcast_recr_like+=(norm2(Fcast_impl_error(endyr+1,YrMax)))/(2.0*Impl_Error_Std*Impl_Error_Std); // implementation error if(SR_autocorr==0) { Fcast_recr_like += (norm2(Fcast_recruitments(endyr+1,YrMax)))/two_sigmaRsq; } else { Fcast_recr_like += square(Fcast_recruitments(recdev_end+1)-rho*recdev(recdev_end)) / ((1.0-rho*rho)*two_sigmaRsq); // for the transition year for(y=recdev_end+2;y<=YrMax;y++) {Fcast_recr_like += square(Fcast_recruitments(y)-rho*Fcast_recruitments(y-1)) / ((1.0-rho*rho)*two_sigmaRsq);} } } // SS_Label_Info_25.13 #Penalty for the parameter priors dvariable mu; dvariable tau; dvariable Aprior; dvariable Bprior; int Ptype; dvariable Pconst; Pconst=0.0001; if(parm_prior_lambda(k_phase)>0.0 || Do_all_priors>0) { for (i=1;i<=N_MGparm2;i++) if(MGparm_PRtype(i)>0 && (active(MGparm(i))|| Do_all_priors>0)) { MGparm_Like(i)=Get_Prior(MGparm_PRtype(i), MGparm_LO(i), MGparm_HI(i), MGparm_PR(i), MGparm_CV(i), MGparm(i)); parm_like+=MGparm_Like(i); } for (i=1;i<=N_init_F;i++) if(init_F_PRtype(i)>0 && (active(init_F(i))|| Do_all_priors>0)) { init_F_Like(i)=Get_Prior(init_F_PRtype(i), init_F_LO(i), init_F_HI(i), init_F_PR(i), init_F_CV(i), init_F(i)); parm_like+=init_F_Like(i); } for (i=1;i<=Q_Npar2;i++) if(Q_parm_PRtype(i)>0 && (active(Q_parm(i))|| Do_all_priors>0)) { Q_parm_Like(i)=Get_Prior(Q_parm_PRtype(i), Q_parm_LO(i), Q_parm_HI(i), Q_parm_PR(i), Q_parm_CV(i), Q_parm(i)); parm_like+=Q_parm_Like(i); } for (i=1;i<=N_selparm2;i++) if(selparm_PRtype(i)>0 && (active(selparm(i))|| Do_all_priors>0)) { selparm_Like(i)=Get_Prior(selparm_PRtype(i), selparm_LO(i), selparm_HI(i), selparm_PR(i), selparm_CV(i), selparm(i)); parm_like+=selparm_Like(i); } if(Do_TG>0) { k=3*N_TG+2*Nfleet1; for (i=1;i<=k;i++) if(TG_parm2(i,5)>0 && (active(TG_parm(i))|| Do_all_priors>0)) { TG_parm_Like(i)=Get_Prior(TG_parm2(i,6), TG_parm_LO(i), TG_parm_HI(i), TG_parm2(i,4), TG_parm2(i,5), TG_parm(i)); parm_like+=TG_parm_Like(i); } } for (i=1;i<=N_SRparm3;i++) if(SR_parm_PRtype(i)>0 && (active(SR_parm(i))|| Do_all_priors>0)) { SR_parm_Like(i)=Get_Prior(SR_parm_PRtype(i), SR_parm_LO(i), SR_parm_HI(i), SR_parm_PR(i), SR_parm_CV(i), SR_parm(i)); parm_like+=SR_parm_Like(i); } // SS_Label_Info_25.14 #logL for recdev_cycle if(recdev_cycle>0) { temp=0.0; temp1=0.0; for (i=1;i<=recdev_cycle;i++) { if(recdev_cycle_parm_RD(i,5)>0 && (active(recdev_cycle_parm(i))|| Do_all_priors>0)) { recdev_cycle_Like(i)=Get_Prior(recdev_cycle_parm_RD(i,6), recdev_cycle_parm_RD(i,1), recdev_cycle_parm_RD(i,2), recdev_cycle_parm_RD(i,4), recdev_cycle_parm_RD(i,5), recdev_cycle_parm(i)); parm_like+=recdev_cycle_Like(i); temp+=mfexp(recdev_cycle_parm(i)); temp1+=1.0; } } temp-=temp1; parm_like+=10000.*temp*temp; // similar to ADMB's approach to getting zero-centered dev_vectors } } // SS_Label_Info_25.15 #logL for parameter process errors (devs) { for(i=1;i<=N_parm_dev;i++) { if(parm_dev_lambda(k_phase)>0.0) { if(parm_dev_type(i)==1) // in timevary the adjusted parm is: p'=p+dev*se; so assumes that the devs are distributed as unit normal /* { dvariable temp; // temp=1.00 / (2.000*(1.0-parm_dev_rho(i)*parm_dev_rho(i))*square(parm_dev_stddev(i))); temp=1.00 / (2.000*(1.0-parm_dev_rho(i)*parm_dev_rho(i))*square(1.00)); parm_dev_like(i,1) += square( parm_dev(i,parm_dev_minyr(i))); // first year for(j=parm_dev_minyr(i)+1;j<=parm_dev_maxyr(i);j++) {parm_dev_like(i,1) += square( parm_dev(i,j)-parm_dev_rho(i)*parm_dev(i,j-1) );} parm_dev_like(i,1) *=temp; parm_dev_like(i,2) += float(parm_dev_maxyr(i)-parm_dev_minyr(i)+1.)*log(parm_dev_stddev(i)); // include parm_dev_like(i,2) in the total, or not, using sd_offset } */ { dvariable temp; if(parm_dev_use_rho(i)==0) // no rho { temp=0.5; // temp=1.00 / (2.000*square(1.0)); parm_dev_like(i,1) = square( parm_dev(i,parm_dev_minyr(i))); // first year for(j=parm_dev_minyr(i)+1;j<=parm_dev_maxyr(i);j++) {parm_dev_like(i,1) += square(parm_dev(i,j));} } else { temp = 0.5/((1.0-parm_dev_rho(i)*parm_dev_rho(i))); // temp=1.00 / (2.000*(1.0-parm_dev_rho(i)*parm_dev_rho(i))*square(1.0)); parm_dev_like(i,1) += square( parm_dev(i,parm_dev_minyr(i))); // first year for(j=parm_dev_minyr(i)+1;j<=parm_dev_maxyr(i);j++) {parm_dev_like(i,1) += square( parm_dev(i,j)-parm_dev_rho(i)*(parm_dev(i,j-1)) );} } parm_dev_like(i,1) *=temp; parm_dev_like(i,2) =0.0; // += float(parm_dev_maxyr(i)-parm_dev_minyr(i)+1.)*log(1.0); // parm_dev_like(i,2), is included in the total parm_dev_like by user setting: sd_offset=1.0 } else if(parm_dev_type(i)==3) // for testing only and compatibility with 3.30.12 and earlier 3.30 { dvariable temp; temp=1.00 / (2.000*(1.0-parm_dev_rho(i)*parm_dev_rho(i))*square(1.00)); parm_dev_like(i,1) += square( parm_dev(i,parm_dev_minyr(i))); // first year for(j=parm_dev_minyr(i)+1;j<=parm_dev_maxyr(i);j++) {parm_dev_like(i,1) += square( parm_dev(i,j)-parm_dev_rho(i)*parm_dev(i,j-1) );} parm_dev_like(i,1) *=temp; parm_dev_like(i,2) += float(parm_dev_maxyr(i)-parm_dev_minyr(i)+1.)*log(parm_dev_stddev(i)); // include parm_dev_like(i,2) in the total, or not, using sd_offset } else // 2D_AR devs { f=parm_dev_info(i); // pointer from list of devvectors to 2DAR list dvariable sigmasel=selparm(TwoD_AR_def[f](13)); parm_dev_stddev(i)=sigmasel; parm_dev_rho(i)=0.0; parm_dev_like(i,1)-=-0.5*log(det_cor(f)); if(TwoD_AR_def[f](6)==TwoD_AR_def[f](4)) // only one sigmasel by age { // nll -= - 0.5*log(det(cor)) - 0.5*nages*nyears*log(2.0*PI ) - 0.5*S_hat_vec*inv(cor)*S_hat_vec/pow(sigmaS,2) - 0.5*2*nages*nyears*log(sigmaS); if(TwoD_AR_def[f](7)==0) // do not use rho { parm_dev_like(i,1)-= - 0.5*TwoD_AR_degfree(f)*log(2.0*PI ) - 0.5*sumsq(parm_dev(i))/pow(sigmasel,2); parm_dev_like(i,2)-= - TwoD_AR_degfree(f)*log(sigmasel); } else { parm_dev_like(i,1)-= - 0.5*TwoD_AR_degfree(f)*log(2.0*PI ) - 0.5*parm_dev(i)*inv_cor(f)*parm_dev(i)/pow(sigmasel,2); parm_dev_like(i,2)-= - TwoD_AR_degfree(f)*log(sigmasel); } } else // some age-specific sigmasel // note that devs are organized as list with age nested within year { int devcnt; for (a=TwoD_AR_def[f](4); a<=TwoD_AR_def[f](5);a++) { dvariable sigmasel=selparm(TwoD_AR_def[f](13)+min(a,TwoD_AR_def[f](6))-TwoD_AR_def[f](4)); dvariable degfree = TwoD_AR_degfree(f)/(TwoD_AR_def[f](5)-TwoD_AR_def[f](4)+1.0); // df per age // if(TwoD_AR_def[f](7)==0) // do not use rho { parm_dev_like(i,1)-= - 0.5*degfree*log(2.0*PI ); parm_dev_like(i,2)-= - degfree*log(sigmasel); temp=0.0; devcnt=a-TwoD_AR_def[f](4)+1.0; // dev counter in first year j=TwoD_AR_def[f](5)-TwoD_AR_def[f](4)+1; // n ages for(int y=TwoD_AR_def[f](2); y<=TwoD_AR_def[f](3);y++) { temp+=square(parm_dev(i,devcnt)); // ignore rho for now; need indexing for inv_cor() devcnt+=j; } parm_dev_like(i,1)-= - 0.5*temp/(sigmasel*sigmasel); } } // nll -= - 0.5*log(det(cor)) - 0.5*nages*nyears*log(2.0*PI ) - 0.5*S_hat_vec*inv(cor)*S_hat_vec/pow(sigmaS,2) - 0.5*2*nages*nyears*log(sigmaS); } } } } } for (f=1;f<=Nfleet;f++) if(Q_setup(f,4)==3) { // parm_dev_like += Q_dev_like(f,1); // mean component for dev approach (var component is already in the parm priors) // do not include for randwalk (Qsetup==4) } // SS_Label_Info_25.16 #Penalty for F_ballpark if(F_ballpark_yr>=styr) { if(F_Method==1) {temp=annual_F(F_ballpark_yr,1);} else {temp=annual_F(F_ballpark_yr,2);} // in future, could allow specification of a range of years for averaging the F statistic F_ballpark_like = 0.5*square( log((F_ballpark+1.0e-6)/(temp+1.0e-6)) / 1.0) + sd_offset*log(1.0); } else {F_ballpark_like=0.0;} // SS_Label_Info_25.17 #Penalty for soft boundaries, uses the symmetric beta prior code if(SoftBound>0) { SoftBoundPen=0.0; for (i=1;i<=N_selparm2;i++) if(selparm_PH_soft(i)>0) {SoftBoundPen+=Get_Prior(1, selparm_LO(i), selparm_HI(i), 1., 0.001, selparm(i));} } // SS_Label_Info_25.18 #Crash penalty // CrashPen = square(1.0+CrashPen)-1.0; this was used until V3.00L 7/10/2008 CrashPen = square(1.0+ (1000.*CrashPen/(1000.+CrashPen)))-1.0; // SS_Label_Info_25.19 #Sum the likelihood components weighted by lambda factors // cout<<" obj_fun start "<0) obj_fun += SzFreq_like*column(SzFreq_lambda,k_phase); // cout<<" obj_fun sizefreq "<0) obj_fun += Morphcomp_lambda(k_phase)*Morphcomp_like; if(Do_TG>0 && Nfleet>1) obj_fun += TG_like1*column(TG_lambda1,k_phase); if(Do_TG>0) obj_fun += TG_like2*column(TG_lambda2,k_phase); // cout<<" obj_fun final "<0) { SSB_std(STD_Yr_Reverse(y))=SSB_yr(y); recr_std(STD_Yr_Reverse(y))=exp_rec(y,4); } if(STD_Yr_Reverse_Dep(y)>0) {depletion(STD_Yr_Reverse_Dep(y))=SSB_yr(y);} } switch(depletion_basis) { case 0: { depletion/=SSB_virgin; break; } case 1: { depletion/= (depletion_level*SSB_virgin); break; } case 2: { depletion/= (depletion_level*Bmsy); break; } case 3: { depletion/= (depletion_level*SSB_yr(styr)); break; } case 4: { depletion/= (depletion_level*SSB_yr(endyr)); break; } } switch (SPR_reporting) { case 0: // keep as raw value { break; } case 1: // compare to SPR { // SPR_std = (1.-SPR_std)/(1.-SPR_actual); SPR_std = (1.-SPR_std)/(1.-SPR_target); break; } case 2: // compare to SPR_MSY { SPR_std = (1.-SPR_std)/(1.-MSY_SPR); break; } case 3: // compare to SPR_Btarget { SPR_std = (1.-SPR_std)/(1.-SPR_Btgt); break; } case 4: { SPR_std = 1.-SPR_std; break; } } // init_int Do_Forecast // 0=none; 1=F(SPR); 2=F(MSY) 3=F(Btgt); 4=F(endyr); 5=Ave F (enter yrs); 6=read Fmult // Use the selected F method for the forecast as the denominator for the F_std ratio switch (F_std_basis) { case 0: // keep as raw value { break; } case 1: // compare to SPR { F_std /= Mgmt_quant(10); break; } case 2: // compare to SPR_MSY { F_std /= Mgmt_quant(14); break; } case 3: // compare to SPR_Btarget { F_std /= Mgmt_quant(7); break; } } // SS_Label_7.8 get extra std quantities if(Selex_Std_Cnt>0) { for (i=1;i<=Selex_Std_Cnt;i++) { j=Selex_Std_Pick(i); if(Selex_Std_AL==1) { Extra_Std(i)=sel_l(Selex_Std_Year,Do_Selex_Std,1,j); if(gender==2) Extra_Std(i+Selex_Std_Cnt)=sel_l(Selex_Std_Year,Do_Selex_Std,2,j); } else if(Selex_Std_AL==2) { Extra_Std(i)=sel_a(Selex_Std_Year,Do_Selex_Std,1,j); if(gender==2) Extra_Std(i+Selex_Std_Cnt)=sel_a(Selex_Std_Year,Do_Selex_Std,2,j); } else if(Selex_Std_AL==3) { Extra_Std(i)=sel_al_3(Selex_Std_Year,Do_Selex_Std,1,j); if(gender==2) Extra_Std(i+Selex_Std_Cnt)=sel_al_3(Selex_Std_Year,Do_Selex_Std,2,j); } } } if(Growth_Std_Cnt>0) { for (i=1;i<=Growth_Std_Cnt;i++) { j=Growth_Std_Pick(i); // selected age k=g_finder(Do_Growth_Std,1); // selected GP and gender gp3 Extra_Std(gender*Selex_Std_Cnt+i)=Ave_Size(t,mid_subseas,k,j); if(gender==2) { k=g_finder(Do_Growth_Std,2); // selected GP and gender gp3 Extra_Std(gender*Selex_Std_Cnt+Growth_Std_Cnt+i)=Ave_Size(t,mid_subseas,k,j); } } } if(NatAge_Std_Cnt>0) { if(Do_NatAge_Std<0) // sum all areas { p1=1; p2=pop; } else // selected area { p1=Do_NatAge_Std; p2=Do_NatAge_Std; } y=NatAge_Std_Year; t=styr+(y-styr)*nseas; // first season of selected year for (i=1;i<=NatAge_Std_Cnt;i++) { a=NatAge_Std_Pick(i); // selected age temp=0.; for (p=p1;p<=p2;p++) { for (g=1;g<=gmorph;g++) if(sx(g)==1 && use_morph(g)>0) { temp+=natage(t,p,g,a); // note, uses season 1 only } } Extra_Std(gender*(Selex_Std_Cnt+Growth_Std_Cnt)+i)=temp; if(gender==2) { temp=0.; for (p=p1;p<=p2;p++) { for (g=1;g<=gmorph;g++) if(sx(g)==2 && use_morph(g)>0) { temp+=natage(t,p,g,a); // note, uses season 1 only } } Extra_Std(gender*(Selex_Std_Cnt+Growth_Std_Cnt)+NatAge_Std_Cnt+i)=temp; } } } Extra_Std(Extra_Std_N-2)=log(SSB_yr(styr)); Extra_Std(Extra_Std_N-1)=log(SSB_yr(int((styr+endyr)/2))); Extra_Std(Extra_Std_N)=log(SSB_yr(endyr)); if(Svy_N>0) { int Svy_sdreport_counter = 1; for (f=1;f<=Nfleet;f++) { if (Svy_sdreport(f) > 0) { for (i=1;i<=Svy_N_fleet(f);i++) { Svy_sdreport_est(Svy_sdreport_counter) = Svy_est(f,i); ++Svy_sdreport_counter; } } } } } //******************************************************************** /* SS_Label_FUNCTION 27 Check_Parm */ FUNCTION dvariable Check_Parm(const int iparm, const int& PrPH, const double& Pmin, const double& Pmax, const int& Prtype, const double& Pr, const double& Psd, const double& jitter, const prevariable& Pval) { RETURN_ARRAYS_INCREMENT(); const dvariable zmin = inv_cumd_norm(0.001); // z value for Pmin const dvariable zmax = inv_cumd_norm(0.999); // z value for Pmax const dvariable Pmean = (Pmin + Pmax) / 2.0; dvariable NewVal; // dvariable temp; dvariable Psigma, zval, kval, kjitter, zjitter, temp; NewVal=Pval; if((Pmin<=-99 || Pmax>=999) && PrPH>=0) {N_warn++; warning<<" jitter not done unless parameter min & max are in reasonable parameter range "<Pmax) {N_warn++; cout<<" EXIT - see warning "< parameter max "< "<=0) {N_warn++; warning<<" parameter min is same as parameter max"<=0) {N_warn++; warning<<" parameter init value is less than parameter min "<Pmax && PrPH>=0) {N_warn++; warning<<" parameter init value is greater than parameter max "< "<0.0 && PrPH>=0) { // temp=log((Pmax-Pmin+0.0000002)/(NewVal-Pmin+0.0000001)-1.)/(-2.); // transform the parameter // temp += randn(radm) * jitter; // NewVal=Pmin+(Pmax-Pmin)/(1.+mfexp(-2.*temp)); // generate jitter value from cumulative normal given Pmin and Pmax Psigma = (Pmax - Pmean) / zmax; // Psigma should also be equal to (Pmin - Pmean) / zmin; if (Psigma < 0.00001) // how small a sigma is too small? { N_warn++; cout<<" EXIT - see warning "< 0.9999) { NewVal=Pmax-0.1*(Pmax-Pval); } else { zjitter = inv_cumd_norm(kjitter); NewVal = (Psigma * zjitter) + Pmean; } echoinput<<"jitter (min, max, old, new): "<0) { if(Psd<=0.0) {N_warn++; cout<<"fatal error in prior check, see warning"<0.0 { mu=-(Psd*(log( (Pmax+Pmin)*0.5- Pmin)))- (Psd*(log(0.5))); Prior_Like = -(mu+ (Psd*(log(Pval-Pmin+Pconst)))+(Psd*(log(1.-((Pval-Pmin-Pconst)/(Pmax-Pmin)))))); break; } case 2: // CASAL's Beta; check to be sure that Aprior and Bprior are OK before running SS2! { mu=(Pr-Pmin) / (Pmax-Pmin); // CASAL's v tau=(Pr-Pmin)*(Pmax-Pr)/square(Psd)-1.0; Bprior=tau*mu; Aprior=tau*(1.0-mu); // CASAL's m and n if(Bprior<=1.0 || Aprior <=1.0) {warning<<" bad Beta prior "<0.0) {Prior_Like = 0.5*square((log(Pval)-Pr)/Psd);} else {N_warn++; warning<<" cannot do prior in log space for parm with min <=0.0" << endl;} break; } case 4: //lognormal with bias correction (from Larry Jacobson) { if(Pmin>0.0) Prior_Like=0.5*square((log(Pval)-Pr+0.5*square(Psd))/Psd); else {N_warn++; warning<<" cannot do prior in log space for parm with min <=0.0" << endl;} break; } case 5: //gamma (from Larry Jacobson) { double warnif=1e-15; if(Pmin<0.0) {N_warn++; warning<<"Lower bound for gamma prior must be >=0. Suggestion " << warnif*10.0 <1) cout<<" mceval counter: "<0) cout<<" did system commands "<0) cout<<" write mcmc headers "<0) post_vecs<0) post_vecs< 0) { std::stringstream iter_labels; std::stringstream lambda_labels; iter_labels << "Iter | Objective_function"; lambda_labels << "---- | Lambdas"; if(F_Method>1) { iter_labels << " | Catch"; lambda_labels << " | " << column(catch_lambda,max_lambda_phase); } iter_labels << " | Equil_catch"; lambda_labels << " | " << init_equ_lambda(max_lambda_phase); if(Svy_N>0) { iter_labels << " | Survey"; lambda_labels << " | " << column(surv_lambda,max_lambda_phase); } if(nobs_disc>0) { iter_labels << " | Discard"; lambda_labels << " | " << column(disc_lambda,max_lambda_phase); } if(nobs_mnwt>0) { iter_labels << " | Mean_body_wt"; lambda_labels << " | " << column(mnwt_lambda,max_lambda_phase); } if(Nobs_l_tot>0) { iter_labels << " | Length_comp"; lambda_labels << " | " << column(length_lambda,max_lambda_phase); } if(Nobs_a_tot>0) { iter_labels << " | Age_comp"; lambda_labels << " | " << column(age_lambda,max_lambda_phase); } if(nobs_ms_tot>0) { iter_labels << " | Size_at_age"; lambda_labels << " | " << column(sizeage_lambda,max_lambda_phase); } if(SzFreq_Nmeth>0) { iter_labels << " | SizeFreq"; lambda_labels << " | " << column(SzFreq_lambda,max_lambda_phase); } if(Do_Morphcomp>0) { iter_labels << " | Morphcomp"; lambda_labels << " | " << Morphcomp_lambda(max_lambda_phase); } if(Do_TG>0) { iter_labels << " | Tag_comp | Tag_negbin"; lambda_labels << " | " << column(TG_lambda1,max_lambda_phase) << " | " << column(TG_lambda2,max_lambda_phase); } iter_labels << " | Recruitment"; lambda_labels << " | " << recrdev_lambda(max_lambda_phase); iter_labels << " | Forecast_Recruitment"; lambda_labels << " | " << Fcast_recr_lambda; iter_labels << " | Parm_priors"; lambda_labels << " | " << parm_prior_lambda(max_lambda_phase); if(SoftBound>0) { iter_labels << " | Parm_softbounds"; lambda_labels << " | NA"; } iter_labels << " | Parm_devs"; lambda_labels << " | " << parm_dev_lambda(max_lambda_phase); if(F_ballpark_yr>0) { iter_labels << " | F_Ballpark"; lambda_labels << " | " << F_ballpark_lambda(max_lambda_phase); } iter_labels << " | Crash_Pen "; lambda_labels << " | " << CrashPen_lambda(max_lambda_phase); post_obj_func << iter_labels.str() << endl; post_obj_func << lambda_labels.str() << endl; } }; // end writing headers for mceval_counter==1 // produce standard output of all estimated parameters posts<0) { for (i=1;i<=recdev_cycle;i++) { if(active(recdev_cycle_parm(i))) posts<0) { for (i=recdev_early_start;i<=recdev_early_end;i++) { if( active(recdev_early) ) posts<0) { for (i=recdev_start;i<=recdev_end;i++) { if( active(recdev1)||active(recdev2) ) posts<0) { for (i=recdev_end+1;i<=YrMax;i++) { if(active(Fcast_recruitments)) posts<0) { k=3*N_TG+2*Nfleet1; for (j=1;j<=k;j++) { if(active(TG_parm(j))) posts<0) { for (i=1;i<=N_parm_dev;i++) for (j=parm_dev_minyr(i);j<=parm_dev_maxyr(i);j++) { if(parm_dev_PH(i)>0) posts<0) write_rebuilder_output(); // derived vectors quantities t=styr+(endyr+1-styr)*nseas; for (p=1;p<=pop;p++) { for (gg=1;gg<=gender;gg++) { tempvec_a.initialize(); for (g=1;g<=gmorph;g++) if(sx(g)==gg && use_morph(g)>0) { tempvec_a+=natage(t,p,g); } post_vecs< 0) { post_obj_func<1) post_obj_func << " | " << catch_like; post_obj_func << " | " << equ_catch_like; if(Svy_N>0) post_obj_func << " | " << surv_like; if(nobs_disc>0) post_obj_func << " | " << disc_like; if(nobs_mnwt>0) post_obj_func << " | " << mnwt_like; if(Nobs_l_tot>0) post_obj_func << " | " << length_like_tot; if(Nobs_a_tot>0) post_obj_func << " | " << age_like_tot; if(nobs_ms_tot>0) post_obj_func << " | " << sizeage_like; if(SzFreq_Nmeth>0) post_obj_func << " | " << SzFreq_like; if(Do_Morphcomp>0) post_obj_func << " | " << Morphcomp_like; if(Do_TG>0) post_obj_func << " | " << TG_like1 << " | " << TG_like2; post_obj_func << " | " << recr_like+regime_like; post_obj_func << " | " << Fcast_recr_like; post_obj_func << " | " << parm_like; if(SoftBound>0) post_obj_func << " | " << SoftBoundPen; post_obj_func << " | " << (sum(parm_dev_like)); if(F_ballpark_yr>0) post_obj_func << " | " << F_ballpark_like; post_obj_func << " | " << CrashPen; post_obj_func<=1) report2<<" Start_from_ss.par"; report2<0) { for (j=1;j<=N_SC;j++) report2<0) { for (j=1;j<=N_DC;j++) report2<0) { for (j=1;j<=N_CC;j++) report2<0) { for (j=1;j<=N_FC;j++) report2<max_lambda_phase) k=max_lambda_phase; report2<0) report2<0) report2<0) report2<0) report2<0) report2<0) report2<1) report2<0) report2<0) report2<0) report2<0) report2<0) j=1; if(Do_Benchmark>0) report2<0) { for(j=1;j<=N_parm_dev;j++) report2<0) report2<0) report2<0) report2<0) report2<0) report2<0) report2<0) report2<0) report2<0) { report2<0) report2<0) { report2<0) { report2<0) { report2<0) { report2<0) { report2<0) { report2<0) for (f=1;f<=Nfleet;f++) if(Svy_N_fleet(f)>0) { report2 <=0) // lognormal or lognormal T_dist {report2 <0) { report2 <0) { report2 <max_lambda_phase) k=max_lambda_phase; SS_smry<<"#_LIKELIHOOD "<1) {SS_smry<<"Catch "<0) SS_smry<<"Equil_catch "<0) SS_smry<<"Survey "<0) SS_smry<<"Discard "<0) SS_smry<<"Mean_body_wt "<0) SS_smry<<"Length_comp "<0) SS_smry<<"Age_comp "<0) SS_smry<<"Size_at_age "<0) SS_smry<<"Gen_Size_Comp "<0) SS_smry<<"Morphcomp "<0) { SS_smry <<"Tag_Data_1 "<0) { for (j=1;j<=recdev_cycle;j++) { NP++; SS_smry<0) { for (j=recdev_early_start;j<=recdev_early_end;j++) { NP++; SS_smry<0) { for (j=recdev_start;j<=recdev_end;j++) { NP++; SS_smry<0) { for (j=recdev_end+1;j<=YrMax;j++) { NP++; SS_smry<0) { SS_smry<<"#_Init_F"<0) { SS_smry<<"#_F"<0) { SS_smry<<"#_Catchability"<0) for (j=1;j<=N_selparm2;j++) { NP++; SS_smry<0) { SS_smry<<"#_Tag_Recapture"<0) { SS_smry<<"#_Parm_Dev"<0) {active_count++; SS_smry<0) { k=0; for (f = 1; f <= Nfleet; ++f) { if (Svy_sdreport(f) > 0) { for (j=1;j<=Svy_N_fleet(f);j++) { active_count++; k++; NP++; if(Svy_errtype(f)==-1) { SS_smry<0 && mceval_counter==0) cout<<" produce output for rebuilding package"<0.0) // active fishery in this area in endyr { j=1; for (g=1;g<=gmorph;g++) if(sx(g)==gg) { tempvec_a+=elem_prod(fish_body_wt(t,g,f),natage(t+s-1,p,g)*Fcast_RelF_Use(s,f)); // body wt tempvec2+=elem_prod(sel_al_3(s,g,f),natage(t+s-1,p,g)*Fcast_RelF_Use(s,f)); //no wt tempvec3+=natage(t+s-1,p,g)*Fcast_RelF_Use(s,f); } } if(j==1) { tempvec_a= elem_div(tempvec_a,tempvec3); tempvec2 = elem_div(tempvec2,tempvec3); rebuilder <0) { tempvec_a+=elem_prod(natM(1,GP3(g)),natage(t,p,g)); tempvec2+=natage(t,p,g); // note, uses season 1 only } } tempvec_a=elem_div(tempvec_a,tempvec2); rebuilder<k) k=Rebuild_Yinit; //f. "blank line" used for header for following lines rebuilder <<"#R0 "<endyr) rebuild_dat<<" "<=Rebuild_Ydecl+1) { for (y=Rebuild_Ydecl+1;y<=Rebuild_Yinit;y++) rebuild_dat<9)"<9); Approach (-1=Read in else 1-9)"<0) {SIS_table<0) {SIS_table<=0;fishery_on_off--) { /* in first pass, fishery is on (1) so just report current values in second pass, rerun the time series with no fishery, then do the same reporting */ SS2out<0) { show_MSY=0; report5<<"#"<0 && GP4(g)==gp && sx(g)==gg) { tempvec_a+= value(natage(t,p,g)); if(nseas>1) { // add in age 0 fish recruiting in later seasons for (s=2;s<=nseas;s++) if(Bseas(g)==s) tempvec_a(0) += value(natage(t+s-1,p,g,0)); } } SS2out <0 && GP4(g)==gp && sx(g)==gg) { tempvec_a+= value(natage(t,p,g)); if(nseas>1) { for (s=2;s<=nseas;s++) if(Bseas(g)==s) { tempvec_a(0) += value(natage(t+s-1,p,g,0)); } } if(y>styr) {SS2out <1) SS2out<<" Z for age zero fish is not correct here if recruitment occurs in season after season 1"<0) { parmvar=CoVar(AC,1); parmgrad=parm_gradients(AC); SS2out<<" "<=0.99) {SS2out<<" HI "; Nparm_on_bound++;} else {SS2out<<" OK ";} } SS2out<<" "<0) { switch (PR_T) { case 6: {SS2out<<" Normal "; break;} case 1: {SS2out<<" Sym_Beta "; break;} case 2: {SS2out<<" Full_Beta "; break;} case 3: {SS2out<<" Log_Norm "; break;} case 4: {SS2out<<" Log_Norm_w/biasadj "; break;} case 5: {SS2out<<" Gamma "; break;} } SS2out<<" "<Pmax) temp=Pmax; parm_val(i)=temp; prior_val(i)=Get_Prior(PR_T, Pmin, Pmax, PR, CV, temp); i=4; temp=Pmin+0.01*(Pmax-Pmin); parm_val(i)=temp; prior_val(i)=Get_Prior(PR_T, Pmin, Pmax, PR, CV, temp); i=14; temp=Pmax-0.01*(Pmax-Pmin); parm_val(i)=temp; prior_val(i)=Get_Prior(PR_T, Pmin, Pmax, PR, CV, temp); for (int i=5;i<=13;i++) { temp=Pmin+float(i-4)/10.0*(Pmax-Pmin); parm_val(i)=temp; prior_val(i)=Get_Prior(PR_T, Pmin, Pmax, PR, CV, temp); } SS2out<=30 for special types"<0=T"<0) for (f=1;f<=Nfleet;f++) for (i=1;i<=Svy_N_fleet(f);i++) { t=Svy_time_t(f,i); ALK_time=Svy_ALK_time(f,i); report1 << Show_Time(t,1)<<" "<0 for DF of T-dist(read CV below); 0 for normal with CV; -1 for normal with se; -2 for lognormal; -3 for trunc normal with CV"<0) { for (f=1;f<=Nfleet;f++) if(disc_units(f)>0) report1<0) { for (i=1;i<=nobs_mnwt;i++) { f=abs(mnwtdata(3,i)); report1 << Show_Time(mnwtdata(1,i),1)<<" "<0) { report1<<"#_mintailcomp: upper and lower distribution for females and males separately are accumulated until exceeding this level."<0) { for(i=0;i<=nobsl_rd-1;i++) { report1<0) { report1<0) report1 << age_err_rd << endl; report1<<"#_mintailcomp: upper and lower distribution for females and males separately are accumulated until exceeding this level."<0) { for(i=0;i<=nobsa_rd-1;i++) { report1<0) { report1<<"# sex codes: 0=combined; 1=use female only; 2=use male only; 3=use both as joint sexxlength distribution"<0) { if(finish_starter==999) { for (i=1;i<=nobs_ms_rd;i++) { report1<0) {for(i=j;i<=N_envdata-1+j;i++) report1<0) { report1< "<0) { // info on dimensions of tagging data report1< area yr season gender age Nrelease (note that the TG and tfill values are placeholders and are replaced by program generated values)"<0) { report1<0.0) { report1<<0.1<<" "<=30 for special types"<0=T"<0) for (f=1;f<=Nfleet;f++) for (i=1;i<=Svy_N_fleet(f);i++) { t=Svy_time_t(f,i); ALK_time=Svy_ALK_time(f,i); report1 << Show_Time(t,1)<<" "<0) { if(Svy_errtype(f)>=0) // lognormal { report1 << mfexp(Svy_est(f,i)); } else if(Svy_errtype(f)==-1) // normal { report1<0 for DF of T-dist(read CV below); 0 for normal with CV; -1 for normal with se; -2 for lognormal; -3 for trunc normal with CV"<0) { for (f=1;f<=Nfleet;f++) if(disc_units(f)>0) report1<0) for (i=1;i<=disc_N_fleet(f);i++) { ALK_time=disc_time_ALK(f,i); report1 << Show_Time(disc_time_t(f,i),1)<<" "<= 0.0 ) {report1 << exp_disc(f,i);} else {report1 << obs_disc(f,i);} report1 << " "<< cv_disc(f,i)<<" #_orig_obs: "<0) { for (i=1;i<=nobs_mnwt;i++) { f=abs(mnwtdata(3,i)); report1 << Show_Time(mnwtdata(1,i),1)<<" "<0) { report1<<"#_mintailcomp: upper and lower distribution for females and males separately are accumulated until exceeding this level."<0) { for (i=1;i<=Nobs_l(f);i++) { if(header_l(f,i,3)>0) // do only if this was a real observation { k=1000; if(nsamp_l(f,i)0) { report1<0) report1 << age_err_rd << endl; report1<<"#_mintailcomp: upper and lower distribution for females and males separately are accumulated until exceeding this level."<0) for (f=1;f<=Nfleet;f++) { if(Nobs_a(f)>=1) { for (i=1;i<=Nobs_a(f);i++) { if(header_a(f,i,3)>0) // if real observation { k=1000; if(nsamp_a(f,i)0) { report1<<"# sex codes: 0=combined; 1=use female only; 2=use male only; 3=use both as joint sexxlength distribution"<0) { for (i=1;i<=Nobs_ms(f);i++) { report1 << header_ms(f,i)(1)<<" "<0) { temp=exp_ms(f,i,a); if(temp<=0.) {temp=0.0001;} report1 << temp; } else {report1 << obs_ms(f,i,a) ;} } report1 << endl<< elem_prod(obs_ms_n(f,i),obs_ms_n(f,i)) << endl; } } } report1<<"-9999 "; for (j=1;j<=6+n_abins2;j++) report1<<" 0"; report1<0) {for(i=j;i<=N_envdata-1+j;i++) report1<0) { report1< "<0) // flag for date range in bounds { report1<0) { // info on dimensions of tagging data report1< area yr season sex age Nrelease (note that the TG and tfill values are placeholders and are replaced by program generated values)"<TG_maxperiods) t=TG_maxperiods; report1<0) { report1<<"# note that raw data, not bootstrap are reported here "<0.0) { report1<<0.1<<" "<=30 for special types"<0=T"<0) for (f=1;f<=Nfleet;f++) for (i=1;i<=Svy_N_fleet(f);i++) { t=Svy_time_t(f,i); ALK_time=Svy_ALK_time(f,i); report1 << Show_Time(t,1)<<" "< 0) { if(Svy_errtype(f)==-1) // normal error { report1<0) // lognormal T_dist { temp = sqrt( (Svy_errtype(f)+1.)/Svy_errtype(f)); // where df=Svy_errtype(f) report1 << mfexp(Svy_est(f,i)+ randn(radm)*Svy_se_use(f,i)*temp ); // adjusts the sd by the df sample size } } else { report1 << Svy_obs(f,i); } report1 <<" "<0 for DF of T-dist(read CV below); 0 for normal with CV; -1 for normal with se; -2 for lognormal; -3 for trunc normal with CV"<0) { for (f=1;f<=Nfleet;f++) if(disc_units(f)>0) report1<= 0.0 ) { if(disc_errtype(f)>=1) {temp=exp_disc(f,i) + randn(radm)*sd_disc(f,i)*sqrt((disc_errtype(f)+1.)/disc_errtype(f)) * exp_disc(f,i); if(temp<0.001) temp=0.001;} else if(disc_errtype(f)==0) {temp=exp_disc(f,i) + randn(radm)*sd_disc(f,i); if(temp<0.001) temp=0.001; } else if(disc_errtype(f)==-1) {temp=exp_disc(f,i) + randn(radm)*sd_disc(f,i); if(temp<0.001) temp=0.001; } else if(disc_errtype(f)==-2) {temp=exp_disc(f,i) * mfexp(randn(radm)*sd_disc(f,i));} else if(disc_errtype(f)==-3) {temp=exp_disc(f,i) + randn(radm)*(sd_disc(f,i) / sqrt(cumd_norm( (1 - exp_disc(f,i)) / sd_disc(f,i) ) - cumd_norm( (0 - exp_disc(f,i)) / sd_disc(f,i) ))); if(temp<0.001) temp=0.001; } } else {temp=obs_disc(f,i);} report1 <<" "<0) { for (i=1;i<=nobs_mnwt;i++) { if(mnwtdata(3,i)>0 && mnwtdata(6,i)>0.) { temp=exp_mnwt(i)+randn(radm)*mnwtdata(7,i)*sqrt((DF_bodywt+1.)/DF_bodywt) *exp_mnwt(i); if(temp<=0.0) {temp=0.0001;} } else { temp=mnwtdata(6,i); } f=abs(mnwtdata(3,i)); report1 << Show_Time(mnwtdata(1,i),1)<<" "<0) { report1<<"#_mintailcomp: upper and lower distribution for females and males separately are accumulated until exceeding this level."<0) { for (i=1;i<=Nobs_l(f);i++) { if(header_l(f,i,3)>0) // do only if this was a real observation { if(Comp_Err_L(f)==0) // multinomial { k=50000; if(nsamp_l(f,i)0) { report1<0) report1 << age_err_rd << endl; report1<<"#_mintailcomp: upper and lower distribution for females and males separately are accumulated until exceeding this level."<0) for (f=1;f<=Nfleet;f++) { if(Nobs_a(f)>=1) { for (i=1;i<=Nobs_a(f);i++) { if(header_a(f,i,3)>0) // if real observation { if(Comp_Err_A(f)==0) // multinomial { k=50000; if(nsamp_a(f,i)0) { report1<<"# sex codes: 0=combined; 1=use female only; 2=use male only; 3=use both as joint sexxlength distribution"<0) { for (i=1;i<=Nobs_ms(f);i++) { report1 << header_ms(f,i)(1)<<" "<0) { temp=exp_ms(f,i,a)+randn(radm)*exp_ms_sq(f,i,a)/obs_ms_n(f,i,a); if(temp<=0.) {temp=0.0001;} report1 << temp; } else {report1 << exp_ms(f,i,a) ;} } report1 << endl<< elem_prod(obs_ms_n(f,i),obs_ms_n(f,i)) << endl; } } } report1<<"-9999 "; for (j=1;j<=6+n_abins2;j++) report1<<" 0"; report1<0) {for(i=j;i<=N_envdata-1+j;i++) report1<0) { report1< "<0) // flag for date range in bounds and used { j=50000; if(SzFreq_obs1(iobs,7)0) { dvector temp_negbin(1,50000); // changes authored by Gavin Fay in June 2016 in SS 3.24Y TG_recap_gen.initialize(); int N_TG_recap_gen=0; for(TG=1;TG<=N_TG;TG++) { overdisp=TG_parm(2*N_TG+TG); dvector TG_fleet_probs(1,Nfleet); dvector temp_tags(1,Nfleet); // problem: TG_recap_exp only dimensioned to TG_endtime for (t=0;t<=min(TG_maxperiods,TG_endtime(TG));t++) { if (value(TG_recap_exp(TG,t,0))>0) { temp_negbin.initialize(); temp_negbin.fill_randnegbinomial(value(TG_recap_exp(TG,t,0)), value(overdisp), radm); //cout << TG << " " << t << " " << temp_negbin << " " << TG_recap_exp(TG,t,0) << " " << value(overdisp) << endl; if (temp_negbin(1)>0) { TG_fleet_probs = value(TG_recap_exp(TG,t)(1,Nfleet))/temp_negbin(1); temp_tags = 0.0; temp_mult.fill_multinomial(radm,TG_fleet_probs); for (compindex=1; compindex<=temp_negbin(1); compindex++) // cumulate the multinomial draws by index in the new data {temp_tags(temp_mult(compindex)) += 1.0;} for (f=1;f<=Nfleet;f++) { if (temp_tags(f)>0) { N_TG_recap_gen += 1; TG_recap_gen(N_TG_recap_gen,1) = TG; TG_recap_gen(N_TG_recap_gen,2) = TG_release(TG,3) + int((t+TG_release(TG,4)-1)/nseas); int k = TG_release(TG,4); TG_recap_gen(N_TG_recap_gen,3) = ((t+k-1) % nseas) + 1; TG_recap_gen(N_TG_recap_gen,4) = f; TG_recap_gen(N_TG_recap_gen,5) = temp_tags(f); } } } } } } // info on dimensions of tagging data report1< area yr season sex age Nrelease (note that the TG and tfill values are placeholders and are replaced by program generated values)"<0) { report1<<"# note that raw data, not bootstrap are reported here "<0) NuStart<0) NuFore< the no F level below) "<0.0 to cause active impl_error)"<0.0) { if(Fcast_RelF_Basis==1) NuFore<<"# "; NuFore<-1 && fleet_type(f)==1) NuFore<-1) NuFore<0) NuFore<0, list year, allocation fraction for each group "<0) { if(finish_starter==999) { NuFore<0) report4< 1"<0"<0) { report4<0"<0) {report4<0) { report4<<"1 1 1 1 1 # autogen: 1st element for biology, 2nd for SR, 3rd for Q, 4th reserved, 5th for selex"<=3) {report4<<" #_Age_natmort_by sex x growthpattern"<=3 && Grow_type<=5) {report4<j) { for (k=j;k<=MGP_CGD-1;k++) { NP++; MGparm_1(NP,3)=value(MGparm(NP)); report4<0) { for (k=1;k<=2*do_migration;k++) { NP++; MGparm_1(NP,3)=value(MGparm(NP)); report4<0) { for (k=1;k<=7;k++) { NP++; MGparm_1(NP,3)=value(MGparm(NP)); report4<0) { for (k=1;k<=Nfleet;k++) if(need_catch_mult(k)==1) { NP++; MGparm_1(NP,3)=value(MGparm(NP)); report4<0) { report4<<"# timevary MG parameters "<0) { for (f=1;f<=N_MGparm_seas;f++) { NP++; j++; MGparm_seas_1(f,3)=value(MGparm(j)); report4<N_SRparm2) { report4<<"# timevary SR parameters"<0) { for (y=1;y<=recdev_cycle;y++) { NP++; recdev_cycle_parm_RD(y,3)=value(recdev_cycle_parm(y)); report4<0) { report4<<"# Specified recr devs to read"<=recdev_first) {report4<0) { for (y=recdev_early_start;y<=recdev_early_end;y++) {report4<<" "<0) { for (y=recdev_start;y<=recdev_end;y++) {report4<<" "<0) { for (y=recdev_end+1;y<=YrMax;y++) {report4<<" "<0) { for (y=recdev_early_start;y<=recdev_early_end;y++) {NP++; report4<<" "<0) { for (y=recdev_start;y<=recdev_end;y++) {NP++; report4<<" "<0) { for (y=recdev_end+1;y<=YrMax;y++) {NP++; report4<<" "<0) // special code for depletion, so prepare to adjust phases and lambdas { f=depletion_fleet; report4<<"#_survey: "<0) { report4<<" "<0) { report4<<"#_ LO HI INIT PRIOR PR_SD PR_type PHASE env-var use_dev dev_mnyr dev_mxyr dev_PH Block Blk_Fxn # parm_name"<0) { report4<<"# timevary Q parameters "<1.0"<Nfleet) {f1=f-Nfleet; anystring="AgeSelex";} else {f1=f;anystring="LenSelex";} report4<<"# "<0) { report4<<"#_Dirichlet parameters"< N_selparm) { report4<<"# timevary selex parameters "<0) { k=timevary_parm_start_sel+N_selparm3-N_selparm-1; // starting point in timevary_parm_rd report4<<"#_specifications for 2D_AR1 and associated parameters"<0) { report4<<1<<" # TG_custom: 0=no read and autogen if tag data exist; 1=read"<0) // now show devs { report4< 0) for(f=1;f<=Do_Var_adjust;f++) report4<0) report4<0) {for (f=1;f<=Nfleet;f++) report4<<"# "<0) {for (f=1;f<=Nfleet;f++) report4<<"# "<< disc_lambda(f)<<" #_discard:_"<0) {for (f=1;f<=Nfleet;f++) report4<<"# "<< mnwt_lambda(f)<<" #_meanbodywt:"<0) {for (f=1;f<=Nfleet;f++) report4<<"# "<< length_lambda(f)<<" #_lencomp:_"<0) {for (f=1;f<=Nfleet;f++) report4<<"# "<< age_lambda(f)<<" #_agecomp:_"<0) for (f=1;f<=SzFreq_N_Like;f++) report4<<"# "<0) {for (f=1;f<=Nfleet;f++) report4<<"# "<< sizeage_lambda(f)<<" #_size-age:_"<0) { for (TG=1;TG<=N_TG;TG++) report4<<"# "<0) report4<<"# "<< Morphcomp_lambda<<" #_Morphcomplambda"<0) { report4<0) report4<0) report4<0) report4<=1) SS2out<<"Start_parm_values_from_SS3.PAR"<gmax<<" is_final_gradient"<0) { SS2out<<"#"<0) { SS2out<<"#"<0) { SS2out<<"#"<0) { SS2out<<"#"<max_lambda_phase) k=max_lambda_phase; SS2out<1) SS2out <<"Catch "<0) SS2out <<"Survey "<0) SS2out <<"Discard "<0) SS2out <<"Mean_body_wt "<0) SS2out <<"Length_comp "<0) SS2out <<"Age_comp "<0) SS2out <<"Size_at_age "<0) SS2out <<"SizeFreq "<0) SS2out <<"Morphcomp "<0) SS2out <<"Tag_comp "<0) SS2out <<"Tag_negbin "<0) SS2out <<"Parm_softbounds "<0) SS2out <<"F_Ballpark "<0) SS2out <<"F_Ballpark(info_only)_"<0) SS2out <<"F_Ballpark "<1) SS2out<<"Catch_lambda: _ "<0) SS2out<<"Surv_lambda: _ "<0) SS2out<<"Disc_lambda: _ "<0) SS2out<<"mnwt_lambda: _ "<0) SS2out<<"Length_lambda: _ "<0) SS2out<<"Age_lambda: _ "<0) SS2out<<"Sizeatage_lambda: _ "<0) { SS2out<<"Parm_devs_detail"<0) { for (j=1;j<=SzFreq_Nmeth;j++) { SS2out<<"SizeFreq_lambda:_"<0) {SS2out<0) {SS2out<0) { SS2out<0) { for (j=1;j<=recdev_cycle;j++) { NP++; Activ=0; if(active(recdev_cycle_parm(j))) { active_count++; Activ=1; } Report_Parm(NP, active_count, Activ, recdev_cycle_parm(j), recdev_cycle_parm_RD(j,1), recdev_cycle_parm_RD(j,2), recdev_cycle_parm_RD(j,3), recdev_cycle_use(j), recdev_cycle_parm_RD(j,4), recdev_cycle_parm_RD(j,5), recdev_cycle_parm_RD(j,6), recdev_cycle_parm_RD(j,7), recdev_cycle_Like(j)); } } if(recdev_do_early>0) { for (i=recdev_early_start;i<=recdev_early_end;i++) {NP++; SS2out<0) { for (i=recdev_start;i<=recdev_end;i++) {NP++; SS2out<0) { for (i=recdev_end+1;i<=YrMax;i++) { NP++; SS2out<0) { for (i=endyr+1;i<=YrMax;i++) { NP++; SS2out<0) { k=3*N_TG+2*Nfleet1; for (j=1;j<=k;j++) { NP++; Activ=0; if(active(TG_parm(j))) { active_count++; Activ=1; } Report_Parm(NP, active_count, Activ, TG_parm(j), TG_parm_LO(j), TG_parm_HI(j), TG_parm2(j,3), TG_parm_use(j), TG_parm2(j,4), TG_parm2(j,5), TG_parm2(j,6), TG_parm_PH(j), TG_parm_Like(j)); } } if(N_parm_dev>0) { for (i=1;i<=N_parm_dev;i++) for (j=parm_dev_minyr(i);j<=parm_dev_maxyr(i);j++) { NP++; SS2out<0) { active_count++; SS2out<<" "<0.0) { temp=value((SPR_std(j)-1.0)/CoVar(active_count,1)); SS2out<<" "<0.0) { temp=value((F_std(j)-1.0)/CoVar(active_count,1)); SS2out<<" "<0.0) { temp=value((depletion(j)-1.0)/CoVar(active_count,1)); SS2out<<" "<0) { k=0; for (f = 1; f <= Nfleet; ++f) { if (Svy_sdreport(f) > 0) { for (j=1;j<=Svy_N_fleet(f);j++) { active_count++; k++; SS2out<0) SS2out<0) SS2out<0) { SS2out<=4) {SS2out<<"Info: Annual_F.shown.here.is.done.by.the.Z-M.method.for.ages:."<0) { for (s=1;s<=nseas;s++) { SS2out<<"INIT "<0) {SS2out<<" "<0 ) {SS2out<<" "<0) { for (s=1;s<=nseas;s++) { SS2out<<"init_yr "<0) {SS2out<<" "<=styr && STD_Yr_Reverse_F(y)>0 ) {SS2out<0 && F_Method>1) { SS2out<<0.5*square( (log(1.1*catch_ret_obs(f,t)) -log(catch_fleet(t,f,gg)*catch_mult(y,f)+0.1*catch_ret_obs(f,t))) / catch_se(t,f)); } else { SS2out<<" NA"; } } else {SS2out<<"BYCATCH";} SS2out<0) { // if(s==Bseas(g)) Recr(p,y)+=natage(t,p,g,0); gg=sx(g); temp=natage(t,p,g)(Smry_Age,nages)*Save_Wt_Age(bio_t,g)(Smry_Age,nages); Bio_Comp(GP(g))+=value(temp); //sums to accumulate across platoons and settlements Num_Comp(GP(g))+=value(sum(natage(t,p,g)(Smry_Age,nages))); //sums to accumulate across platoons and settlements totbio+= natage(t,p,g)*Save_Wt_Age(bio_t,g); smrybio+= temp; smrynum+=sum(natage(t,p,g)(Smry_Age,nages)); smryage+=natage(t,p,g)(Smry_Age,nages)*r_ages(Smry_Age,nages); SSB_vir_LH += natage(t,p,g)*virg_fec(g); if(y<=endyr) { for (f=1;f<=Nfleet;f++) { if(fleet_area(f)==p&&y>=styr-1&&fleet_type(f)<=2) { Smry_Table(y,16)+=sum(catage(t,f,g)); Smry_Table(y,17)+=catage(t,f,g)*r_ages; } } } } //close gmorph loop if(gender_rd==-1) SSB_vir_LH*=femfrac(1); SS2out<=styr-1) { SS2out<<" "<0) {SS2out<0) {SS2out<=styr && STD_Yr_Reverse_F(y)>0 ) {SS2out<<" "<=styr && STD_Yr_Reverse_F(y)>0 ) {SS2out<<" "<0. && rmse(1)>0.) rmse(1) = sqrt(rmse(1)/n_rmse(1)); // rmse during main period if(n_rmse(1)>0.) rmse(2) = rmse(2)/n_rmse(1); // mean biasadj during main period if(n_rmse(3)>0. && rmse(3)>0.) rmse(3) = sqrt(rmse(3)/n_rmse(3)); //rmse during early period if(n_rmse(3)>0.) rmse(4) = rmse(4)/n_rmse(3); // mean biasadj during early period // REPORT_KEYWORD SPAWN_RECRUIT dvariable steepness=SR_parm(2); SS2out<(0.01+2.0*square(rmse(1))/temp)) {N_warn++; warning<<" Main recdev biasadj is >2 times ratio of rmse to sigmaR"<2_times_ratio_of_rmse_to_sigmaR"<(0.01+2.0*square(rmse(3))/temp)) {N_warn++; warning<<" Early recdev biasadj is >2 times ratio of rmse to sigmaR"<2_times_ratio_of_rmse_to_sigmaR"<0 && y>=recdev_early_start && y<=recdev_early_end) {SS2out<=recdev_start && y<=recdev_end) {SS2out<0 && y>recdev_end) { SS2out<0) { for (f=1;f<=Nfleet;f++) { in_superperiod=0; for (i=1;i<=Svy_N_fleet(f);i++) { t=Svy_time_t(f,i); ALK_time=Svy_ALK_time(f,i); SS2out<=0) // lognormal { temp = mfexp(Svy_est(f,i)); SS2out< 0) { SS2out<<" "<0) { SS2out<<" "<0) {rmse(f) = sqrt((rmse(f)+1.0e-9)/n_rmse(f)); mean_CV(f) /= n_rmse(f); mean_CV3(f) /= n_rmse(f); mean_CV2(f) /= n_rmse(f);} } } // REPORT_KEYWORD INDEX_1 Survey Fit Summary SS2out <0) { SS2out<0) // special code for depletion, so prepare to adjust phases and lambdas { f=depletion_fleet; SS2out<<"#_survey: "<1: log(L)_based_on_T_distribution_with_specified_DF"<< endl; SS2out << "0: log(L)_based_on_normal_with_Std_in_as_CV"<< endl; SS2out << "-1: log(L)_based_on_normal_with_Std_in_as_stddev"<< endl; SS2out << "-2: log(L)_based_on_lognormal_with_Std_in_as_stddev_in_logspace"<< endl; SS2out << "-3: log(L)_based_on_trunc_normal_with_Std_in_as_CV"<< endl; SS2out<<"#_Fleet units errtype"<0) { for (f=1;f<=Nfleet;f++) if(fleet_type(f)<=2) if(disc_units(f)>0) SS2out<0) for (f=1;f<=Nfleet;f++) if(fleet_type(f)<=2) { for (i=1;i<=disc_N_fleet(f);i++) { t = disc_time_t(f,i); y=Show_Time(t,1); ALK_time=disc_time_ALK(f,i); if(catchunits(f)==1) {gg=3;} // biomass else {gg=6;} // numbers SS2out<=0.0) { if(disc_errtype(f)>=1) // T -distribution { temp=0.5*(disc_errtype(f)+1.)*log((1.+square(obs_disc(f,i)-exp_disc(f,i))/(disc_errtype(f)*square(sd_disc(f,i))) )); SS2out<<" "<0) SS2out<<"log(L)_based_on_T_distribution_with_DF=_"<0) for (i=1;i<=nobs_mnwt;i++) { t=mnwtdata(1,i); f=abs(mnwtdata(3,i)); ALK_time=mnwtdata(11,i); SS2out << mnwtdata(3,i)<<" "<0.) { SS2out<<" "<0) { n_rmse(f)+=1.; rmse(f)+=value(neff_l(f,i)); mean_CV(f)+=nsamp_l(f,i); Hrmse(f)+=value(1./neff_l(f,i)); Rrmse(f)+=value(neff_l(f,i)/nsamp_l(f,i)); if(nsamp_l(f,i)maxsamp(f)) maxsamp(f)=nsamp_l(f,i); } // SS2out<<"Fleet Fleet_Name Area Yr Month Seas Subseas Time Sexes Part SuprPer Use Nsamp effN Like"; // temp=abs(header_l_rd(f,i,2)); // if(temp>999) temp-=1000; SS2out<0) { rmse(f)/=n_rmse(f); mean_CV(f)/=n_rmse(f); Hrmse(f)=n_rmse(f)/Hrmse(f); Rrmse(f)/=n_rmse(f); SS2out<<"4 "<0) for(f=1;f<=Nfleet;f++) for(i=1;i<=Nobs_a(f);i++) { t=Age_time_t(f,i); ALK_time=Age_time_ALK(f,i); more_comp_info.initialize(); neff_a(f,i) = exp_a(f,i)*(1-exp_a(f,i))+1.0e-06; // constant added for stability neff_a(f,i) /= (obs_a(f,i)-exp_a(f,i))*(obs_a(f,i)-exp_a(f,i))+1.0e-06; dvector tempvec_a(1,exp_a(f,i).size()); tempvec_a = value(exp_a(f,i)); more_comp_info=process_comps(gender,gen_a(f,i),age_bins,age_bins_mean,tails_a(f,i),obs_a(f,i), tempvec_a); if(nsamp_a(f,i)>0 && header_a(f,i,3)>0) { n_rmse(f)+=1.; rmse(f)+=value(neff_a(f,i)); mean_CV(f)+=nsamp_a(f,i); Hrmse(f)+=value(1./neff_a(f,i)); Rrmse(f)+=value(neff_a(f,i)/nsamp_a(f,i)); if(nsamp_a(f,i)maxsamp(f)) maxsamp(f)=nsamp_a(f,i); } // SS2out<<"Fleet Fleet_Name Area Yr Seas Subseas Month Time Sexes Part Ageerr Lbin_lo Lbin_hi Nsamp effN Like SuprPer Use"; temp=abs(header_a_rd(f,i,2)); if(temp>999) temp-=1000; SS2out<0) { rmse(f)/=n_rmse(f); mean_CV(f)/=n_rmse(f); Hrmse(f)=n_rmse(f)/Hrmse(f); Rrmse(f)/=n_rmse(f); SS2out<<"5 "<0) // have some sizefreq data { SzFreq_effN.initialize(); SzFreq_eachlike.initialize(); for(int sz_method=1; sz_method<=SzFreq_Nmeth; sz_method++) { SS2out<<"#Method: "<=styr) // year is positive, so use this obs { y=SzFreq_obs_hdr(iobs,1); t=SzFreq_time_t(iobs); ALK_time=SzFreq_time_ALK(iobs); gg=SzFreq_obs_hdr(iobs,4); // gender if(gender==2 && (gg==3 || gg==2)) { sz_tails(3)=SzFreq_Nbins(sz_method)+1; sz_tails(4)=2*SzFreq_Nbins(sz_method); } else { sz_tails(3)=1; sz_tails(4)=SzFreq_Nbins(sz_method); } p=SzFreq_obs_hdr(iobs,5); // partition z1=SzFreq_obs_hdr(iobs,7); z2=SzFreq_obs_hdr(iobs,8); temp=0.0; temp1=0.0; for (z=z1;z<=z2;z++) { SzFreq_effN(iobs)+= value(SzFreq_exp(iobs,z)*(1.0-SzFreq_exp(iobs,z))); temp += square(SzFreq_obs(iobs,z)-SzFreq_exp(iobs,z)); temp1 += SzFreq_obs(iobs,z)*log(SzFreq_obs(iobs,z))-SzFreq_obs(iobs,z)*log(SzFreq_exp(iobs,z)); } SzFreq_effN(iobs) =(SzFreq_effN(iobs)+1.0e-06)/value((temp+1.0e-06)); temp1*=SzFreq_sampleN(iobs); SzFreq_eachlike(iobs)=value(temp1); dvector tempvec_l (1,SzFreq_exp(iobs).size()); tempvec_l=value(SzFreq_exp(iobs)); more_comp_info=process_comps(gender,gg,SzFreq_bins(sz_method),SzFreq_means(sz_method),sz_tails,SzFreq_obs(iobs),tempvec_l); if(SzFreq_obs_hdr(iobs,3)>0) { n_rmse(f)+=1.; rmse(f)+=SzFreq_effN(iobs); mean_CV(f)+=SzFreq_sampleN(iobs); if(SzFreq_sampleN(iobs)maxsamp(f)) maxsamp(f)=SzFreq_sampleN(iobs); Hrmse(f)+=1./SzFreq_effN(iobs); Rrmse(f)+=SzFreq_effN(iobs)/SzFreq_sampleN(iobs); } else { SzFreq_effN(iobs)=0.; SzFreq_eachlike(iobs)=0.; } temp= SzFreq_obs1(iobs,3); // use original input value because if(temp>999) temp-=1000.; SS2out<<" here "<0) { rmse(f)/=n_rmse(f); mean_CV(f)/=n_rmse(f); Hrmse(f)=n_rmse(f)/Hrmse(f); Rrmse(f)/=n_rmse(f); SS2out<<"7 "<0) { SS2out<1) { SS2out<0) { SS2out<=styr && (timevary_sel(y,f)>0 || timevary_sel(y+1,f)>0))) { SS2out<<"Lsel "<=styr && (timevary_sel(y,f)>0 || timevary_sel(y+1,f)>0))) { // if(y>=styr && y<=endyr) // { SS2out<<"Ret "<=styr && (timevary_sel(y,f+Nfleet)>0 || timevary_sel(y+1,f+Nfleet)>0))) { SS2out<<"Asel "<0) {k=YrMax;} else {k=endyr;} for (y=styr-3;y<=k;y++) for (s=1;s<=nseas;s++) { t=styr+(y-styr)*nseas+s-1; for (g=1;g<=gmorph;g++) if(use_morph(g)>0 && (y==styr-3 || y>=styr)) { if(s==spawn_seas && (sx(g)==1 || Hermaphro_Option!=0) ) SS2out<<"Fecund "<<" NA "<<" "<0) for (s=1;s<=nseas;s++) { SS2out<<"sel*wt "<0) { SS2out << endl<<"ENVIRONMENTAL_DATA Begins_in_startyr-1, which shows the base value to which other years are scaled"<0) { SS2out<0) { for (y=styr-2;y<=YrMax;y++) for (s=1;s<=nseas;s++) { t = styr+(y-styr)*nseas+s-1; temp=double(y)+azero_seas(s); SS2out <0) { for (y=styr-2;y<=YrMax;y++) for (s=1;s<=nseas;s++) { t = styr+(y-styr)*nseas+s-1; temp=double(y)+azero_seas(s); SS2out <0) { for (y=styr;y<=YrMax;y++) for (s=1;s<=nseas;s++) { t = styr+(y-styr)*nseas+s-1; temp=double(y)+azero_seas(s); SS2out <0) { for (y=styr;y<=YrMax;y++) for (s=1;s<=nseas;s++) { t = styr+(y-styr)*nseas+s-1; temp=double(y)+azero_seas(s); SS2out <0) { for (y=styr-1;y<=YrMax;y++) for (s=1;s<=nseas;s++) { t = styr+(y-styr)*nseas+s-1; SS2out <0) { for (y=styr-1;y<=YrMax;y++) for (s=1;s<=nseas;s++) { t = styr+(y-styr)*nseas+s-1; SS2out <0) for (g=1;g<=gmorph;g++) { if(use_morph(g)>0) { for (y=styr-1;y<=YrMax;y++) for (s=1;s<=nseas;s++) { t = styr+(y-styr)*nseas+s-1; SS2out <0) {for (s=1;s<=nseas;s++) SS2out<0) {for (s=1;s<=nseas;s++) SS2out<0) {for (s=1;s<=nseas;s++) SS2out<0) { SS2out<0 || timevary_MG(endyr,3)>0 || WTage_rd>0) { y=endyr; t_base=styr+(y-styr)*nseas-1; for (s=1;s<=nseas;s++) { t = t_base+s; bio_t=styr+(endyr-styr)*nseas+s-1; subseas=1; ALK_idx=(s-1)*N_subseas+subseas; get_growth3(s, subseas); Make_AgeLength_Key(s, subseas); // for begin season subseas=mid_subseas; ALK_idx=(s-1)*N_subseas+subseas; get_growth3(s, subseas); Make_AgeLength_Key(s, subseas); // for midseason if(s==spawn_seas) { subseas=spawn_subseas; ALK_idx=(s-1)*N_subseas+subseas; if(spawn_subseas!=1 && spawn_subseas!=mid_subseas) { get_growth3(s, subseas); Make_AgeLength_Key(s, subseas); // spawn subseas } Make_Fecundity(); } } } // REPORT_KEYWORD Biology_at_age_by_morph SS2out<0) { Herma_Cum=femfrac(GP(g)); for (a=0;a<=nages;a++) { SS2out<1) Herma_Cum*=(1.0-Hermaphro_val(GP4(g),a-1)); SS2out<<" "<0) SS2out<<" as read from wtatage.ss"; SS2out<<" #NOTE_yr=_"<0) { for (y=styr-3;y<=YrMax;y++) { yz=y; if(yz>endyr+2) yz=endyr+2; // if(y==styr-3 || y==styr || timevary_MG(yz,2)>0 || timevary_MG(yz,3)>0 || WTage_rd>0) // if growth or wtlen parms have changed for (s=1;s<=nseas;s++) { t = styr+(y-styr)*nseas+s-1; SS2out<0) { for (y=styr-3;y<=YrMax;y++) { yz=y; if(yz>endyr+2) yz=endyr+2; // if(y==styr-3 || y==styr || timevary_MG(yz,2)>0) { for (s=1;s<=nseas;s++) { t = styr+(y-styr)*nseas+s-1; for (i=1;i<=N_subseas;i++) { SS2out<endyr+2) yz=endyr+2; if(y<=styr || timevary_MG(yz,2)>0 || N_platoon>1) { t = styr+(y-styr)*nseas+s-1; SS2out<0) { for (p=1;p<=pop;p++) { temp+=natage(t,p,g,a); temp1+=Ave_Size(t,1,g,a)*natage(t,p,g,a); } // end loop of areas } // end need to use this gender/platoon } // end loop of all platoons if(temp>0.0) {SS2out <<" "<< temp1/temp;} else {SS2out<<" __";} } // end loop of ages SS2out<0) { t = styr+(endyr-styr)*nseas+s-1; ALK_idx=(s-1)*N_subseas+subseas; SS2out <=1;z--) { SS2out << len_bins2(z) << " "; for (a=0;a<=nages;a++) SS2out << ALK(ALK_idx,g,a,z) << " " ; SS2out<0) { for (k=1;k<=N_ageerr;k++) { SS2out << "KEY: "<=1;b--) { SS2out << age_bins(b) << " "; for (a=0;a<=nages;a++) SS2out << age_age(k,b,a) << " " ; SS2out<=1;b--) { SS2out << age_bins(b) << " "; for (a=0;a<=nages;a++) SS2out << age_age(k,b+L2,a+A2) << " " ; SS2out<999) real_month-=1000.; if(ALK_time==last_t) {repli++;} else {repli=1;last_t=ALK_time;} if(header_l(f,i,2)<0 && in_superperiod==0) {in_superperiod=1; anystring="Sup";} else if (header_l(f,i,2)<0 && in_superperiod>0) {anystring="Sup"; in_superperiod=0;} else if (in_superperiod>0) {in_superperiod++; anystring="Sup";} else {anystring="_";} if(header_l(f,i,3)<0) {anystring+=" skip";} else {anystring+=" _";} if(gen_l(f,i)!=2) { s_off=1; for (z=tails_l(f,i,1);z<=tails_l(f,i,2);z++) { SS_compout<0 && header_l(f,i,3)>0) { if(exp_l(f,i,z)!=0.0 && exp_l(f,i,z)!=1.0) { if(Comp_Err_L(f)==0) SS_compout<=2 && gender==2) // do males { s_off=2; for (z=tails_l(f,i,3);z<=tails_l(f,i,4);z++) { SS_compout<0 && header_l(f,i,3)>0) { if(exp_l(f,i,z)!=0.0 && exp_l(f,i,z)!=1.0) { if(Comp_Err_L(f)==0) SS_compout<999) real_month-=1000.; if(ALK_time==last_t) {repli++;} else {repli=1;last_t=ALK_time;} if(header_a(f,i,2)<0 && in_superperiod==0) {in_superperiod=1; anystring="Sup";} else if (header_a(f,i,2)<0 && in_superperiod>0) {anystring="Sup"; in_superperiod=0;} else if (in_superperiod>0) {in_superperiod++; anystring="Sup";} else {anystring="_";} if(header_a(f,i,3)<0) {anystring+=" skip";} else {anystring+=" _";} if(gen_a(f,i)!=2) {s_off=1; for (z=tails_a(f,i,1);z<=tails_a(f,i,2);z++) {SS_compout<0) { if(exp_a(f,i,z)!=0.0 && exp_a(f,i,z)!=1.0) { if(Comp_Err_A(f)==0) SS_compout<=2 && gender==2) // do males {s_off=2; for (z=tails_a(f,i,3);z<=tails_a(f,i,4);z++) {SS_compout<0) { if(exp_a(f,i,z)!=0.0 && exp_a(f,i,z)!=1.0) { if(Comp_Err_A(f)==0) SS_compout<999) real_month-=1000.; if(ALK_time==last_t) {repli++;} else {repli=1;last_t=ALK_time;} if(header_ms(f,i,2)<0 && in_superperiod==0) {in_superperiod=1; anystring="Sup";} else if (header_ms(f,i,2)<0 && in_superperiod>0) {anystring="Sup"; in_superperiod=0;} else if (in_superperiod>0) {in_superperiod++; anystring="Sup";} else {anystring="_";} if(header_ms(f,i,3)<0) {anystring+=" skip";} else {anystring+=" _";} for (z=1;z<=n_abins2;z++) { if(z<=n_abins) s_off=1; else s_off=2; t1=obs_ms_n(f,i,z); // whre: obs_ms_n(f,i,z)=sqrt(var_adjust(6,f)*obs_ms_n(f,i,z)); if(ageerr_type_ms(f,i)>0) {anystring2=" L@A ";} else {anystring2=" W@A ";} if(t1>0.) t1=square(t1); SS_compout<0. && t1>0. && header_ms(f,i,3)>0) { SS_compout<<(obs_ms(f,i,z) -exp_ms(f,i,z)) / (exp_ms_sq(f,i,z)/obs_ms_n(f,i,z))<<" "; // Pearson SS_compout<0) // have some sizefreq data { in_superperiod=0; last_t=-999; for (iobs=1;iobs<=SzFreq_totobs;iobs++) { y=SzFreq_obs_hdr(iobs,1); if(y>=styr && y<=retro_yr) // flag for obs that are used { N_out++; temp2=0.0; temp1=0.0; real_month=abs(SzFreq_obs1(iobs,3)); // month if(real_month>999) real_month-=1000.; f=abs(SzFreq_obs_hdr(iobs,3)); gg=SzFreq_obs_hdr(iobs,4); // gender k=SzFreq_obs_hdr(iobs,6); if(SzFreq_obs_hdr(iobs,2)<0 && in_superperiod==0) {in_superperiod=1; anystring="Sup";} else if (SzFreq_obs_hdr(iobs,2)<0 && in_superperiod>0) {anystring="Sup"; in_superperiod=0;} else if (in_superperiod>0) {in_superperiod++; anystring="Sup";} else {anystring="_";} if(SzFreq_obs_hdr(iobs,3)<0) {anystring+=" skip";} else {anystring+=" _";} p=SzFreq_obs_hdr(iobs,5); // partition z1=SzFreq_obs_hdr(iobs,7); z2=SzFreq_obs_hdr(iobs,8); t=SzFreq_time_t(iobs); ALK_time=SzFreq_time_ALK(iobs); temp2=0.0; temp1=0.0; if(ALK_time==last_t) {repli++;} else {repli=1;last_t=ALK_time;} for (z=z1;z<=z2;z++) { s_off=1; SS_compout<SzFreq_Nbins(k)) s_off=2; SS_compout<<" "<0) { if(SzFreq_exp(iobs,z)!=0.0 && SzFreq_exp(iobs,z)!=1.0) {SS_compout<<(SzFreq_obs(iobs,z)-SzFreq_exp(iobs,z))/sqrt( SzFreq_exp(iobs,z) * (1.-SzFreq_exp(iobs,z)) / SzFreq_sampleN(iobs));} else {SS_compout<<" NA ";} SS_compout<<" "<0) { for (iobs=1;iobs<=Morphcomp_nobs;iobs++) { N_out++; y=Morphcomp_obs(iobs,1); s=Morphcomp_obs(iobs,2); temp1=s-1.; temp2=y; temp = float(y)+0.01*int(100.*(azero_seas(s)+seasdur_half(s))); // temp=temp2+temp1/nseas; f=Morphcomp_obs(iobs,3); k=5+Morphcomp_nmorph; for (z=6;z<=k;z++) { SS_compout<0) { for (TG=1;TG<=N_TG;TG++) { y=TG_release(TG,3); s=TG_release(TG,4); for (TG_t=0;TG_t<=TG_endtime(TG);TG_t++) { N_out++; t = styr+(y-styr)*nseas+s-1; temp1=s-1.; // temp=float(y)+temp1/float(nseas); temp = float(y)+0.01*int(100.*(azero_seas(s)+seasdur_half(s))); // SS_compout<<"Yr Month Seas Subseas Time Fleet Area Repl. Sexes Kind Part Ageerr Sex Lbin_lo Lbin_hi Bin Obs Exp Pearson N effN Like Cum_obs Cum_exp SuprPer Used?"<=TG_mixperiod) {SS_compout<<"_"<1) for (f=1;f<=Nfleet;f++) { SS_compout<=TG_mixperiod) {SS_compout<<"_"<nseas) {s=1; y++;} } } } if(N_out==0) SS_compout<0 || timevary_sel(y+1,f)>0)) { for (gg=1;gg<=gender;gg++) { for (z=1;z<=nlength;z++) {SS2out<0) { for (gg=1;gg<=gender;gg++) for (a=0;a<=nages;a++) {SS2out<0 && wrote_bigreport==1) { SS2out<0 || MG_active(3)>0 || save_for_report>0 || WTage_rd>0) { subseas=1; ALK_idx=(s-1)*N_subseas+subseas; // for midseason Make_AgeLength_Key(s, subseas); // for begin season subseas=mid_subseas; ALK_idx=(s-1)*N_subseas+subseas; // for midseason Make_AgeLength_Key(s, subseas); // for midseason if(s==spawn_seas) { subseas=spawn_subseas; if(spawn_subseas!=1 && spawn_subseas!=mid_subseas) { //don't call get_growth3(subseas) because using an average ave_size Make_AgeLength_Key(s, subseas); // spawn subseas } Make_Fecundity(); } } for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { ALK_idx=(s-1)*N_subseas+mid_subseas; // for midseason Make_FishSelex(); } } equ_Recr=1.0; Fishon=0; int SPRloops; Do_Equil_Calc(equ_Recr); if(N_bycatch==0) {k=0;} else {k=1;} for (int with_BYC=0; with_BYC<=k;with_BYC++) for (int SPRloop1=0; SPRloop1<=7; SPRloop1++) { Fmultchanger1=value(pow(0.0001/Fcrash,0.025)); Fmultchanger2=value(Fcrash/39.); SPRloops=40; switch(SPRloop1) { case 0: { Fmult2=maxpossF; break; } case 1: { Fmult2=Fcrash; break; } case 3: { Fmult2=1; SPRloops=1; break; } case 4: { Fmult2=SPR_Fmult; SPRloops=1; break; } case 5: { Fmult2=Btgt_Fmult; SPRloops=1; break; } case 6: { Fmult2=MSY_Fmult; SPRloops=1; break; } case 7: { Fmult2=MSY_Fmult; SPRloops=40; SPR_trial=value(SSB_equil/SSB_virgin); SPR_last=SPR_trial*2.; YPR_last=-1.; break; } } for (SPRloop=1; SPRloop<=SPRloops; SPRloop++) { if(SPRloop1==7 && SPRloop>1) { if(F_Method>1) {Fmult2*=1.05;} else {Fmult2=Fmult2+(1.0-Fmult2)*0.05;} if (SPR_trial<=0.001) SPRloop=1001; SPR_last=SPR_trial; YPR_last=YPR_dead; } for (f=1;f<=Nfleet;f++) for (s=1;s<=nseas;s++) { t=bio_t_base+s; if(fleet_type(f)==1 || (fleet_type(f)==2 && bycatch_setup(f,3)==1)) { if(SPRloop1!=3) { Hrate(f,t)=Fmult2*Bmark_RelF_Use(s,f); } else { a=styr+(endyr-styr)*nseas+s-1; Hrate(f,t)=Hrate(f,a); } } else if (fleet_type(f)==2 && bycatch_setup(f,3)>1) {Hrate(f,t)=double(with_BYC)*bycatch_F(f,s);} else {Hrate(f,t)=0.0;} } Fishon=1; Do_Equil_Calc(equ_Recr); // SPAWN-RECR: calc equil spawn-recr in the SPR loop SPR_temp=SSB_equil; // Equ_SpawnRecr_Result = Equil_Spawn_Recr_Fxn(SR_parm(2), SR_parm(3), SSB_virgin, Recr_virgin, SPR_temp); // returns 2 element vector containing equilibrium biomass and recruitment at this SPR Equ_SpawnRecr_Result = Equil_Spawn_Recr_Fxn(SR_parm_work(2), SR_parm_work(3), SSB_unf, Recr_unf, SPR_temp); // returns 2 element vector containing equilibrium biomass and recruitment at this SPR Btgt_prof=Equ_SpawnRecr_Result(1); Btgt_prof_rec=Equ_SpawnRecr_Result(2); if(Btgt_prof<0.001 || Btgt_prof_rec<0.001) { Btgt_prof_rec=0.0; Btgt_prof=0.; if(SPRloop1==0) Fcrash=Fmult2; } SS2out<0) { temp+=equ_catage(s,f,g)*r_ages; temp2+=sum(equ_catage(s,f,g)); } if(temp2>0.0) {SS2out<<" "<0 && wrote_bigreport==1 && reportdetail ==1) { SS2out<<"GLOBAL_MSY"<0) { for (int SPRloop1=1;SPRloop1<=nages-1;SPRloop1++) { sel_al_1.initialize(); sel_al_2.initialize(); sel_al_3.initialize(); sel_al_4.initialize(); deadfish.initialize(); deadfish_B.initialize(); SS2out<0) { for(f=1;f<=Nfleet;f++) { if(MSY_loop==1) { sel_al_1(s,g,f)(SPRloop1,nages)=Wt_Age_mid(s,g)(SPRloop1,nages); // selected * wt sel_al_2(s,g,f)(SPRloop1,nages)=Wt_Age_mid(s,g)(SPRloop1,nages); // selected * retained * wt sel_al_3(s,g,f)(SPRloop1,nages)=1.00; // selected numbers sel_al_4(s,g,f)(SPRloop1,nages)=1.00; // selected * retained numbers deadfish(s,g,f)(SPRloop1,nages)=1.00; // sel * (retain + (1-retain)*discmort) deadfish_B(s,g,f)(SPRloop1,nages)=Wt_Age_mid(s,g)(SPRloop1,nages); // sel * (retain + (1-retain)*discmort) * wt } else { sel_al_1(s,g,f,SPRloop1)=Wt_Age_mid(s,g,SPRloop1); // selected * wt sel_al_2(s,g,f,SPRloop1)=Wt_Age_mid(s,g,SPRloop1); // selected * retained * wt sel_al_3(s,g,f,SPRloop1)=1.00; // selected numbers sel_al_4(s,g,f,SPRloop1)=1.00; // selected * retained numbers deadfish(s,g,f,SPRloop1)=1.00; // sel * (retain + (1-retain)*discmort) deadfish_B(s,g,f,SPRloop1)=Wt_Age_mid(s,g,SPRloop1); // sel * (retain + (1-retain)*discmort) * wt } } } } show_MSY=2; // invokes just brief output in benchmark did_MSY=0; Get_Benchmarks(show_MSY); did_MSY=0; } } else { SS2out<<"Actual "; show_MSY=2; // invokes just brief output in benchmark did_MSY=0; Get_Benchmarks(show_MSY); did_MSY=0; } } } SS2out<<"#"<=0.05 && cumdist_save<0.05) // found bin for 5% { if(z==1) {more_comp_info(4)=bins(z);} // set to lower edge else {more_comp_info(4)=bins(z)+(bins(min(z+1,nbins))-bins(z))*(0.05-cumdist_save)/(cumdist-cumdist_save);} } if(cumdist>=0.95 && cumdist_save<0.95) // found bin for 95% { more_comp_info(5)=bins(z)+(bins(min(z+1,nbins))-bins(z))*(0.95-cumdist_save)/(cumdist-cumdist_save); } cumdist_save=cumdist; temp=obs(z)-exp(z); // obs-exp if(z>tails(1)) { more_comp_info(6)+=square(temp2-temp); temp1+=square(temp); } temp2=temp; } if(sex==3 && sexes==2) // do sex ratio { more_comp_info(19)=sum(obs(tails(1),tails(2))); // sum obs female fractions = %female more_comp_info(20)=sum(exp(tails(1),tails(2))); // sum exp female fractions = %female for(z=tails(3);z<=tails(4);z++) { temp=obs(z)-exp(z); // obs-exp if(z>tails(3)) { more_comp_info(6)+=square(temp2-temp); temp1+=square(temp); } temp2=temp; } } more_comp_info(6)=(more_comp_info(6)/temp1) - 2.0; } if(sex==1 || (sex==3&&sexes==2)) // need females { // where means() holds midpoints of the data length bins more_comp_info(7)=(obs(tails(1),tails(2))*means(tails(1),tails(2)))/sum(obs(tails(1),tails(2))); more_comp_info(8)=(exp(tails(1),tails(2))*means(tails(1),tails(2)))/sum(exp(tails(1),tails(2))); more_comp_info(9)=more_comp_info(7)-more_comp_info(8); // calc tails of distribution and Durbin-Watson for autocorrelation temp1=0.0; cumdist_save=0.0; cumdist=0.0; for(z=tails(1);z<=tails(2);z++) { cumdist+=exp(z); if(cumdist>=0.05*more_comp_info(20) && cumdist_save<0.05*more_comp_info(20)) // found bin for 5% { if(z==1) {more_comp_info(10)=bins(z);} // set to lower edge else {more_comp_info(10)=bins(z)+(bins(min(z+1,nlen_bin))-bins(z))*(0.05*more_comp_info(20)-cumdist_save)/(cumdist-cumdist_save);} } if(cumdist>=0.95*more_comp_info(20) && cumdist_save<0.95*more_comp_info(20)) // found bin for 95% { more_comp_info(11)=bins(z)+(bins(min(z+1,nlen_bin))-bins(z))*(0.95*more_comp_info(20)-cumdist_save)/(cumdist-cumdist_save); } cumdist_save=cumdist; temp=obs(z)-exp(z); // obs-exp if(z>tails(1)) { more_comp_info(12)+=square(temp2-temp); temp1+=square(temp); } temp2=temp; // save current delta } more_comp_info(12)=(more_comp_info(12)/temp1) - 2.0; } if(sex>=2 && sexes==2) // need males { more_comp_info(13)=(obs(tails(3),tails(4))*means(tails(3),tails(4)))/sum(obs(tails(3),tails(4))); more_comp_info(14)=(exp(tails(3),tails(4))*means(tails(3),tails(4)))/sum(exp(tails(3),tails(4))); more_comp_info(15)=more_comp_info(13)-more_comp_info(14); // calc tails of distribution and Durbin-Watson for autocorrelation temp1=0.0; cumdist_save=0.0; cumdist=0.0; // where (1-more_comp_info(20)) is the total of male fractions for(z=tails(3);z<=tails(4);z++) { cumdist+=exp(z); if(cumdist>=0.05*(1.0-more_comp_info(20)) && cumdist_save<0.05*(1.0-more_comp_info(20))) // found bin for 5% { if(z==nbins+1) {more_comp_info(16)=bins(z);} // set to lower edge else {more_comp_info(16)=bins(z)+(bins(min(z+1,2*nbins))-bins(z))*(0.05*more_comp_info(20)-cumdist_save)/(cumdist-cumdist_save);} } if(cumdist>=0.95*(1.0-more_comp_info(20)) && cumdist_save<0.95*(1.0-more_comp_info(20))) // found bin for 95% { more_comp_info(17)=bins(z)+(bins(min(z+1,2*nbins))-bins(z))*(0.95*(1.0-more_comp_info(20))-cumdist_save)/(cumdist-cumdist_save); } cumdist_save=cumdist; temp=obs(z)-exp(z); // obs-exp if(z>tails(3)) { more_comp_info(18)+=square(temp2-temp); temp1+=square(temp); } temp2=temp; // save current delta } more_comp_info(18)=(more_comp_info(18)/temp1) - 2.0; } return more_comp_info; } FUNCTION void Make_AgeLength_Key(const int s, const int subseas) { //******************************************************************** /* SS_Label_FUNCTION 31 Make_AgeLength_Key */ // this is called for each subseason of each year // checks to see if a re-calc of the ALK is needed for that time step // if it is, then it loops through all possible biological entities "g" (sex, growth pattern, settlement event, platoon) // then it retrieves the previously calculated and stored mean size-at-age from Ave_Size(t,subseas,gstart) // moves these mean sizes into a _W working vector // then it calls calc_ALK to make and store the age-length key for that subseason for each biological entity int gstart=0; ALK_idx=(s-1)*N_subseas+subseas; dvar_vector use_Ave_Size_W(0,nages); dvar_vector use_SD_Size(0,nages); imatrix ALK_range_use(0,nages,1,2); if(ALK_subseas_update(ALK_idx)==1) // so need to calculate { ALK_subseas_update(ALK_idx)=0; // reset to 0 to indicate update has been done gp=0; for (int sex=1;sex<=gender;sex++) for (GPat=1;GPat<=N_GP;GPat++) { gp=gp+1; gstart=g_Start(gp); // base platoon for (settle=1;settle<=N_settle_timings;settle++) { gstart+=N_platoon; if(recr_dist_pattern(GPat,settle,0)>0) { // update the sd_within and sb_between here. Used to be in growth2 function // SS_Label_Info_16.5.2 #do calculations related to std.dev. of size-at-age // SS_Label_Info_16.5.3 #if (y=styr), calc CV_G(gp,s,a) by interpolation on age or LAA // doing this just at y=styr prevents the CV from changing as time-vary growth updates over time g=gstart; if(CV_const(gp)>0 && y==styr) { for (a=0;a<=nages;a++) { if(real_age(g,ALK_idx,a)=AFIX2_forCV) {CV_G(gp,ALK_idx,a)=CVLmax(gp);} else if(CV_depvar_a==0) {CV_G(gp,ALK_idx,a)=CVLmin(gp) + (Ave_Size(t,subseas,g,a)-Lmin(gp))*CV_delta(gp);} else {CV_G(gp,ALK_idx,a)=CVLmin(gp) + (real_age(g,ALK_idx,a)-AFIX)*CV_delta(gp);} } // end age loop } else { // already set constant to CVLmi } // SS_Label_Info_16.5.4 #calc stddev of size-at-age from CV_G(gp,s,a) and Ave_Size(t,g,a) if(CV_depvar_b==0) { Sd_Size_within(ALK_idx,g)=SD_add_to_LAA+elem_prod(CV_G(gp,ALK_idx),Ave_Size(t,subseas,g)); } else { Sd_Size_within(ALK_idx,g)=SD_add_to_LAA+CV_G(gp,ALK_idx); } // SS_Label_Info_16.3.5 #if platoons being used, calc the stddev between platoons if(N_platoon>1) { Sd_Size_between(ALK_idx,g)=Sd_Size_within(ALK_idx,g)*sd_between_platoon; Sd_Size_within(ALK_idx,g)*=sd_within_platoon; } if(docheckup==1) { echoinput<<"with lingrow; subseas: "<1) use_Ave_Size_W += shadow(gp2)*Sd_Size_between(ALK_idx,gstart); int ALK_phase; if(Grow_logN==0) { int ALK_finder=(ALK_idx-1)*gmorph+g; if( (do_once==1 || (current_phase()>ALK_phase)) && !last_phase() ) { ALK_phase=current_phase(); ALK_range_use=calc_ALK_range(len_bins,use_Ave_Size_W,use_SD_Size,ALK_tolerance); // later need to offset according to g ALK_range_g_lo(ALK_finder)=column(ALK_range_use,1); ALK_range_g_hi(ALK_finder)=column(ALK_range_use,2); } ALK(ALK_idx,g)=calc_ALK(len_bins,ALK_range_g_lo(ALK_finder),ALK_range_g_hi(ALK_finder),use_Ave_Size_W,use_SD_Size); } else { ALK(ALK_idx,g)=calc_ALK_log(log_len_bins,use_Ave_Size_W,use_SD_Size); } } // end platoon loop } } // end settle loop } // end growth pattern&gender loop } } // end Make_AgeLength_Key FUNCTION imatrix calc_ALK_range(const dvector &len_bins, const dvar_vector &mean_len_at_age, const dvar_vector &sd_len_at_age, const double ALK_tolerance) { //SS_Label_FUNCTION_31.2 # calc_ALK_range finds the range for the distribution of length for each age int a, z=0; // declare indices int nlength = len_bins.indexmax(); // find number of lengths int nages = mean_len_at_age.indexmax(); // find number of ages imatrix ALK_range(0,nages,1,2); // stores minimum and maximum dvariable len_dev; double ALK_tolerance_2; ALK_tolerance_2=1.0-ALK_tolerance; for (a = 0; a <= nages; a++) { if(ALK_tolerance==0.00) { ALK_range(a,1)=1; ALK_range(a,2)=nlength; } else { z=1; temp=0.0; while(temp0) // block { if(do_once==1) echoinput<<"block pattern "<0) // env link { if(do_once==1) echoinput<<"env_link to env_variable: "<0) // devs { k=timevary_setup(8); // dev used if(do_once==1) echoinput<<"dev vector #: "<20) { picker-=20; continue_last=1; } if(picker>10) { picker-=10; } switch(picker) { case 1: { for (j=timevary_setup(10);j<=timevary_setup(11);j++) { parm_timevary(tvary,j)*=mfexp(parm_dev(k,j)*parm_dev_stddev(k)); } break; } case 2: { for (j=timevary_setup(10);j<=timevary_setup(11);j++) { parm_timevary(tvary,j)+=parm_dev(k,j)*parm_dev_stddev(k); } break; } case 3: { parm_dev_rwalk(k,timevary_setup(10))=parm_dev(k,timevary_setup(10))*parm_dev_stddev(k); parm_timevary(tvary,timevary_setup(10))+=parm_dev_rwalk(k,timevary_setup(10)); for (j=timevary_setup(10)+1;j<=timevary_setup(11);j++) { parm_dev_rwalk(k,j)=parm_dev_rwalk(k,j-1)+parm_dev(k,j)*parm_dev_stddev(k); parm_timevary(tvary,j)+=parm_dev_rwalk(k,j); } break; } case 4: // mean reverting random walk { parm_dev_rwalk(k,timevary_setup(10))=parm_dev(k,timevary_setup(10))*parm_dev_stddev(k); parm_timevary(tvary,timevary_setup(10))+=parm_dev_rwalk(k,timevary_setup(10)); for (j=timevary_setup(10)+1;j<=timevary_setup(11);j++) { // =(1-rho)*mean + rho*prevval + dev // where mean = 0.0 parm_dev_rwalk(k,j)=parm_dev_rho(k)*parm_dev_rwalk(k,j-1)+parm_dev(k,j)*parm_dev_stddev(k); parm_timevary(tvary,j)+=parm_dev_rwalk(k,j); } break; } } if(continue_last==1) { for(j=timevary_setup(11)+1;j<=YrMax;j++) parm_timevary(tvary,j) = parm_timevary(tvary,timevary_setup(11)); } } if(do_once==1) echoinput<<"result by year: "<-1000.) {k=j;} else {k=-1000-TG_parm_PH(j);} TG_report(f)=mfexp(TG_parm(k))/(1.+mfexp(TG_parm(k))); } j+=Nfleet1; if(TG_parm_PH(j)==-1000.) {TG_rep_decay(f)=TG_rep_decay(f-1);}// do nothing keep same value else { if (TG_parm_PH(j)>-1000.) {k=j;} else {k=-1000-TG_parm_PH(j);} TG_rep_decay(f) = TG_parm(k); } } for (TG=1;TG<=N_TG;TG++) { firstseas=int(TG_release(TG,4)); // release season t=int(TG_release(TG,5)); // release t index calculated in data section from year and season of release p=int(TG_release(TG,2)); // release area gg=int(TG_release(TG,6)); // gender (1=fem; 2=male; 0=both a1=int(TG_release(TG,7)); // age at release TG_alive.initialize(); if(gg==0) { for (g=1;g<=gmorph;g++) {TG_alive(p,g) = natage(t,p,g,a1);} // gets both genders } else { for (g=1;g<=gmorph;g++) { if(sx(g)==gg) {TG_alive(p,g) = natage(t,p,g,a1);} // only does the selected gender } } if(TG_parm_PH(TG)==-1000.) { }// do nothing keep same TG_init_loss else { if (TG_parm_PH(TG)>-1000.) {k=TG;} else {k=-1000-TG_parm_PH(TG);} TG_init_loss=mfexp(TG_parm(k))/(1.+mfexp(TG_parm(k))); } // get chronic loss parameter j=TG+N_TG; if(TG_parm_PH(j)==-1000.) { }// do nothing keep same value else { if (TG_parm_PH(j)>-1000.) {k=j;} else {k=-1000-TG_parm_PH(j);} TG_chron_loss=mfexp(TG_parm(k))/(1.+mfexp(TG_parm(k))); } TG_alive /= sum(TG_alive); // proportions across morphs at age a1 in release area p at time of release t TG_alive *= TG_release(TG,8); // number released as distributed across morphs TG_alive *= (1.-TG_init_loss); // initial mortality if(save_for_report>0) { TG_save(TG,1)=value(TG_init_loss); TG_save(TG,2)=value(TG_chron_loss); } TG_t=0; for (y=TG_release(TG,3);y<=endyr;y++) { for (s=firstseas;s<=nseas;s++) { if(save_for_report>0 && TG_t<=TG_endtime(TG)) {TG_save(TG,3+TG_t)=value(sum(TG_alive)); } // OK to do simple sum because only selected morphs are populated for (p=1;p<=pop;p++) { for (g=1;g<=gmorph;g++) if(TG_use_morph(TG,g)>0) { for (f=1;f<=Nfleet;f++) if (fleet_area(f)==p) { // calculate recaptures by fleet // NOTE: Sel_for_tag(t,g,f,a1) = sel_al_4(s,g,f,a1)*Hrate(f,t) if(F_Method==1) { TG_recap_exp(TG,TG_t,f)+=TG_alive(p,g) // tags recaptured *mfexp(-(natM(s,GP3(g),a1)+TG_chron_loss)*seasdur_half(s)) *Sel_for_tag(t,g,f,a1) *TG_report(f) *mfexp(TG_t*TG_rep_decay(f)); } else // use for method 2 and 3 { TG_recap_exp(TG,TG_t,f)+=TG_alive(p,g) *Sel_for_tag(t,g,f,a1)/(Z_rate(t,p,g,a1)+TG_chron_loss) *(1.-mfexp(-seasdur(s)*(Z_rate(t,p,g,a1)+TG_chron_loss))) *TG_report(f) *mfexp(TG_t*TG_rep_decay(f)); } if(docheckup==1) echoinput<<" TG_"<0) { if(Hermaphro_Option==1) { TG_alive(p,g+k) += TG_alive(p,g)*Hermaphro_val(GP4(g),a1); // increment males with females TG_alive(p,g) *= (1.-Hermaphro_val(GP4(g),a1)); // decrement females } else if(Hermaphro_Option==-1) { TG_alive(p,g) += TG_alive(p,g+k)*Hermaphro_val(GP4(g+k),a1); // increment females with males TG_alive(p,g+k) *= (1.-Hermaphro_val(GP4(g+k),a1)); // decrement males } } } } if(do_migration>0) // movement between areas of tags { TG_alive_temp=TG_alive; TG_alive=0.0; for (g=1;g<=gmorph;g++) if(use_morph(g)>0) { for (p=1;p<=pop;p++) // source population for (p2=1;p2<=pop;p2++) // destination population { k=move_pattern(s,GP4(g),p,p2); if(k>0) TG_alive(p2,g) += TG_alive_temp(p,g)*migrrate(y,k,a1); } } if(docheckup==1) echoinput<<" Tag_alive after survival and movement "<0) { for (TG=1;TG<=N_TG;TG++) { overdisp=TG_parm(2*N_TG+TG); for (TG_t=TG_mixperiod;TG_t<=TG_endtime(TG);TG_t++) { TG_recap_exp(TG,TG_t)(1,Nfleet)+=1.0e-6; // add a tiny amount TG_recap_exp(TG,TG_t,0) = sum(TG_recap_exp(TG,TG_t)(1,Nfleet)); TG_recap_exp(TG,TG_t)(1,Nfleet)/=TG_recap_exp(TG,TG_t,0); if(Nfleet>1) TG_like1(TG)-=TG_recap_obs(TG,TG_t,0)* (TG_recap_obs(TG,TG_t)(1,Nfleet) * log(TG_recap_exp(TG,TG_t)(1,Nfleet))); TG_like2(TG)-=log_negbinomial_density(TG_recap_obs(TG,TG_t,0),TG_recap_exp(TG,TG_t,0),overdisp); } } if(do_once==1) cout<<" did tag obj_fun "<