%------------------------------------------------------------------ % STEP 1 - selection %------------------------------------------------------------------ % CONFIGURATION PARAMETERS OF EXTRACTION % % Example for CCS, adapt for your own. If you cannot % % Select subindices of subdomain within the NEPD grid on rho_grid. sub_I=137:266; sub_J=10:139; % NOTE: if you do not know how to select the sub indeces of % the subdomain you want send an email to globec_extract@o3d.org % with the approximate coordinates and we will do it for you. % The indices range should be at leat multiple of 2 % Select name to assign to subdomain (no spaces, e.g. 'ccs') nameit='nepd_ccs'; % Select time of initial condition year=1966; month=1; day=15; inittime=datenum(year,month,day); % Select time range for boundary conditions (pre-post 1976 run) year=1966; month=1; day=15; trange(1)=datenum(year,month,day); year=1986; month=1; day=15; trange(2)=datenum(year,month,day); % Select number of passive tracers to add in subdomain np=3; % Select NPZD switch % npzd=1 add NPZD fields in boundary and initial condition files % npzd=0 does not add. npzd=1; % note if you add the NPZD fields it is your responsability % to provide the open boundary and initial condition values. % Select resolution of sudomain. % res=1 keep original % res=2 double the original resolution for the subdomain % currently you can only select res=1. If you need more % it can be done. Email globec_extract@o3d.org. res=1;