Changeset 1807


Ignore:
Timestamp:
Oct 20, 2017, 11:24:49 AM (7 years ago)
Author:
bclmd
Message:

Adding chemistry initialization for newstart

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/libf/dynphy_lonlat/phystd/newstart.F

    r1783 r1807  
    616616      write(*,*) 'slab_ocean_0 : initialisation of slab
    617617     $ocean variables'
     618      write(*,*) 'chemistry_ini : initialisation of chemical profiles'
    618619
    619620        write(*,*)
     
    15251526
    15261527
     1528c       chemistry_initialisation
     1529c       ------------------------------------------------
     1530        else if (trim(modif) .eq. 'chemistry_ini') then
     1531        write(*,*)'OK: initialisation of chemical profiles'
     1532
     1533
     1534          call inichim_newstart(ngridmx, nqtot, q, qsurf, ps,
     1535     &                          1, 0)
     1536
     1537         ! We want to have the very same value at lon -180 and lon 180
     1538          do l = 1,llm
     1539             do j = 1,jjp1
     1540                do iq = 1,nqtot
     1541                   q(iip1,j,l,iq) = q(1,j,l,iq)
     1542                end do
     1543             end do
     1544          end do
     1545
    15271546
    15281547        else
Note: See TracChangeset for help on using the changeset viewer.