Ignore:
Timestamp:
May 23, 2012, 9:20:24 AM (13 years ago)
Author:
flefevre
Message:

ensure that initial values of chemical species are identical at
longitudes -180 and 180.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/dyn3d/newstart.F

    r618 r664  
    849849         
    850850          call inichim_newstart(q, qsurf, ps, flagh2o, flagthermo)
     851
     852         ! We want to have the very same value at lon -180 and lon 180
     853          do l = 1,llm
     854             do j = 1,jjp1
     855                do iq = 1,nqmx
     856                   q(iip1,j,l,iq) = q(1,j,l,iq)
     857                end do
     858             end do
     859          end do
     860
    851861          write(*,*) 'inichim_newstart: chemical species and
    852862     $ water vapour initialised'
    853863
    854 
    855 c       ini_q-h2o : as above exept for the water vapour tracer
     864c       ini_q-h2o : as above except for the water vapour tracer
    856865c       ------------------------------------------------------
    857866        else if (trim(modif) .eq. 'ini_q-h2o') then
     
    872881            enddo
    873882          endif
     883
    874884          call inichim_newstart(q, qsurf, ps, flagh2o, flagthermo)
     885
     886         ! We want to have the very same value at lon -180 and lon 180
     887          do l = 1,llm
     888             do j = 1,jjp1
     889                do iq = 1,nqmx
     890                   q(iip1,j,l,iq) = q(1,j,l,iq)
     891                end do
     892             end do
     893          end do
     894
    875895          write(*,*) 'inichim_newstart: chemical species initialised
    876896     $ (except water vapour)'
    877 
    878897
    879898c      wetstart : wet atmosphere with a north to south gradient
Note: See TracChangeset for help on using the changeset viewer.