/[MITgcm]/MITgcm/utils/exch2/matlab-topology-generator/driver.m
ViewVC logotype

Contents of /MITgcm/utils/exch2/matlab-topology-generator/driver.m

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.5 - (show annotations) (download)
Sat Oct 20 17:43:41 2012 UTC (11 years, 6 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64q, checkpoint64p, checkpoint64s, checkpoint64r, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint64i, checkpoint64h, checkpoint64k, checkpoint64j, checkpoint64m, checkpoint64l, checkpoint64o, checkpoint64n, checkpoint64a, checkpoint64c, checkpoint64b, checkpoint64e, checkpoint64d, checkpoint64g, checkpoint64f, checkpoint65, checkpoint66g, checkpoint66f, checkpoint66e, checkpoint66d, checkpoint66c, checkpoint66b, checkpoint66a, checkpoint66o, checkpoint66n, checkpoint66m, checkpoint66l, checkpoint66k, checkpoint66j, checkpoint66i, checkpoint66h, checkpoint65z, checkpoint65x, checkpoint65y, checkpoint65r, checkpoint65s, checkpoint65p, checkpoint65q, checkpoint65v, checkpoint65w, checkpoint65t, checkpoint65u, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65o, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e, HEAD
Changes since 1.4: +7 -1 lines
---- Oct 13, 2010 (after checkpoint62l)
 matlab-topology-generator is no longer supported and does not work anymore
 since latest additions to pkg/exch2 (for OBCS) have not been incorporated into
 the matlab scripts.

1 % $Header: /u/gcmpack/MITgcm/utils/exch2/matlab-topology-generator/driver.m,v 1.4 2009/05/02 02:41:05 jmc Exp $
2 % $Name: $
3
4 % Create exch2 communication map and schedule for a cube sphere grid with
5 % constant tile size tnx x tny.
6
7 fprintf('Since Oct 13, 2010 (after checkpoint62l), matlab-topology-generator\n');
8 fprintf(' is no longer supported and does not work anymore (due to additions to\n')
9 fprintf(' pkg/exch2 which have not been incorporated into the matlab scripts).\n')
10 fprintf('examples of "data.exch2" file are provided in MITgcm/utils/exch2/input/\n')
11 return
12
13 % Use red-green-blue shorthand for cube index space specification
14 % In this notation cube faces are laid out as shown below
15 %
16 % f5(ng,nb) f6(nr,nb)
17 % f3(nb,nr) f4(ng,nr)
18 % f1(nr,ng) f2(nb,ng)
19 %---
20 %nr=32; ng=64; nb=128;
21 nr=32; ng=32; nb=32;
22 %nr=510; ng=510; nb=510;
23 %nr=30; ng=30; nb=30;
24
25 %- Choose tile subgrid sizes for each face.
26 % nr,ng,nb must be integer multiples of tnx and tny.
27 %---
28 %tnx=85;tny=85;
29 %tnx=10;tny=10;
30 %tnx=16;tny=16;
31 tnx=16;tny=32;
32 %tnx=32;tny=32;
33 %tnx=32;tny=8;
34 %tnx=192;tny=64;
35 tnx=8;tny=4;
36 %tnx=16;tny=8; % <- adjustment.cs-32x32x1
37
38 %- select option for global-IO mapping: mapIO
39 % =-1 : old format: put domains 1 after the other in the X direction
40 % this is not necessary "compact"
41 % = 1 : compact format, 1 domain after the other (mostly in Y direction)
42 % but needs to fold some domains (face) if too large
43 % = 0 : compact format (= 1 long line), one domain after the other
44 %---
45 mapIO=-1;
46
47 % nr = 90; ng = 360; nb = 90; tnx=90; tny=90; mapIO=1; %- polar-cap grid
48
49 if mapIO==1,
50 %- calculate size in X of global-IO map: = greater divider of nr,ng,nb
51 [divlist]=exch2_divider([nr ng nb]);
52 mapIO=prod(divlist);
53 end
54
55 % Make list of domains. Assume MITgcm standard cube layout, three
56 % color path labeling and global indexing convention.
57 clear domain ndomains domain_nx domain_ny
58 [ndomains,domain,domain_nx,domain_ny] = exch2_setup_cs6_domains(nr,ng,nb);
59
60 % Now create basic tile definitions for each domain with their offsets
61 % within the domain
62 % tn[xy] :: tile extents in x and y
63 % tbase[xy] :: offset of tile local coords from domain coords
64 % :: tdom[xy] = tlocal[xy] + tbase[xy]
65 % t[xy]globallo :: global composite domain coordinate associated with
66 % :: tlocal[xy]=(1,1)
67 % mydomain :: domain number the tile belongs to
68 % tileid :: identifier number for tile
69 % tx :: tile x coordinate within domain tiling
70 % ty :: tile y coordinate within domain tiling
71 clear tile
72 [tile,ntiles,ierr,domain]= ...
73 exch2_setup_cs6_tiles(tnx,tny,domain,ndomains,mapIO);
74
75 % Set neighbor domains for each tile
76 [tile] = exch2_setup_cs6_get_neighbor_domains(tile, domain, ntiles);
77
78 % Let try and figure out what points I send my edges to. We do this by
79 % a search procedure rather than a functional relationship. The search
80 % procedure visits each edge of each tile in turn. For internal edges
81 % (edges that don't cross a domain boundary) the index range at +/-1
82 % in the normal direction to the edge is searched for. This identifies
83 % all the tiles that border this tile.
84 [tile] = exch2_setup_cs6_get_internal_neighbor_tiles( tile, domain, ntiles);
85 [tile] = exch2_setup_cs6_get_internal_neighbor_index_ranges(tile, domain, ntiles);
86
87 [tile] = exch2_setup_cs6_get_external_neighbor_tiles( tile, domain, ntiles);
88
89 % Draw a picture of the full domain and its tiles in the standard cube layout
90 % exch2_setup_cs6_plot(domain, tile, tnx, tny);
91
92 % Squeeze the blank tiles out
93 [tile, domain] = exch2_setup_squeeze_blanks(domain, tile, tnx, tny);
94
95 % Write attributes for a tile
96 exch2_setup_cs6_print( domain, tile, tnx, tny, mapIO, 1)

  ViewVC Help
Powered by ViewVC 1.1.22