Skip to content

Commit

Permalink
Merge branch 'mahf708/eam/sathis' into next (PR #6641)
Browse files Browse the repository at this point in the history
3rd merge of this branch.  Reactivate test with smaller sat file.
  • Loading branch information
rljacob committed Sep 30, 2024
2 parents 93e5223 + 9a66d99 commit 75229ea
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
1 change: 1 addition & 0 deletions cime_config/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@
"REP_Ln5.ne4pg2_oQU480.F2010",
"SMS_Ld3.ne4pg2_oQU480.F2010.eam-thetahy_sl_pg2_mass",
"ERP_Ld3.ne4pg2_ne4pg2.FIDEAL.allactive-pioroot1",
"ERS_Ld5.ne4pg2_oQU480.F2010.eam-sathist_F2010",
)
},

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

./xmlchange RUN_STARTDATE=2015-01-01
./xmlchange RUN_STARTDATE=2018-01-01
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
&satellite_options_nl
sathist_mfilt = 10000,
sathist_track_infile = '$DIN_LOC_ROOT/atm/waccm/sat/sathist_master_19700410-20150419_c20150616.nc'
sathist_track_infile = '$DIN_LOC_ROOT/atm/waccm/sat/satellite_profilelist_orcas_to_socrates_c190208.nc'
sathist_hfilename_spec = '%c.eam.h9.sathist.%y-%m-%d-%s.nc'
sathist_nclosest = 1
sathist_ntimestep = 1
Expand Down
10 changes: 8 additions & 2 deletions components/eam/src/control/sat_hist.F90
Original file line number Diff line number Diff line change
Expand Up @@ -722,8 +722,14 @@ subroutine read_next_position( ncols )

call read_buffered_datetime( datetime, i )

if ( datetime>begdatetime .and. beg_ndx<0 ) beg_ndx = i
if ( datetime>enddatetime ) exit bnds_loop
if (datetime > begdatetime .and. beg_ndx < 0) then
beg_ndx = i
end if

if (datetime > enddatetime) then
exit bnds_loop
end if

end_ndx = i

enddo bnds_loop
Expand Down

0 comments on commit 75229ea

Please sign in to comment.