Skip to content
Snippets Groups Projects
Commit 47ac9613 authored by ronesy's avatar ronesy
Browse files

Change cinitime timestamp for scalars of initial mixing ratios to account for...

Change cinitime timestamp for scalars of initial mixing ratios to account for length of back trajectory
parent 52643eac
No related branches found
No related tags found
No related merge requests found
......@@ -707,7 +707,7 @@ subroutine init_co2(files, config, fluxes, obs, states, covar)
! assign time stamps to mixing ratio scalar time steps
do n = 1, ntcini
states%cinitime(n) = juldatei + dble((n-1)*cinires)
states%cinitime(n) = juldatei + dble((n-1)*cinires) - trajdays
end do
print*, 'init_co2: cinitime = ',states%cinitime
......
......@@ -412,7 +412,7 @@ subroutine init_ghg(files, config, fluxes, obs, states, covar)
! time stamp of initial mixing ratio scalars
do n = 1, ntcini
states%cinitime(n) = juldatei + dble((n-1)*cinires)
states%cinitime(n) = juldatei + dble((n-1)*cinires) - trajdays
end do
print*, 'init_ghg: cinitime = ',states%cinitime
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment