123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- !
- ! TM5 grid definitions
- !
- !
- ! For each region define:
- !
- ! xcyc : 1 if the region has cyclic x-boundary conditions, 0 otherwise
- ! touch_np : 1 if region touches the north pole, 0 otherwise
- ! touch_sp : 1 if region touches the south pole, 0 otherwise
- ! xbeg : the westmost border of the region
- ! xend : the eastmost border of the region
- ! ybeg : the southmost border of the region
- ! yend : the northmost border of the region
- !
- ! Refinement factors (<= maxref)
- ! tref may differ from xref/yref.
- ! In the current implementation it should be 1,2,4,6,...
- !
- ! maximum refinement factor (can be arbitrary in principle):
- region.maxref : 10
- ! basic (coarsest) resolution in degrees for x and y (dz default 1.0)' )
- region.dx : 0.5
- region.dy : 0.5
- region.dz : 1.0
- ! globe as single grid cell, used for global mass conservation ;
- ! this region has index '0' in the model;
- ! DO NOT CHANGE THIS DEFINITION !
- region.globe.xcyc : 1
- region.globe.touch_np : 1
- region.globe.touch_sp : 1
- region.globe.xbeg : -180
- region.globe.xend : 180
- region.globe.ybeg : -90
- region.globe.yend : 90
- region.globe.im : 1
- region.globe.jm : 1
- region.globe.xref : 1
- region.globe.yref : 1
- region.globe.zref : 1
- region.globe.tref : 1
- region.globe.redgrid.nh.n : 0
- region.globe.redgrid.nh.comb :
- region.globe.redgrid.sh.n : 0
- region.globe.redgrid.sh.comb :
- ! global 0.5x0.5 for surface fields ;
- ! not used for zooming, thus no 'ref's required
- region.glb050x050.xcyc : 1
- region.glb050x050.touch_np : 1
- region.glb050x050.touch_sp : 1
- region.glb050x050.xbeg : -180
- region.glb050x050.xend : 180
- region.glb050x050.ybeg : -90
- region.glb050x050.yend : 90
- region.glb050x050.im : 720
- region.glb050x050.jm : 360
- region.glb050x050.xref : 1
- region.glb050x050.yref : 1
- region.glb050x050.zref : 1
- region.glb050x050.tref : 1
- region.glb050x050.redgrid.nh.n : 0
- region.glb050x050.redgrid.nh.comb :
- region.glb050x050.redgrid.sh.n : 0
- region.glb050x050.redgrid.sh.comb :
-
|