next up previous
Next: 5. Running TM5 Up: 4. Versions Previous: 4.3 Cy2

Subsections

4.4 Cy3

Used for coupling to IFS within the GEMS project.

cvs tag date changes
cy3r1 2006-09-04 initial release

Prior to the TM5 code sprint in januari 2008, the high resolution code was included in the base. Some notes about the main changes.

4.4.1 No lli_1x1 anymore

The lli_1x1 and lli_z_1x1 grid description do not exist as special variables anymore, but are treated as any other grid.

Change old code:

          use meteo, only : lli_1x1, lli_z_1x1
          ... lli_1x1 ...
          ... lli_z_1x1 ...
into:
          use dims, only : iglbsfc
          use meteo, only : lli, lli_z
          ... lli(iglbsfc) ...
          ... lli_z(iglbsfc) ...

4.4.2 No surface fieldss cp_sfc etc anymore

The used to be a special set of meteo fields called 'xxx_sfc' etc., for some reason defined as 'emission' fields ... This has been changed now, all fields are in a 'cp_dat(region)' . The former 'cp_sfc' is thus 'cp_dat(iglbsfc)'. The data per region used to be available, for some reason stored as emmission fields.

Convert old code:

           use meteo, only : cp_sfc, cp
           ... cp_sfc%data(i,j,1) ...
           ... cp(region)%surf(i,j) ...
        
to the new versions:
           use dims, only : iglbsfc
           use meteo, only : cp_dat
           ... cp_dat(iglbsfc)%data(i,j,) ...
           ... cp_dat(region )%data(i,j,1) ...
        

4.4.3 Bug fixes during code sprint

Some bugs were fixed during the code sprint, pleasu update from the cvs server:

4.4.4 Updates made during code sprint

Some of the updates commited during the sprint:


next up previous
Next: 5. Running TM5 Up: 4. Versions Previous: 4.3 Cy2
Created at IMAU on Tue Mar 3 05:00:05 CET 2009 by a slave chained in the basement