Skip to content

Commit

Permalink
Merge pull request #23 from jimmielin/hplin/fix_tskin
Browse files Browse the repository at this point in the history
Fix TSKIN field to correct value
  • Loading branch information
lizziel authored Apr 12, 2023
2 parents ab58d4e + bda2db3 commit 217721d
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Externals_CAM.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ local_path = src/chemistry/geoschem/geoschem_src
required = True

[hemco]
tag = hemco-cesm1_1_1_hemco3_6_2
tag = hemco-cesm1_1_3_hemco3_6_2
protocol = git
repo_url = https://github.com/ESCOMP/HEMCO_CESM.git
local_path = src/hemco
Expand Down
12 changes: 9 additions & 3 deletions src/chemistry/geoschem/chemistry.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2785,12 +2785,18 @@ subroutine chem_timestep_tend( state, ptend, cam_in, cam_out, dT, pbuf, fh2o )
! Dimensions : nX, nY
State_Met(LCHNK)%SLP (1,:nY) = state%ps(:nY)*0.01e+0_fp

! Field : TS, TSKIN
! Description: Surface temperature, surface skin temperature
! Field : TS
! Description: Surface temperature
! Unit : K
! Dimensions : nX, nY
State_Met(LCHNK)%TS (1,:nY) = cam_in%TS(:nY)
State_Met(LCHNK)%TSKIN (1,:nY) = cam_in%TS(:nY)

! Field : TSKIN
! Description: Surface skin temperature
! Remarks : NOT to be confused with TS (T at 2m) (hplin, 3/20/23)
! Unit : K
! Dimensions : nX, nY
State_Met(LCHNK)%TSKIN (1,:nY) = cam_in%SST(:nY)

! Field : SWGDN
! Description: Incident radiation @ ground
Expand Down

0 comments on commit 217721d

Please sign in to comment.