Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

CESM 1.1.z and CESM 1.2.z - Output "ap" overwrites "kp

santos

Member
Affected Releases - CESM1.1.z and CESM1.2.z
UPDATED:
  • Fixed in CESM1.2.2
(Bugzilla 1980)

In history files, the value of "kp" is actually what "ap" should be, and "ap" is not set. Fixable with the following change in cam_history.F90:

-ierr=pio_put_var (tape(t)%File, tape(t)%kpid, (/start/), (/count1/),(/ ap /))
+ierr=pio_put_var (tape(t)%File, tape(t)%apid, (/start/), (/count1/),(/ ap /))
 
Top