source: Roms_tools/Nesting_tools/interp_initial.m @ 2

Last change on this file since 2 was 1, checked in by cholod, 13 years ago

import Roms_Agrif

File size: 1.8 KB
Line 
1function handles=interp_initial(h,handles);
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3%
4% Get everything in order to compute the child initial file
5%
6%  Further Information: 
7%  http://www.brest.ird.fr/Roms_tools/
8
9%  This file is part of ROMSTOOLS
10%
11%  ROMSTOOLS is free software; you can redistribute it and/or modify
12%  it under the terms of the GNU General Public License as published
13%  by the Free Software Foundation; either version 2 of the License,
14%  or (at your option) any later version.
15%
16%  ROMSTOOLS is distributed in the hope that it will be useful, but
17%  WITHOUT ANY WARRANTY; without even the implied warranty of
18%  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19%  GNU General Public License for more details.
20%
21%  You should have received a copy of the GNU General Public License
22%  along with this program; if not, write to the Free Software
23%  Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24%  MA  02111-1307  USA
25%
26%  Copyright (c) 2004-2006 by Pierrick Penven
27%  e-mail:Pierrick.Penven@ird.fr 
28%
29%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30
31if isempty(handles.parentgrid)
32  handles=get_parentininame(h,handles);
33end
34if isempty(handles.childgrid)
35  handles=get_childgrdname(h,handles);
36end
37if isempty(handles.parentini)
38  handles=get_parentininame(h,handles);
39end
40lev=str2num(handles.parentini(end));
41if isempty(lev)
42  childname=[handles.parentini,'.1'];
43else
44  childname=[handles.parentini(1:end-1),num2str(lev+1)];
45end
46Answer=questdlg(['Child initial name: ',childname,' OK ?'],'','Yes','Cancel','Yes');
47switch Answer
48 case {'Cancel'}
49  return
50 case 'Yes'
51  handles.childini=childname;
52end
53nested_initial(handles.childgrid,handles.parentini,handles.childini,...
54               handles.vertical_correc,handles.extrapmask,handles.biol,handles.pisces)
55return
Note: See TracBrowser for help on using the repository browser.