Skip to content

Commit

Permalink
Merge pull request #425 from billsacks/fix_runseq_t_noevolve
Browse files Browse the repository at this point in the history
For T compsets, only run GLC if med_to_glc is true
  • Loading branch information
jedwards4b authored Jan 26, 2024
2 parents d2a08f0 + 40ce110 commit ffb5737
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cime_config/runseq/runseq_TG.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def gen_runseq(case, coupling_times):
runseq.add_action ("MED med_phases_post_lnd" , run_lnd)
runseq.add_action ("MED med_phases_prep_glc" , med_to_glc)
runseq.add_action ("MED -> GLC :remapMethod=redist" , med_to_glc)
runseq.add_action ("GLC" , run_glc)
runseq.add_action ("GLC" , run_glc and med_to_glc)
runseq.add_action ("GLC -> MED :remapMethod=redist" , run_glc)
runseq.add_action ("MED med_phases_history_write" , True)

Expand Down

0 comments on commit ffb5737

Please sign in to comment.